문제

Here is the chart I'm using.

How do I change the chart to go low to high? Basically just horizontally flip it. The values need to be changed to go from low to high, too.

도움이 되었습니까?

해결책

You can flip it by reversed axis parameter.

 xAxis: {
            reversed:true,
            gridLineWidth: 0,
            minorGridLineWidth: 0,
            labels: {
                enabled: false
            },
   }

http://jsfiddle.net/M4hML/6/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top