Highchart - show / hide an y-Axis without hiding the series

后端 未结 4 1036
孤独总比滥情好
孤独总比滥情好 2020-12-03 10:21

I\'m working with Highchart. I\'ve got a multiple series graph in which each series have their own y-axis.

pretty much like this one (jsfiddle)

when we cli

4条回答
  •  春和景丽
    2020-12-03 10:46

    It's actually gotten simpler. You only have to set the yAxis title attribute to false:

    yAxis: {
       title: false
    },
    

    Here is an example: jsfiddle example

提交回复
热议问题