gpt4 book ai didi

javascript - 着色 Highcharts 类别

转载 作者:行者123 更新时间:2023-12-03 02:23:11 26 4
gpt4 key购买 nike

我试图区分列范围图表上的多种类型的数据。问题是我希望能够按多个标准对它们进行分组。 我可以轻松地为不同的列着色,从而解决一个问题,但我希望能够根据我传递到图表的数据,为 xAxis 上的类别(图表是倒置的)着色,以获得类似的结果: enter image description here有什么办法可以得到这个吗?

编辑:

我以具有多个键的字典的形式传递数据:

entries[record['url']] = {
'location': categories.index(str(counter) + '. ' + (record['term'] if record['term'] else record['uterm'])),
'subjectid': record['subjectid'],
'subject': record['subject'],
'uterm': record['uterm'],
'term': record['uterm'] if record['term'] else 'Uncoded term',
'start_day': start_day,
'end_day': end_day,
'start': record['start'] if record['start'] else oldest_date,
'end': record['full_end'] if record['full_end'] else '',
'full_end': record['full_end'] if record['full_end'] != record['full_start'] and record['full_end']!= '' else datetime.now().strftime(date_format),
'full_start': record['full_start'],
'persistence': record['persistence'] if record['persistence'] else '',
'serious': record['serious'] if record['serious'] else '',
'section': record['section'] if record['section'] else '',
'min_date': record['min_date'],
'color':'#FF4136' if record['serious'] and record['serious'].lower() == 'yes' else '#FF7329'

我从数据库中以 pandas 数据框的形式获取数据。我想使用 color 键根据 section 对各个条形进行颜色编码,并按 serious 进行分类

编辑2:

我遵循了卡米尔的建议,但现在我不确定如何动态添加数据,我尝试了以下方法:

             var data = [];
var cols = [];
for( elem in options_data){
data.push({
x: options_data[elem]['location'],
low: options_data[elem]['start_day'],
high: options_data[elem]['end_day'],
color: options_data[elem]['color']

});
cols.push({
y: 0,
color: '#bada55'
});
}
data.join(", ");
cols.join(", ");
chart.addSeries([{
type: 'column',
yAxis: 1,
data: cols,
minPointLength: 10,
threshold: -0.1,
pointPadding: 0,
pointRange: 0,
groupPadding: 0,
showInLegend: false,
tooltip: {
pointFormat: false
},
states: {
hover: {
enabled: false
}
}
},{
name: "Study Days",
data: data,
maxPointWidth: 30,
point: {
events: {
click: function() {
if (url != "")
window.open(url,'_blank');
}
}
}
}]);

这不会导致任何错误,但图表不会获取数据。此方法仅适用于 1 个系列,但不适用于两个系列。

编辑3:

我已设法解决数据问题。我添加数据的最终版本是:

             chart.addSeries({
type: 'column',
yAxis: 1,
data: cols,
zIndex: 9999,
minPointLength: 10,
threshold: -0.1,
pointPadding: 0,
pointRange: 0,
groupPadding: 0,
showInLegend: false,
tooltip: {
pointFormat: false
},
states: {
hover: {
enabled: false
}
}
});
chart.addSeries({
name: "Study Days",
data: data,
maxPointWidth: 30,
point: {
events: {
click: function() {
if (url != "")
window.open(url,'_blank');
}
}
}
});

最佳答案

您可以通过添加另一个巧妙配置的列系列以及与其关联的 y 轴来实现这种外观:

  series: [{
// series that mimics category markers
type: 'column',
yAxis: 1,
data: [{
y: 0,
color: '#bada55'
}, {
y: 0,
color: '#c0ffee'
}],
minPointLength: 10,
threshold: -0.1,
pointPadding: 0,
pointRange: 0,
groupPadding: 0,
showInLegend: false,
tooltip: {
pointFormat: false
},
states: {
hover: {
enabled: false
}
}
},
// normal series...
],

yAxis: [{}, {
// axis for category markers series
tickPositions: [0, 1000],
visible: false
}],

xAxis: {
categories: ['apples', 'oranges'],
offset: -10
},

现场演示: http://jsfiddle.net/BlackLabel/zfrq0tt2/

正确的Series.minPointLenghtSeries.thresholdAxis.tickPositions值与列的零y值一起导致条形始终保持恒定宽度。可以通过禁用 showInLegendtooltip.pointFormatstates.hover.enabled 属性来阻止与该系列的交互。

关于javascript - 着色 Highcharts 类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49069159/

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