gpt4 book ai didi

javascript - 在查看图表值方面需要帮助

转载 作者:行者123 更新时间:2023-11-30 14:09:31 24 4
gpt4 key购买 nike

柱形图工作正常。但我在查看图表值时遇到了一个问题。如果两个值之间存在很大差异,则较低的值不会显示在图表中(这意味着它显示在那里但我无法看到)引用 https://jsfiddle.net/g18evj5x/1/ :

Highcharts.chart('container', {
chart: {
type: 'column'
},
title: {
text: 'Monthly Average Rainfall'
},
subtitle: {
text: 'Source: WorldClimate.com'
},
xAxis: {
categories: [
'Jan'
],
crosshair: true
},
yAxis: {
min: 0,
title: {
text: 'Rainfall (mm)'
}
},
tooltip: {
headerFormat: '<span style="font-size:10px">{point.key}</span><table>',
pointFormat: '<tr><td style="color:{series.color};padding:0">{series.name}: </td>' +
'<td style="padding:0"><b>{point.y:.1f} mm</b></td></tr>',
footerFormat: '</table>',
shared: true,
useHTML: true
},
plotOptions: {
column: {
pointPadding: 0.2,
borderWidth: 0
}
},
series: [{
name: 'Tokyo',
data: [1000]

}, {
name: 'New York',
data: [2]

}, {
name: 'London',
data: [4]

}, {
name: 'Berlin',
data: [6]

}]
});

谢谢。

最佳答案

另一个解决方案是使用 dataLabels Api link像那样:

plotOptions: {
column: {
// minPointLength: 2, // You could use both solutions
dataLabels:{
enabled:true
}
}
}

Fiddle

关于javascript - 在查看图表值方面需要帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54742645/

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