提前感谢您的时间和帮助。
我正在使用高图,需要设置仅x和y轴的背景颜色。见附件:
所以我需要的是在x轴上设置一个与图表的深灰色不同的背景颜色(现在它们显然是相同的)
有谁知道这是否可能,如果是的话,如何去做?我已经广泛地浏览过highcharts API Highstock API,但是找不到具体的内容。
再次感谢您的时间和帮助!
富
答案 0 :(得分:6)
你有没有尝试过:
rendered a rectangle and positioned it to the bottom of the graph.
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 renderer
x-asis没有backgroundColor Set background color to HighChart xAxis labels
希望得到这个帮助。