0

当我使用多个 yAxis 时,你看到范围问题了吗?我怎么解决这个问题?

图片

这是我使用的相同代码!

yAxis: [ 
                     { labels: { formatter: function() { return this.value + '".$unitall1."' },  style: { color: '#89A54E'  } },  title: { text: '".$graphall1."' , style: { color : '#4572A7' } },  opposite: true },
                     { labels: { formatter: function() { return this.value + '".$unitall2."' },  style: { color: '#4572A7'  }  }, title: { text: '".$graphall2."' , style: { color : '#89A54E' } },  },  
                     { labels: { formatter: function() { return this.value + '".$unitall3."' },  style: { color: '#000000'  }  }, title: { text: '".$graphall3."' , style: { color : '#000000' } },  },  
                     { labels: { formatter: function() { return this.value + '".$unitall4."' },  style: { color: '#C4087C'  } },  title: { text: '".$graphall4."' , style: { color : '#C4087C' } },  opposite: true }
                       ],
4

3 回答 3

0

使用该yAxis.offset属性设置每个 y 轴的偏移量。看起来两个轴之间的默认间隙在 highstock 中比在 highchart 中要小

于 2013-02-06T12:42:43.863 回答
0

你有两个选择:

于 2013-02-06T12:44:30.790 回答
0

您可以使用偏移参数来正确设置距离 yAxis。 http://api.highcharts.com/highstock#yAxis.offset

于 2013-02-06T13:04:11.457 回答