Highcharts:yAxis title =当前系列名称

时间:2014-06-10 22:51:52

标签: javascript highcharts

如何使y轴标题与当前所选系列相同?

yAxis: [{
    min: 0,
    title: {
        text: 'Hits', <-- this value should be based on selected series name
    },
    labels: {
        formatter: function () {
            return this.value;
        },
        style: {
            color: '#4572A7'
        }
    }

}]

1 个答案:

答案 0 :(得分:2)

这样的事情应该有效。当单击系列时,它将y轴的标题设置为系列的名称。 jsfiddle here

plotOptions: {
    series: {
        events: {
            click: function() {
                this.chart.yAxis[0].setTitle({text: this.name});
            }
        }
    }
}