ハイチャートで列の幅をパーセンテージで設定する方法
options = {
chart: {
renderTo: 'container',
type: 'column'
},
title: {
text: 'Data extracted from a HTML table in the page'
},
xAxis: {
},
yAxis: {
title: {
text: 'Units'
}
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
this.y +' '+ this.x.toLowerCase()+''+this.percentage;
}
},
plotOptions: {
column: {
pointWidth: 50
}
}
};