gpt4 book ai didi

javascript - 使用 Highcharts 深入钻取 1 个以上的子报表

转载 作者:行者123 更新时间:2023-11-28 01:38:09 25 4
gpt4 key购买 nike

我正在使用最新版本的 Highcharts,即 Highcharts 3.0.9,我需要进行多个级别的钻取。提供的示例仅显示 1 级向下钻取。

示例代码:

$('#container').highcharts({
chart: {
type: 'column'
},
title: {
text: 'Basic drilldown'
},
xAxis: {
type: 'category'
},

legend: {
enabled: false
},

plotOptions: {
series: {
borderWidth: 0,
dataLabels: {
enabled: true,
}
}
},

series: [{
name: 'Things',
colorByPoint: true,
data: [{
name: 'Animals',
y: 5,
drilldown: 'animals'
}, {
name: 'Fruits',
y: 2,
drilldown: 'fruits'
}, {
name: 'Cars',
y: 4,
drilldown: 'cars'
}]
}],
drilldown: {
series: [{
id: 'animals',
data: [
['Cats', 4],
['Dogs', 2],
['Cows', 1],
['Sheep', 2],
['Pigs', 1]
]
}, {
id: 'fruits',
data: [
['Apples', 4],
['Oranges', 2]
]
}, {
id: 'cars',
data: [
['Toyota', 4],
['Opel', 2],
['Volkswagen', 2]
]
}]
}
})

代码链接:jsfiddle

那么如何使用新版本进行多级钻取呢?

最佳答案

Hayu Rahiza 你做得很好。

您需要做的就是在深入了解部分中重复您在系列部分中所做的相同操作

    {
name: 'Toyota',
y: 4,
drilldown: 'Toyota'
},{
id: 'Toyota',
data: [
['Corolla', 4],
['Fortuner', 2],
['Etios', 2],
['Liva', 10]
]
}

我已经更新了你的 fiddle http://jsfiddle.net/dP35L/1/

希望这对你有帮助

关于javascript - 使用 Highcharts 深入钻取 1 个以上的子报表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21252184/

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