gpt4 book ai didi

jquery - 如何在 highcharts 中显示具有相同类别和相同 x 轴的不同 y 轴的柱形图和面积图

转载 作者:行者123 更新时间:2023-12-01 07:51:04 27 4
gpt4 key购买 nike

我想显示具有不同 y 轴但相同 x 轴和相同类别的面积图和柱形图。

   $('#container').highcharts({
title: {
text: 'Combination chart'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums']
},
labels: {
items: [{
html: 'Total fruit consumption',
style: {
left: '50px',
top: '18px',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'black'
}
}]
},
series: [{
type: 'column',
name: 'Jane',
data: [3, 2, 1, 3, 4]
}, {
type: 'column',
name: 'John',
data: [2, 3, 5, 7, 6]
}, {
type: 'column',
name: 'Joe',
data: [4, 3, 3, 9, 0]
}, {
type: 'area',
name: 'Average',
data: [3, 2.67, 3, 6.33, 3.33],
center: [0, 80],
size: 100,
showInLegend: false,
dataLabels: {
enabled: false
}
}]
});

我想要这样,这里仅显示示例图像( /image/H6rnm.png )

最佳答案

您可以使用 y 轴的“top”和“height”属性来实现此目的:

yAxis: [{
height:100
},{
top:110,
height:75
}]

示例:

关于jquery - 如何在 highcharts 中显示具有相同类别和相同 x 轴的不同 y 轴的柱形图和面积图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30053471/

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