Hi All,
I'd like to make certain that I'm just showing one data line and no legends, tick marks, axes, padding and so on. I would also like the first data point to be the center of the graph vertically.
Here's my chart markup, please let me know if you have any suggestions. Thank you so much.
<TelerikChart Width="100%" Height="100%" Transitions="false" RenderAs="Telerik.Blazor.RenderingMode.Canvas"> <ChartSeriesItems> <ChartSeries Type="ChartSeriesType.Line" Name="" Data="@Data" Color="@LineColor"> <ChartSeriesMarkers Visible="false" /> <ChartSeriesLabels Visible="false" Background="transparent" /> </ChartSeries> </ChartSeriesItems> <ChartCategoryAxes> <ChartCategoryAxis Visible="false"><ChartCategoryAxisMajorGridLines Visible="false" /></ChartCategoryAxis> </ChartCategoryAxes> <ChartValueAxes> <ChartValueAxis Visible="false"><ChartValueAxisMajorGridLines Visible="false" /></ChartValueAxis> </ChartValueAxes> <ChartTitle Visible="false" /> <ChartLegend Visible="false" /></TelerikChart>