2017-04-07 2 views

Antwort

1

Sie sollten eine Kategorie Achsentyp für beide verwenden - x und y-Achse.

Highcharts.chart('container', { 
chart: { 
    type: 'bubble' 
}, 

xAxis: { 
    categories: ['S', 'M', 'T', 'W', 'T', 'F', 'S'], 
    opposite: true, 
    min: 0, 
    max: rows 
}, 

yAxis: { 
    categories: ['Feb 19', 'Feb 26', 'Mar 5', 'Mar 12'], 
    min: 0, 
    max: cols 
}, 

Beispiel: http://jsfiddle.net/L2fkp6ma/

Verwandte Themen