棒グラフのラベルをグラフ幅の 50% に設定する方法はありますか? 私はこれを試しましたが、うまくいきません:
xAxis: {
categories: [],
labels: {
formatter: function() {
var text = this.value;
return '<div class="js-ellipse" style="width:100%; overflow:hidden; text-overflow: ellipsis" title="' + text + '">' + text + '</div>';
},
style: {
width: '50%'
},
useHTML: true
}
},
したがって、目標は棒グラフの左側に、グラフ コンテナー全体の幅の 50% のラベルを配置することです。