Hi Andreas,
To create a bar chart in a cartesian chart, you can add a column series in the chart and set the IsTransposed property of chart to "True". This will display the data as a bar chart rather than a column chart.
<chart:SfCartesianChart IsTransposed="True"> . . . <chart:ColumnSeries XBindingPath="Label" YBindingPath="Value" ItemsSource="{Binding DataPoints}"> </chart:ColumnSeries> </chart:SfCartesianChart> |
Output:
If you need any further help, please let us know.
Regards,
Raja.