Linux浏览器上的Highchart Legend渲染问题,我认为问题发生在highcharts中的字体系列中。如何将自定义字体系列添加到图例
下面添加了我的代码
title: {
text: c,
widthAdjust: -180
},
tooltip: {
pointFormat: '{series.name}: <b>{point.y}</b>'
},
legend: {
itemStyle: {
width:'100px',
color: '#666',
textOverflow: 'ellipsis',
overflow: 'hidden'
}
},
答案 0 :(得分:1)
要更改图例的字体系列,您需要设置legend.itemStyle
的fontFamily
,如下所示:
legend: {
itemStyle:{
fontFamily: 'Comic Sans MS'
}
}