gpt4 book ai didi

javascript - 链接系列的深入分析

转载 作者:行者123 更新时间:2023-12-03 12:12:38 24 4
gpt4 key购买 nike

我正在致力于显示多个区域的可钻取数据集。我想同时展示这两个系列,这样就可以在两个系列之间进行比较,而不必在每个系列之间切换。我想要发生的是,当一个类别可钻取时,可以向下钻取显示的每个系列。如果系列 1 没有钻孔数据,只要系列 2 有钻孔数据就可以。我见过使用如下数据的方法:

var data1 = [{
y: 1674,
color: colors[0],
drilldown: {
name: '1011 Actual',
categories: ['BS', 'B', 'IT', 'C'],
data: [3, 32, 54, 50],

color: colors[0],

name1: '1011 Target',
data1: [0, 31, 50, 60],
color1: colors[1]
}
}];

每个点都在其数据点分配中定义了其向下钻取。此处进行链接钻取的方法可在 this 找到。 jsfiddle。

我们没有此数据设置。我们所拥有的更多的是:

series: [{
name: 'Cape Coral-Fort Myers, FL Metropolitan Statistical Area',
type: 'bar',
data: [{
name: 'Total nonfarm',
y: 224200
}, {
name: 'Total private',
y: 185100
}, {
name: 'Goods-producing',
y: 22400
drilldown: '900000000'
}....

然后我们将深入系列定义为所有非“顶部”项目的列表:

drilldown: {
series: [{
id: '400000000',
name: 'Trade, transportation, and utilities',
data: [{
name: 'Wholesale Trade',
y: 6900
}...

我不确定如何在类别钻取中链接 2(到 N)个系列。这是我的demo对于我目前拥有的。

最佳答案

我不确定我是否正确理解问题(您与 Rob 进行了长时间的讨论),但简而言之:您想从一个栏/类别深入到两个(或更多)另一个系列?在rilldown.js 插件中不支持它。看看:http://jsfiddle.net/2rz6N/ - 点击2后,您将仅获得一个包含两个点的系列。有计划支持多系列钻取。但目前只有计划。

所以你只有两个选择:

  • 更改数据格式以适合您提供的第一个解决方案
  • 破解rilldown.js插件并添加该功能

关于javascript - 链接系列的深入分析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24887796/

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