如何在highcharts中以百分比设置列的宽度
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
}
}
};
答案 0 :(得分:1)
不幸的是,不支持百分点宽度。