Unplanned
Last Updated: 04 Dec 2023 09:41 by Mark
Benjamin
Created on: 22 Mar 2022 10:40
Category: Charts
Type: Feature Request
6
Reverse setting for the Labels on the Chart Value Axis
I would like to reverse the labels on the Value Axis
1 comment
Mark
Posted on: 04 Dec 2023 09:41

It would be good to see this feature In UI for Blazor. It seems like in Kendo UI you can accomplish it like so: yAxis.reverse - API Reference - Kendo UI Chart - Kendo UI for jQuery (telerik.com)

 

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    { type: "scatter", data: [[1, 2]]}
  ],
  yAxis: {
    reverse: true
  }
});
</script>