gpt4 book ai didi

highcharts - 在 HighChart Solid Gauge 中隐藏 YAxis 值

转载 作者:行者123 更新时间:2023-12-03 16:52:29 26 4
gpt4 key购买 nike

在下面的示例中,是否可以“隐藏”Y 轴值 - 例如 - 不显示 0 和 200(在左侧)。寻找更清晰的图表..

http://www.highcharts.com/demo/gauge-solid/dark-unica

最佳答案

通过 CSS 定位 yAxis 标签,您可以做到这一点

CSS:

.highcharts-axis-labels.highcharts-yaxis-labels{
display:none;
}

或者,在仪表的情况下,通过设置 yAxis 的 showFirstLabelshowLastLabel 属性具有相同的效果。

JS:

    yAxis: {
showFirstLabel:false,
showLastLabel:false,
min: 0,
max: 5,
title: {
text: 'RPM'
}
}

这是一个展示 http://jsfiddle.net/robschmuecker/yra3mex6/ 的演示这是有关属性的文档 http://api.highcharts.com/highcharts#yAxis.showFirstLabel

关于highcharts - 在 HighChart Solid Gauge 中隐藏 YAxis 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28301978/

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