我正在寻找一种在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]
}]
});
});
答案 0 :(得分:4)
您需要指定itemStyle。 e.g。
itemStyle:{'font-size':'30px'}
根据您要使用的CSS,您可能还需要设置' useHTML'。来自文档:
Using HTML allows for advanced formatting, images and reliable bi-directional text rendering.