Highcharts:瀑布虫的对数标度

时间:2016-08-31 15:09:07

标签: javascript highcharts scale logarithm yaxis

尝试在yAxis图表上设置logarithmicWaterfall类型时,Highcharts会抛出以下错误。

  

错误10:无法在对数轴上绘制零或零零值

我已尝试在我的系列中设置pointStart: 1,也尝试设置yAxis.min=1,但我仍有问题。 我在数据中有负值,但从数学角度来看它无关紧要(顺便说一下,它也只适用于正值)。

重现错误的最小代码:http://jsfiddle.net/1d2zsvLf/3/

直接代码:

$(function() {
  $('#container').highcharts({
    chart: {
      type: 'waterfall'
    },
    yAxis: {
      type: 'logarithmic',
      // min: 1
    },
    series: [{
      data: [2000, 23, 36, 12, -4, -6, -32, 1500],
      // pointStart: 1
    }]
  });
});

0 个答案:

没有答案