gpt4 book ai didi

javascript - Highcharts 模替代网格颜色

转载 作者:行者123 更新时间:2023-12-01 02:04:23 24 4
gpt4 key购买 nike

在 HighCharts 中,是否有一种内置方法可以在功能上类似于“alternateGridColor”,以向每第三、第四等行添加网格颜色?目前“alternateGridColor”仅允许您为每隔一行着色。

这是我想要完成的设计: The design I'm trying to accomplish

最佳答案

没有自动化的方法,但您可以使用plotBands 来实现您的外观。

var categories = ['one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine'];
var plotBands = [];
for (var i = 0; i < categories.length; i++) {
if (i % 3 == 1) {
plotBands.push({
color: '#fecdfe',
from: i - .5,
to: i + .5
});
} else if (i % 3 == 2) {
plotBands.push({
color: '#cdfee5',
from: i - .5,
to: i + .5
});
}
}
Highcharts.chart('container', {
yAxis: {

},
xAxis: {
categories: categories,
plotBands: plotBands,
},

series: [{
type: 'bar',
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4],

}]
});

http://jsfiddle.net/wskt4hzz/

关于javascript - Highcharts 模替代网格颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50237692/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com