gpt4 book ai didi

highcharts - 在 Highcharts 中的堆积柱形图中隐藏 0 个值

转载 作者:行者123 更新时间:2023-12-04 22:47:21 24 4
gpt4 key购买 nike

我想从 Highcharts 的堆积柱形图中删除 0 值。看这个:

http://jsfiddle.net/4NxYh/

在“15.08”。您将最高值视为“0”,这非常令人困惑。我怎样才能隐藏这个?

我如何隐藏“低”值,例如“14.08”上最高的“1”。以免溢出该区域?

这是我正在使用的代码:

chartOptions = {
chart: {
type: 'column'
},
title: {
text: ''
},
xAxis: {
categories: ["14.08","15.08","16.08","17.08","18.08","19.08","20.08","21.08","22.08","23.08","24.08","25.08","26.08","27.08","28.08"]
},
yAxis: {
min: 0,
title: {
text: ''
},
endOnTick: false,
maxPadding: 0.0,
stackLabels: {
enabled: true,
style: {
fontWeight: 'bold',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
}
},
allowDecimals: false
},
legend: {
align: 'right',
x: 0,
verticalAlign: 'top',
y: 0,
floating: true,
backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColorSolid) || 'white',
borderColor: '#CCC',
borderWidth: 1,
shadow: false
},
tooltip: {
formatter: function () {
return '<b>' + this.x + '</b><br/>' +
this.series.name + ': ' + this.y + '<br/>' +
'Gesamt: ' + this.point.stackTotal;
}
},
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
},
treshold: 1
}
},
series: [{"name":"a","data":[1,0,0,0,0,0,0,0,0,0,1,0,0,0,0],"_colorIndex":0},{"name":"b","data":[92,91,65,56,102,146,146,86,117,115,103,108,137,134,19],"_colorIndex":1},{"name":"c","data":[13,4,3,1,5,13,2,4,2,2,3,3,2,8,0],"_colorIndex":2},{"name":"d","data":[3,6,1,4,3,6,3,2,1,6,3,3,0,6,1],"_colorIndex":3},{"name":"e","data":[41,19,8,16,30,32,46,19,17,11,15,13,52,30,2],"_colorIndex":4},{"name":"f","data":[5,2,3,2,5,3,4,2,3,2,1,3,4,12,1],"_colorIndex":5},{"name":"g","data":[70,80,77,72,77,94,80,60,52,75,49,84,74,72,12],"_colorIndex":6},{"name":"h","data":[0,1,0,0,0,0,0,0,0,0,2,0,0,0,0],"_colorIndex":7},{"name":"i","data":[0,1,1,0,0,0,0,0,0,0,0,0,1,0,0],"_colorIndex":8},{"name":"j","data":[0,0,2,0,0,1,0,1,1,1,0,4,2,1,0],"_colorIndex":0},{"name":"k","data":[0,0,0,0,0,1,1,1,0,0,0,0,0,0,0],"_colorIndex":1}]
};
container = $('#chart');
container.highcharts(chartOptions);

最佳答案

可以使用label.formatter,例如:http://jsfiddle.net/Fusher/4NxYh/4/

            formatter: function(){
var val = this.y;
if (val < 6) {
return '';
}
return val;
},

关于highcharts - 在 Highcharts 中的堆积柱形图中隐藏 0 个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18484761/

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