Horizontal bar chart

https://demo.jmix.io/ui-samples/sample/bar-series-simple?tab=Description

Is there any way to convert from (vertical bar chart) to (horizontal bar chart) ?

Hi!

You can just change the type of the axis:

            <charts:xAxes>
                <charts:xAxis type="VALUE"/>
            </charts:xAxes>
            <charts:yAxes>
                <charts:yAxis type="CATEGORY"/>
            </charts:yAxes>

Regards,
Dmitriy

1 Like

Thanks