Kendo Scatter Chart - Reverse Dates in xAxis?

198 views Asked by At

I'm building a page with a Kendo scatter chart of data over time. The only catch is that the client wants the most recent data to the left. I've sorted the input datasource by date descending, but that seems to be blithely ignored, with the chart stubbornly plotting the data with dates ascending to the right.

Am I missing something, or is this simply unsupported?

1

There are 1 answers

2
ezanker On BEST ANSWER

You can set the reverse property on the xAxis to true:

xAxis: {
    reverse: true
},

API Doc