gpt4 book ai didi

javascript - Highcharts : Set Each Bar In a Multi-Series Bar Graphs To a Different Color

转载 作者:行者123 更新时间:2023-12-03 08:40:10 26 4
gpt4 key购买 nike

我正在尝试将多系列 highCharts 图表中每个单独条形的颜色设置为不同的颜色。

这是传入的数据:

{
"yAxisText": "",
"yAxisUnit": "%",
"statusCode": "OK",
"chartType": "column",
"categories": [
"Basic",
"1",
"2",
"3+",
"4+"
],
"options": [
{
"name": "test1",
"data": [
56.6,
17.3,
8.6,
17.5,
12
]
},
{
"name": "test2",
"data": [
46.5,
16,
15.4,
22.1,
33
]
}
]
}

我能够使每个数据集具有不同的颜色或每个类别具有不同的颜色,但我不知道如何使每个单独的条具有不同的颜色。
因此,对于该数据来说,本质上会有 8 个条形图,具有 8 种不同的颜色。提前致谢!

最佳答案

您可以设置颜色数组,然后通过 colorByPoint 选项应用每个点的颜色。

{
colors:['blue','red','green']
},
series:[{
colorByPoint: true,
data:[1,2,3]
}]

关于javascript - Highcharts : Set Each Bar In a Multi-Series Bar Graphs To a Different Color,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33061672/

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