gpt4 book ai didi

javascript - 如果我们有 1 个数据,则隐藏堆积柱形图中的数据标签

转载 作者:行者123 更新时间:2023-12-04 10:11:31 25 4
gpt4 key购买 nike

如果只有一个大于零的数据集,我需要隐藏内部数据标签。我所说的数据集是什么意思

series: [{
name: 'John',
data: [5, 3, 0, 7, 2]
}, {
name: 'Jane',
data: [2, 2, 0, 2, 0]
}, {
name: 'Joe',
data: [3, 4, 3, 2, 0]
}]

如果 series.data[i] 除了一之外都为零,则隐藏内部数据标签。在上述情况下,第 3 个和第 5 个数据集具有 0,0,3 和 2,0,0 值,只有 1 个非零值,因此隐藏内部数据标签。
Highcharts.chart('container', {
chart: {
type: 'column'
},
title: {
text: 'Stacked column chart'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
},
yAxis: {
min: 0,
title: {
text: 'Total fruit consumption'
},
stackLabels: {
enabled: true,
style: {
fontWeight: 'bold',
color: ( // theme
Highcharts.defaultOptions.title.style &&
Highcharts.defaultOptions.title.style.color
) || 'gray'
}
}
},
legend: {
align: 'right',
x: -30,
verticalAlign: 'top',
y: 25,
floating: true,
backgroundColor:
Highcharts.defaultOptions.legend.backgroundColor || 'white',
borderColor: '#CCC',
borderWidth: 1,
shadow: false
},
tooltip: {
headerFormat: '<b>{point.x}</b><br/>',
pointFormat: '{series.name}: {point.y}<br/>Total: {point.stackTotal}'
},
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
formatter:function() {
if(this.y != 0) {
return this.y;
}
}
}
}
},
series: [{
name: 'John',
data: [5, 3, 0, 7, 2]
}, {
name: 'Jane',
data: [2, 2, 0, 2, 0]
}, {
name: 'Joe',
data: [3, 4, 3, 2, 0]
}]
});

在这里,我强调了需要从内部删除哪个数据标签。 datalabels .

最佳答案

在格式化程序函数中,您可以检查是否至少有两个系列的 y 值大于 0。

plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
formatter: function() {
var series = this.series.chart.series,
xPos = this.point.x,
filteredSeries;

if (this.y != 0) {
filteredSeries = series.filter((s) => (s.yData[xPos]));

return filteredSeries.length > 1 ? this.y : '';
}
}
}
}
}

现场演示: http://jsfiddle.net/BlackLabel/6m4e8x0y/4971/

API 引用: https://api.highcharts.com/highcharts/series.column.dataLabels.formatter

关于javascript - 如果我们有 1 个数据,则隐藏堆积柱形图中的数据标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61316124/

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