Sort Categories in Grouped Charts
Environment
Product | Progress® Kendo UI® Chart for jQuery |
Operating System | Windows 10 64bit |
Visual Studio Version | Visual Studio 2017 |
Preferred Language | JavaScript |
Description
How can I set the order of the categories in a grouped Chart?
Solution
The order of the categories in a grouped chart cannot be set through the sort
option of the data source.
The reason for this behavior is that the grouping overrides the sort order as part of its implementation. In effect, the sort order is respected only within the resulting groups. Still, you can influence the final order of the categories during the dataBound
event.
The following example demonstrates how to sort categories in a grouped Kendo UI Chart.
<div id="chart"></div>
<script>
var data = [{
daysOut: 1,
type: "A",
requestor: "Adam"
},{
daysOut: 2,
type: "A",
requestor: "Bonnie"
},{
daysOut: 1,
type: "A",
requestor: "Connor"
},{
daysOut: 1,
type: "B",
requestor: "Zach"
},{
daysOut: 1,
type: "B",
requestor: "Amber"
}];
$("#chart").kendoChart({
"dataSource": {
data: data,
group: {
field: "type"
}
},
series: [{
field: "daysOut",
type: "bar",
categoryField: "requestor",
// Grouping will generate two series - "A" and "B" in each category
// Since we only have data for one of them we use stacking to remove the empty space
stack: true
}],
dataBound: function(e) {
var axis = e.sender.options.categoryAxis;
axis.categories = axis.categories.sort();
}
});
</script>