生成图表时,我在x-axis
中获得了特殊符号。我无法弄清楚这个问题。我的实际字符串"在教练之后,团队或个人分工的员工参与分数"。请建议我。
我已实施的代码:http://jsfiddle.net/sameekmishra/kzcxez3z/2/
谢谢,
答案 0 :(得分:0)
Try this. (This is to add ellipsis inside xAxis)
xAxis: [{
labels: {
formatter: function () {
var formatted;
if (this.value.length > 35) {
formatted = this.value.substring(0, 30) + "..." + this.value.substring(this.value.length - 10);
} else {
formatted = this.value;
}
return '<div class="js-ellipse" style="width:226; overflow:hidden" title="' + this.value + '">' + formatted + '</div>';
},
style: {
width: '226'
},
useHTML: true
}
}],
希望这会有所帮助:)