Highcharts can't render a bubble chart with a single series -


i'm using new bubble chart included in highcharts 3.0 beta , i'm facing strange bug : when try render bubble chart 1 series of data, doesn't display anything... , doesn't throw error. here's code (or jsfiddle)

$(function () { $('#container').highcharts({      chart: {         type: 'bubble'     },      title: {         text: 'highcharts bubbles bug'     },      series: [{         data: [{             "x": 23,             "y": 22,             "z": 200         }]     }]  }); }); 

something similar signalled here : highcharts v3.0beta bubblechart not rendering. possible bug? (and has been confirmed bug), i'm not using min , max values x nor y axis, , pass single bubble in single series.

so, bug, or normal behaviour (and if so, why ?) ?

it looks related other bug. if add:

    xaxis: { max:50            },     yaxis: {min:0, max:50}, 

to jsfiddle, starts working.

even adding:

yaxis: {max:30}, 

makes plot bubble.

the original bug reported fixed yesterday in github, try out new version there if want to. https://github.com/highslide-software/highcharts.com/tree/master/js


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -