gpt4 book ai didi

javascript - 是否可以将属于不同系列的两列分别精确地放置在 highchart 的 x 轴刻度上?

转载 作者:行者123 更新时间:2023-12-01 02:16:16 25 4
gpt4 key购买 nike

下图是我想要的结果(每一列属于不同的系列): This picture is my desired result

何时 there is only one series in the chart ,这是一个可以实现的结果;但是当 there are two series in the chart ,条形的位置是倾斜的(不完全在刻度线上)。

这两个图表之间的唯一区别是:

        {
enableMouseTracking: false,
pointPlacement: 'on',
data: finArray, //position not skewed as this series has the same data as the other series
pointWidth: argPWidth
}]

        {
enableMouseTracking: false,
pointPlacement: 'on',
data: finArray1,
pointWidth: argPWidth
}]

最佳答案

我认为禁用分组应该可以解决您的问题:

var chart = Highcharts.chart('container', {

chart: {
type: 'column'
},
xAxis: {
min: 0.5,
max: 2.5,
tickInterval: 1
},
plotOptions: {
column: {
grouping: false
}
},
series: [{
data: [
[1, 5]
]
}, {
data: [
[2, 2]
]
}]
});

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

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

关于javascript - 是否可以将属于不同系列的两列分别精确地放置在 highchart 的 x 轴刻度上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49489701/

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