I want to sort the bar series on each category of my kendo chart Like this image.
My code is here https://dojo.telerik.com/EDERUfEY
Thanks in advance!
I want to sort the bar series on each category of my kendo chart Like this image.
My code is here https://dojo.telerik.com/EDERUfEY
Thanks in advance!
The only sorting that we can apply is on the data source group.
"dataSource": {
data: data,
group: {
field: "type",
dir: "desc"
},
sort: {
field: "daysOut",
dir: "asc"
},
This API Reference Link, explains why data source sort attribute is overridden by grouping and how we can see it sorted by a particular group when we click on the legend labels. As of now, I have not found any solutions to render the chart with a stacked bar sorted by values.