gpt4 book ai didi

highcharts - 如何删除highcharts的y轴上的基线?

转载 作者:行者123 更新时间:2023-12-04 23:50:45 25 4
gpt4 key购买 nike

我需要从 highcharts 图表中删除以下环绕部分,一个是 y 轴上的基线,另一个是 x 轴上的值标签。我已经尝试了 API 中提到的几件事,但我还没有能够做到这一点。

enter image description here

fiddle
http://jsfiddle.net/ftaran/jBHDM/

$(function () {
$('#container').highcharts({
chart: {
type: 'bar'
},
title: {
text: null
},
xAxis: {
labels: {
enabled: false
}
},
yAxis: {
labels: {
enabled: false
},
tickWidth: 0,
gridLineWidth: 0,
labels: {
enabled: false
},
"startOnTick": true
},
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]
}]
});
});

最佳答案

要摆脱线条,您必须将这些添加到您的 xAxis配置:

lineWidth: 0,
tickWidth: 0

要去掉“值”文本,请将其添加到您的 yAxis配置:
title: null

这是最终的配置和指向 fiddle 的链接:
xAxis: {
lineWidth: 0,
tickWidth: 0,
labels: {
enabled: false
}
},
yAxis: {
labels: {
enabled: false
},
gridLineWidth: 0,
title: null,
"startOnTick": true
}

Highcharts 可能会令人困惑,因为哪个轴是 xAxisyAxis可不直观。希望这可以帮助!

关于highcharts - 如何删除highcharts的y轴上的基线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22894872/

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