1. 程式人生 > >highCharts tootip 內容太長,自動換行.

highCharts tootip 內容太長,自動換行.

原理:通過tooltip 的pointformatter 方法:做2個操作:

1 取消父級span的 white-space,這個屬性導致span不能換行

2 新增換行的div重組內容

//執行效果圖


/*************************************highChart官網修改後臺的程式碼********************************************/

$(function () {

    $('#container').highcharts({
        chart: {
            plotBackgroundColor: null,
            plotBorderWidth: null,
            plotShadow: false
        },
        title: {
            text: 'Browser market shares at a specific website, 2010'
        },
        tooltip: {
            useHTML:true,

            pointFormat: '{series.name}: {point.percentage:.1f}%',
            formatter : function(){
             $("div.highcharts-tooltip span").css("white-space", "inherit");//允許換行
                //重新生成
               var percentage = !this.point.percentage ? this.point.percentage : this.point.percentage.toFixed(1);   
               var content = '<div style="font-size: 10px;width: 200px;display:block;word-break: break-all;word-wrap: break-word;">' + this.key + '<br/>' +
               '<span style="font-size:10px">'+ this.series.name+': <b>'+percentage+'%</b></span></div>';
               return content;
            }

        },
        plotOptions: {
            pie: {
                allowPointSelect: true,
                cursor: 'pointer',
                dataLabels: {
                    enabled: true,
                    color: '#000000',
                    connectorColor: '#000000',
                    format: '<b>{point.name}</b>: {point.percentage:.1f} %'
                }
            }
        },
        series: [{
            type: 'pie',
           // name: 'Browser share',
            data: [
                ['我是一直醜小鴨,咿呀咿呀喲,我是一直醜小鴨,咿呀咿呀喲我是一直醜小鴨,咿呀咿呀喲,咿呀咿呀喲我是一直醜小鴨,咿呀咿呀喲咿呀咿呀喲,咿呀咿呀喲我是一直醜小鴨,咿呀咿呀喲',   45.0],
                ['IE',       26.8],
                {
                    name: 'Chrome',
                    y: 12.8,
                    sliced: true,
                    selected: true
                },
                ['Safari',    8.5],
                ['Opera',     6.2],
                ['Others',   0.7]
            ]
        }]
    });
});