Hi,
to create a RadzenChart, instead of using parameters like this
<RadzenLineSeries Smooth="@smooth" Data="@revenue2024" CategoryProperty="Date" Title="2024" ValueProperty="Revenue">
<RadzenMarkers Visible="@showMarkers" MarkerType="MarkerType.Circle" />
do you know if it s possible to put value directly in the chart something like this :
<RadzenChart Style="width: 700px; height: 400px;">
<RadzenLineSeries Title="Time Series">
<RadzenChartSeriesData>
<RadzenChartSeriesDataPoint Category="AAA" Value="20" />
<RadzenChartSeriesDataPoint Category="BBB" Value="30" />
<RadzenChartSeriesDataPoint Category="CCC" Value="70" />
</RadzenChartSeriesData>
</RadzenLineSeries>
<RadzenCategoryAxis Title="Category" />
<RadzenValueAxis Title="Value" />
</RadzenChart>
the idea is to create dynamique chart in markdown
thank you for your help