我想在高图派中改变我的传奇的大小。
之前的主题有关于此,但我猜他们的解决方案不适用于我的软件版本。
以下是我的互动代码:http://jsfiddle.net/qt9h4zuc/2/
$(function() {
var chart = new Highcharts.Chart({
...
});
);
有人有想法吗?
答案 0 :(得分:0)
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' }
}
}
},
干杯!