使用多个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 }
],
答案 0 :(得分:0)
使用 yAxis.offset
属性为每个y轴设置偏移量。看起来两个轴之间的默认间隙在highstock中较小,然后它在highchart中
答案 1 :(得分:0)
您有两种选择:
为每个轴使用yAxis.offset,请参阅:http://api.highcharts.com/highstock#yAxis.offset
使用Highstock,但使用新的Highcharts.Chart()而不是新的Highcharts.StockChart()创建图表。在这种情况下,您可以使用高序功能,如序数轴,范围选择器,滚动条等。您必须直接启用每个功能:http://api.highcharts.com/highstock#scrollbar.enabled
答案 2 :(得分:0)
您可以使用偏移参数正确设置距离yAx。 http://api.highcharts.com/highstock#yAxis.offset