Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要这张图表的帮助。如果系列值不是 0.0,则图表的最小值为 0,并且正确位于图表底部:
但如果值都等于 0.0,则 y 轴线显示在图表中间:
我尝试设置
{min: 0,}
在 y 轴上,但它不起作用。显然我无法设置最大值,因为我有一个动态数据。我该如何解决这个问题?
如果无法设置最大值,则可以设置 minRange
yAxis: [{ // Primary yAxis min: 0, minRange: 0.1,
http://jsfiddle.net/tZayD/