我正在尝试创建一个条形图,如附图所示。
当我在jsfiddle中进行试验时,我无法获得灰色条形背景:这是y轴的最大值。 我怎样才能做到这一点?
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
$(function () {
$('#container').highcharts({
chart: {
type: 'column'
},
title: {
text: ''
},
subtitle: {
text: ''
},
xAxis: {
categories: [
'Jan',
'Feb',
'Mar',
'Apr',
'May',
'Jun',
'Jul',
'Aug',
'Sep',
'Oct',
'Nov',
'Dec'
],
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: ' ',
pointWidth : 28,
data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
});
注意 - 最终,这是Angularjs项目的一部分。 谢谢, VARUN
答案 0 :(得分:2)
你可以通过假冒系列将所有y值作为最大值来实现。将yMax保持为y的最大序列值。看看at this fiddle
您可能需要进一步对其进行一些自定义,例如隐藏工具提示和假系列的图例。
series: [{
name: ' ',
pointWidth : 28, dataLabels: {
enabled: false
}, color:'#bdbdbd',
data: [216.4, 216.4, 216.4, 216.4, 216.4, 216.4, 216.4, 216.4, 216.4, 216.4, 216.4, 216.4]
},{
name: ' ',
pointWidth : 28,
data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]