Highcharts - 相当于行高?

时间:2016-12-10 17:03:43

标签: highcharts

就像当你让enter进入一行时一样。当我把一个文本放在另一个文本之下时,没有空间,看起来一个文字在另一个之上。 这是我们试图生成的代码。 TIA



$(function () {

    Highcharts.chart('grafica1', {
        chart: {
            type: 'bar',
            plotBackgroundColor: null,
            plotBorderWidth: 0,
            plotShadow: false
        },
        title: {
            text: ' '
        },
        xAxis: {
            type: 'category'
        },
        yAxis: {
            title: {
                text: null,
            },
            labels: {
                    enabled: false
            }
        },
        legend: {
            enabled: false
        },
        plotOptions: {
            series: {
                borderWidth: 0,
                dataLabels: {
                    enabled: true,
                    format: '{point.y:.1f}%'
                }
            }
        },

        tooltip: {
            headerFormat: '<span style="font-size:11px">{series.name}</span><br>',
            pointFormat: '<span style="color:#005eb8">{point.name}</span>: <b>{point.y:.2f}%</b>'
        },

        series: [{
            name: 'Production',
            colorByPoint: true,
            data: [{
                name: 'PACKAGING PAPERS<br>AND BOARDS',
                y: 49,
                color: '#005eb8'
            }, {
                name: 'CASE MATERIALS',
                y: 29.9,
                color: '#fff',
                borderWidth : 2,
                borderColor : '#005eb8'
            }, {
                name: 'OTHER PACKAGING & PAPER',
                y: 14.4,
                color: '#fff',
                borderWidth : 2,
                borderColor : '#005eb8'
            },{
                name: 'WRAPPINGS',
                y: 4.7,
                color: '#fff',
                borderWidth : 2,
                borderColor : '#005eb8'
            }, 
            {
                name: ' ',
                y: 100,
                color: '#fff',
                borderWidth : 0,
                borderColor : '#fff'
            }]
        }]
    });
});
&#13;
#grafica2 tspan {
    font-size: 15pt;
    fill: #8cc640;
    font-family: Bebas-Bold;
    line-height: 30px;
}
&#13;
&#13;
&#13;

0 个答案:

没有答案