gpt4 book ai didi

javascript - 在 highchart 中,Y 轴绘图线标签被 chop

转载 作者:行者123 更新时间:2023-12-01 17:46:54 24 4
gpt4 key购买 nike

我想创建添加了自定义水平线以显示平均基准的条形图。这些行上还添加了标签以显示基准标题。我将线标签切断,如下图所示。 Barchart

此外,如果绘图线值超出绘图范围,绘图线将被隐藏。如何在 Highcharts 中处理这种情况?以下是我正在使用的代码。

$(function () { 
$('#chartContainer').highcharts({
credits: {
enabled: false
},
colors: ['#3C791D','#BEBEBE','#7F7F7F'],
chart: {
type: 'column'
},
title: {
text: ''
},
xAxis: {
categories: ['Great', 'Neutral', 'Bad']
},
yAxis: {
title: {
text: ''
},
plotLines:[{
value:80,
color: '#000000',
width:2,
zIndex:4,
label:{
text:'XYZ Average: 80%',
align: 'right'
}
},{
value:60,
color: '#000000',
width:2,
zIndex:4,
label:{
text:'PQR Average: 60%',
align: 'right'
}
}]
},
legend: {
enabled : false
},
plotOptions: {
column: {
dataLabels: {
enabled: true,
formatter:function() {
return this.y + '%';
}
},
colorByPoint: true,
enableMouseTracking: false
}
},
series: [{
type: 'column',
name: "s",
data: [70, 10, 40]
}]
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<html>
<body>
<div id="chartContainer"></div>
</body>
</html>

最佳答案

设置图表的高度以及Y轴的最大值

chart: {
height: 600
},
yAxis: {
min: 0,
max: 100
}

关于javascript - 在 highchart 中,Y 轴绘图线标签被 chop ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35933647/

24 4 0