highcharts v3.0Beta bubblechart not rendering. Possible bug?

爷,独闯天下 提交于 2019-12-13 07:06:18

问题


I've get a problem using a bubble chart and specifying min and max values on the x axis. In this example, no points are plotted:

   $('#container').highcharts({
    chart: {
        type: 'bubble'
    },
    title: {
        text: 'Highcharts bubbles problem'
    },               
    xAxis: {
        min:20,
        max:80
    },
    yAxis: {       
        min:-80,
        max:80
    },
    series: [{ 
        data: [ {"x":23,"y":22,"z":200}, {"x":43,"y":12,"z":100} ]
    }]
});

As you can see in the jsfiddle http://jsfiddle.net/6Qhh3/, the chart doesn't plot any bubbles.

If you remove the min parameter from the x axis, it works If you change it to a scatter chart, it also works. It only seems to fail if it's a bubble chart AND you specify a min on the xAxis.

Am I missing something, or is this a bug in v3.0Beta?

UPDATE: I am getting a console error: 'radii is undefined' on line 1905 of highcharts-more.js

UPDATE: I've emailed this to highcharts support.

UPDATE: Confirmed as a bug by highcharts support.


回答1:


Indeed it looks like a bug, so I've reported it to our devs https://github.com/highslide-software/highcharts.com/issues/1578




回答2:


Confirmed as a bug in v3.0Beta by highcharts support.



来源:https://stackoverflow.com/questions/15275162/highcharts-v3-0beta-bubblechart-not-rendering-possible-bug

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