Speical符号在高图中以x轴形式出现?

时间:2016-07-20 08:59:11

标签: highcharts

生成图表时,我在x-axis中获得了特殊符号。我无法弄清楚这个问题。我的实际字符串"在教练之后,团队或个人分工的员工参与分数"。请建议我。

我已实施的代码:http://jsfiddle.net/sameekmishra/kzcxez3z/2/

enter image description here

谢谢,

1 个答案:

答案 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
     }
}],

希望这会有所帮助:)