highcharts - 如何根据可选参数显示/隐藏辅助y轴

时间:2014-02-18 10:08:09

标签: jquery highcharts

我正在尝试功能化我的高图代码,我正在努力理解如何根据条件if语句(如下面的代码)绘制辅助y轴:

 yAxis: [{ // Primary yAxis shown for all charts
              min: 0,
              labels: {
                  format: '{value} pcks ',
                  style: {
                      color: '#4572A7'
                  }
              },
              title: {
                  text: 'Volume',
                  style: {
                      color: '#4572A7'
                  }
              }
          }, { // Secondary yAxis make this optional based on AxisNum accepted values:1/2 
              formatter: function(){ 
                  if(AxisNum === 2])
                  {
                      gridLineWidth: 0, min:0, title: { text: 'Cycle Time', style: { color: '#C88622' } }, labels: {format: '{value} days',style: {color: '#C88622'}},opposite: true;
                  }
              } 

          }],

1 个答案:

答案 0 :(得分:1)

您可以使用检查AxisNum的条件,然后准备对象正确的yAxis以及您将使用的选项

yAxis: yAxisCustomised

http://jsfiddle.net/92u9M/1/