我在jsfiddle中创建了一个图表,它表示两个值。id喜欢调整堆叠条形图,以便它占据div的整个宽度。它应该覆盖背景,就像这样。
http://jsfiddle.net/ftaran/jBHDM/4/
$(function () {
$('#container').highcharts({
chart: {
type: 'bar',
background:'yellow'
},
credits: {
enabled: false
},
title: {
text: null
},
xAxis: {
labels: {
enabled: false
}
},
yAxis: {
title: null,
labels: {
enabled: false
},
labels: {
enabled: false
}
},
tooltip: {
formatter: function () {
return '<b>' + this.series.name + ':</b> ' + this.y + '<br/>' + this.percentage.toFixed(2) + '%';
}
},
legend: {
enabled: false
},
plotOptions: {
series: {
stacking: 'normal'
}
},
series: [{
name: 'Fail',
color: 'red',
data: [5]
}, {
name: 'Success',
color: 'green',
data: [2]
}]
});
});
2条答案
按热度按时间gjmwrych1#
请尝试使用此
yAxis
参数:7gs2gvoe2#
只是补充@wergeld的回答,如果你在应用他的建议后仍然没有得到预期的结果:
例如: