Hierarchy

Hierarchy

  • IIgrTimeAxisBreakProps

Properties

end?: Date

The end time of the axis break.

Use End property for the end time of the axis break.

  <IgrDataChart
dataSource={this.state.dataSource}
width="700px"
height="500px">
<IgrTimeXAxis name="xAxis" label="Date"
dateTimeMemberPath="Date" >

</IgrTimeXAxis>
</IgrDataChart>
interval?: string | number

The interval at which to repeat this break, expressed as a TimeSpan.

Use Interval property to se the interval at which to repeat this break, expressed as a TimeSpan.

  <IgrDataChart
dataSource={this.state.dataSource}
width="700px"
height="500px">
<IgrTimeXAxis name="xAxis" label="Date"
dateTimeMemberPath="Date" >

</IgrTimeXAxis>
</IgrDataChart>
start?: Date

The start time of the axis break.

Use Start property for the start time of the axis break.

  <IgrDataChart
dataSource={this.state.dataSource}
width="700px"
height="500px">
<IgrTimeXAxis name="xAxis" label="Date"
dateTimeMemberPath="Date" >
</IgrTimeXAxis>
</IgrDataChart>