We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Request Bar ChartType

When will Bar Chart's be available in .net MAUI?


1 Reply

RR Raja Ramalingam Syncfusion Team January 16, 2023 07:40 AM UTC

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.


Loader.
Up arrow icon