Chart does not respect MIN MAX

Issue #661 resolved
Adam Davis created an issue

The setting:

{ chartOptions : {

yAxis : {

“max”: 0.8,

“min” : -0.1

}

}

}

is not respected in the chart. Was working in the previous release.

Comments (3)

  1. srichardson

    Hi Adam,

    Try using yAxis as an array of objects rather than just an object. yAxis and xAxis can be used as either but within the last year we have switched over to them both being defined as an array. This allows for defining multiple x and y axes per chart.

    {
        "chartOptions" : {
            "yAxis": [
                {
                    "max": 0.8,
                    "min": -0.1
                }
            ]
        } 
    }
    

    Cheers
    Stu

  2. Log in to comment