在基本的Highcharts列范围图表中,如何将颜色(蓝色)指定为低值,将不同颜色(红色)指定为高值?
因此,对于1月份,' - 9.7'应为蓝色,'9.4'应为红色。
在另一个例子中,我试过这个:
series: [{
name: 'Temperatures',
data: [
{low: 2, high: 6, color: 'green'},
{low: 1, high: 9, color: 'yellow'},
{low: -3, dataLabels: {color: 'red'}, high: 5, color: 'blue'},
{low: 0, high: 7, color: 'orange'}
],
color: '#b9deea',
borderColor: '#92cbde',
borderRadius: 4
}]
但是,这会将蓝色列的低值和高值的数据标签颜色更改为红色。
提前致谢。
猴面包树
答案 0 :(得分:3)
在格式化程序回调中,您可以将文本包装在span
中并正确设置样式。
formatter: function () {
var color = this.y === this.point.high ? 'red' : 'blue';
return '<span style="color:' + color + '">' + this.y + '°C</span>';
}
示例:http://jsfiddle.net/6ofbr32b/1/
你必须将一个点分成两个点 - 这将代表它的负值和正值,将阈值设置为0和negativeColor。然后调整工具提示和数据标签。
可以通过这种方式实现分裂;
//plotOptions.columnRange
negativeColor: 'red',
threshold: 0,
borderWidth: 0,
//series
keys: ['x', 'low', 'high', 'part'],
data: [
[0,-9.7, 0, 'neg'],
[0,0,9.4, 'pos'],
[1,-8.7, 0, 'neg'],
[1, 0, 6.5, 'pos'],
[2,-3.5, 0, 'neg'],
[2, 0, 9.4, 'pos'],
[3,0.0, 22.6],
[4,2.9, 29.5],
]
&#39;部分&#39;是一个帮助程序,可用于调整工具提示和数据标签。
数据标签,因此如果分割点,则只显示一条边
dataLabels: {
enabled: true,
formatter: function() {
if (this.point.part === 'neg' && this.y === this.point.low) {
return this.y + '°C';
} else if (this.point.part === 'pos' && this.point.high === this.y) {
return this.y + '°C';
} else if (!this.point.part) {
return this.y + '°C';
}
return '';
}
}
和工具提示
tooltip: {
pointFormatter: function () {
var points = this.series.points,
low = this.low,
high = this.high;
if (this.part === 'neg') {
low = this.low;
high = points[this.index + 1].high;
} else if (this.part === 'pos') {
low = points[this.index - 1].low;
high = this.high;
}
return '<span style="color:' + this.series.color + '">\u25CF</span> ' + this.series.name + ': <b>' + low + '°C</b> - <b>' + high + '°C</b><br/>';
}
},
示例:http://jsfiddle.net/xdg67kuo/3/
使用堆积柱形图也可以实现所需的效果: example