作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我正在尝试做的一个例子。
http://jsfiddle.net/na74Lndg/1/
如何避免 highcharts 插入 12.5 yAxis 线。
如果该系列有任何数据达到 11,那么我确实希望看到 12.5 行,但如果那里什么也没有,我就不想看到。
我试过使用 softMax 但这并没有解决问题,
yAxis: {
softMax: 10
}
我当然可以编写代码来计算最大数据系列并相应地设置最大值,但无需编写太多代码即可寻找答案。
最佳答案
您可以将 maxPadding
设置为 0
(或达到您想要的结果的其他数字)。
yAxis: {
maxPadding: 0,
...
}
更新的 fiddle :
引用:
maxPadding: Number Since 1.2.0 Padding of the max value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer. This is useful when you don't want the highest data value to appear on the edge of the plot area. Defaults to 0.05.
您还可以查看 endOnTick
属性,它允许轴延伸超过 10,但不绘制下一个刻度。
关于javascript - Highcharts-如何将 yAxis 设置为系列数据中最接近或精确的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40513904/
我是一名优秀的程序员,十分优秀!