BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
I'm sure I'm just missing this, but can't seem to locate in the docs, but how to get this chart to render so the highest sales categories are at the top, not the bottom (sort / order this from highest/greatest to lowest/least)?
Current code:
Hi Keith,
Greetings from Syncfusion.
You can sort the data in the chart using the sort method. This method takes three arguments: the chart data, the axis along which the sorting should occur, and a Boolean value indicating whether to sort the data in ascending or descending order. After sorting, the resultant data should be assigned to the dataSource in the chart's series. We have created a react application to demonstrate the same. Please find the below stackblitz link for your reference.
Sample link: https://stackblitz.com/edit/react-q8yeis-mf8fan?file=index.js
Code Snippet:
const load = (args) => { let sortedData = sort(data1, ['y'], false); args.chart.series[0].dataSource = sortedData; };
|
Screenshot:
Kindly revert us if you have any concerns.
Regards,
Swetha
Thank you, works perfectly .. I did a search in the documentation for "sort" and didn't find anything, so my apologies for having
Keith,
Most Welcome! Please get back to us if you need any other assistance.