gpt4 book ai didi

javascript - 为 Highcharts 中的两个系列之一设置 minPointLength

转载 作者:行者123 更新时间:2023-11-29 20:38:18 25 4
gpt4 key购买 nike

我的 highchart 中有两个系列的数据,并且只想对其中一个使用“minPointLength”。这可以设置吗?我的系列仅包含:名称、颜色和数据。我的图表配置如下所示:

const chartConfig = {
chart: {
type: 'column',
dashStyle: 'ShortDash',
},
title: {
text: '',
},
xAxis: {
padding: 0,
plotLines: [{
dashStyle: 'shortDash',
}],
},
yAxis: {
opposite: true,
title: {
text: '',
},
gridLineDashStyle: 'dash',
},
plotOptions: {
column: {
borderRadiusTopLeft: 32,
borderRadiusTopRight: 32,
dataLabels: {
enabled: true,
crop: false,
overflow: 'none',
},
enableMouseTracking: false,
},
series: {
pointWidth: 24,
minPointLength: 3,
},
},
};

我想要的是始终在其中一个数据集上显示最小高度。即使比例从 1 到 1 000 000,如果我的其中一个列显示 1 000 000 中的 3 个,它应该是底部的一个小峰值。

最佳答案

是的,您可以为每个系列单独设置一个 minPointLength 属性:

series: [{
minPointLength: 80,
data: [...]
}, {
data: [...]
}]

现场演示: http://jsfiddle.net/BlackLabel/19nc8jv6/

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

关于javascript - 为 Highcharts 中的两个系列之一设置 minPointLength,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56168917/

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