Ian Y.
Ian Y.

Reputation: 2467

How to horizontally flip Highchart's chart?

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.

Upvotes: 0

Views: 240

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37588

You can flip it by reversed axis parameter.

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

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

Upvotes: 1

Related Questions