How would I create a bar chart that grows from right to left, with the labels on the right as well? See attached which correlates to the below code but the bars are growing from the left (I'd like them to come from the right).
<
div
kendo-chart
k-series-defaults
=
"{ type: 'bar', stack: true, categoryField: 'Company' }"
k-series-colors
=
"util.config('seriesColors2')"
k-data-source
=
"reference.ChartData"
k-value-axis
=
"{ axisCrossingValue: [100, 0] }"
k-series="[{
name: 'Off',
field: 'CountOff'
}, {
name: 'Overdue',
field: 'CountOverDue'
}, {
name: 'Today',
field: 'CountToday'
}, {
name: 'Pending',
field: 'CountPending'
}]"
k-legend
=
"{ visible: false }"
k-chart-area
=
"{ height: 500 }"
></
div
>