Highcharts - 选择图例大小

时间:2014-08-13 08:10:27

标签: javascript highcharts

我想在高图派中改变我的传奇的大小。

之前的主题有关于此,但我猜他们的解决方案不适用于我的软件版本。

以下是我的互动代码:http://jsfiddle.net/qt9h4zuc/2/

$(function() {           
   var chart = new Highcharts.Chart({
        ...
});
);

有人有想法吗?

1 个答案:

答案 0 :(得分:0)

发现它! 只需在plotOption

中添加此行
style: { fontFamily: '\'Lato\', sans-serif', lineHeight: '18px', fontSize: '25px' }

最后我们将:

    plotOptions: {
        pie: {
            size:'60%',
            fontSize:'30pt',
            dataLabels: {
                color:'red',
                enabled: true,
        style: { fontFamily: '\'Lato\', sans-serif', lineHeight: '18px', fontSize: '25px' }


            }
        }
    },

干杯!