HighCharts x-axis& y轴标签中心对齐

时间:2015-08-21 14:09:37

标签: javascript graph highcharts

chart.renderer.rect(chart.plotBox.x,                      
                            chart.plotBox.y, width, height, 1)
            .attr({
                fill: 'white',
                zIndex: 0
            })
            .add();

我们使用上面提到的类似于this JSFiddle的代码在Highcharts中创建了四个象限,但是我们希望显示x轴和y轴的标签,如下所示:http://www.mathcats.com/crafts/grids/4quadrantgrid.html

我们怎么做?

1 个答案:

答案 0 :(得分:1)

您可以使用offset属性移动轴。 Documentation here

Your Fiddle here以轴为中心。