Highcharts: Displaying zero values in logarithmic scale

天大地大妈咪最大 提交于 2019-11-29 12:06:32
SteveP

Although not perfect, the best I came up with was to set the zero point to 0.0001 and then set the y-axis min to 0.0001:

http://jsfiddle.net/6LHT8/

yAxis: {        
    min:0.0001,
    type: 'logarithmic'
},

series: [{
    data: [100,10,0.0001,0.1,0.01,0.1]
}]

Also, this answer may nelp: Highcharts - best way to handle and display zero (or negative) values in a line chart series with logarithmic Y axis

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!