1

我正在寻找一种在 Highcharts 中自定义图例字体的方法。

我尝试了不同的方法,这些方法看起来不错,但没有任何效果。

感谢您的帮助。

这是我的代码:

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

    chart: {
        renderTo: 'container'
    },

    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    legend: {
        layout: 'horizontal',
        itemStyle: {
            paddingBottom: '10px'
        },
        //style: {
        color: '#FF0000', fontFamily: 'Arial', fontSize: '24px'
        //}
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }, {
        data: [129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4]
        }]

    });
});
4

1 回答 1

4

您需要指定 itemStyle。例如

itemStyle:{'font-size':'30px'}

根据您要使用的 css,您可能还必须设置“useHTML”。从文档中:

Using HTML allows for advanced formatting, images and reliable bi-directional text rendering.
于 2013-03-08T15:47:11.790 回答