我一直在尝试创建一个具有对数y轴的highcharts极坐标图,但是当我添加轴类型时,图表会消失。
没有对数的示例:http://jsfiddle.net/jbirdjavi/XPZhe/
对数示例:http://jsfiddle.net/jbirdjavi/XPZhe/1/
yAxis: {
type: 'logarithmic',
min: 0,
max: 20,
endOnTick: false,
showLastLabel: true,
labels: {
formatter: function () {
return this.value;
}
}
},