Static ngStatic ɵcmpStatic ɵfacThe 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.
<igx-data-chart
[dataSource]="data">
<igx-time-x-axis
dateTimeMemberPath="date"
#xAxis>
</igx-time-x-axis>
</igx-data-chart>
let xAxis = new IgxTimeXAxisComponent();
xAxis.dataTimeMemberPath="date";
this.chart.axes.add(xAxis);
The start time of the axis break.
Use Start property for the start time of the axis break.
<igx-data-chart
[dataSource]="data">
<igx-time-x-axis
dateTimeMemberPath="date"
#xAxis>
</igx-time-x-axis>
</igx-data-chart>
let xAxis = new IgxTimeXAxisComponent();
xAxis.dataTimeMemberPath="date";
this.chart.axes.add(xAxis);
Static _create
The end time of the axis break.
Use
Endproperty for the end time of the axis break.