I am using a line chart and showing a data within 24 hours time frame:
<ngx-charts-line-chart
#chart
[view]="[1200, 700]"
[scheme]="actualColors"
[showXAxisLabel]="showXAxisLabel"
[showYAxisLabel]="showYAxisLabel"
[xAxis]="xAxis"
[yAxis]="yAxis"
[xAxisLabel]="xAxisLabel"
[yAxisLabel]="yAxisLabel"
[timeline]="timeline"
[results]="data"
[xAxisTickFormatting]="dateTickFormatting"
[autoScale]="true"
[xScaleMin]="start"
[xScaleMax]="end"
[activeEntries]="activeEntries"
[yScaleMin]="actualMinSpeed"
[yScaleMax]="actualMaxSpeed"
>
Also the xScaleMin and xScaleMax are equal to currentDay minium and maximum value, so my view looks like this:
I am struggling to find a way how to show last grid line and the time with 23:59 , is it possible please?