I'm trying to implement a chart with more than one pane, all the panels except the first are rendered with sightly wrong scale. See this example
You can see that the max value at the second yAxis is 500, but it should be a lesser value. And, if I hide the first serie, the second's scale it's OK
My yAxis params are:
- Code: Select all
[
{
"top": 40,
"lineWidth": 2,
"plotLines": [
],
"height": 200,
"offset": 0,
"title": {
"text": "visitas"
}
},
{
"top": 280,
"lineWidth": 2,
"plotLines": [
],
"height": 100,
"offset": 0,
"title": {
"text": "otracosa"
}
}]
Thanks in advance