Hi There,
I have some events which occur in a timeline, and each event has a duration. I have plotted these events as a scatter plot (Timeline-chart1.png).
Since each event has a duration, what I really want to show is a wider or narrower point, depending on the duration.
(Timeline-chart2.png).
How can I achieve this?
Also, when a Zoom scrollbar is enabled
<ChartZoomSettings EnableScrollbar="true" Mode="Syncfusion.Blazor.Charts.ZoomMode.X">/ChartZoomSettings>
The scroll bar covers the X axis. (Timeline-chart3.png).
Is it possible to reposition the scroll bar?
Hi There,
Thanks. I think adding Line series instead of scatter plot, with EmptyPoint=Gap is exactly what I need.
Also, the issue with the zoom scroll bar overlapping the axis can be reproduced by adding CrossesAt="0" :
<ChartPrimaryXAxis LabelFormat="mm:ss.ff" ValueType="Syncfusion.Blazor.Charts.ValueType.DateTime" CrossesAt="0"/>