在此先感谢您的时间和帮助。

我正在使用图表,只需要设置x和y轴的背景色。见附件:

所以我需要在x轴上设置与图表的深灰色不同的背景色(现在它们显然是相同的)

有谁知道这是否可能,如果可以,怎么做?我已经广泛使用了highcharts API Highstock API,但是找不到专门为此的任何东西。

再次感谢您的时间和帮助!

丰富

最佳答案

您是否尝试过:

chart.renderer.rect(0/*position on X-axis*/, 275/*position on Y-axis*/, 680/*width*/ , 25/*height*/, 00)
         .attr({
            'stroke-width': 0,
            stroke: '#888888',
            fill: '#888888',
            zIndex: 3
         })
         .add();
阅读更多:highchart rendererx轴没有backgroundColor Set background color to HighChart xAxis labels
希望能有所帮助。

09-25 19:56