如何在HighChart中更改“ yAxis标签”的宽度?

时间:2018-08-25 14:29:52

标签: css highcharts

我正在处理如下所示的多个图表: enter image description here

我发现HighCharts可能是我的最佳选择。 然后我有一个图表看起来像这样: http://jsfiddle.net/bardirian/7cpzxeth/1/show

在JSFiddle中可以看到,“ yAxis标签”的宽度未对齐。

这是我尝试的方法,但是不起作用:

g.highcharts-axis-labels.highcharts-yaxis-labels text {

width:100px!important; }

有人可以帮助使所有“ yaxis-labels”显示为100px吗?

1 个答案:

答案 0 :(得分:1)

您将不得不使用chart.marginLeft API Doc

  chart: {
      type: 'scatter',
      plotBorderWidth: 3,
      zoomType: 'xy',
      backgroundColor:null,
      marginLeft:80
  },

Fiddle