Hierarchy

Hierarchy

  • IIgrTimeAxisIntervalProps

Properties

interval?: string | number

The interval, expressed as a multiple of IntervalType.

Use the Interval property expressed as a multiple of IntervalType.

  <IgrDataChart
dataSource={this.state.dataSource}
width="700px"
height="500px">
<IgrOrdinalTimeXAxis name="xAxis"
label="Date"
dateTimeMemberPath="Date" />
</IgrDataChart>
this.timeXAxis = new IgrTimeXAxis({name: "timeXAxis"});
this.timeXAxis.title = "Time X Axis";
this.timeXAxis.dataSource = this.financialData;
this.timeXAxis.dateTimeMemberPath = "Time";
this.timeXAxis.intervals={2};
intervalType?: string | TimeAxisIntervalType

The unit of time for this interval.

The IntervalType is the unit of time for this interval.

range?: string | number

The visible axis range at which to apply this interval.

Use Range property for the visible axis range at which to apply this interval.