我建了一个高图,想改变按钮的字体。请看 抚弄
buttonTheme: {
fill: '#0065b3',
padding: 10,
width: 60,
r: '5',
style: {
fontFamily: 'Poppins'
},
states: {
hover: {
style: {
fontFamily: 'Poppins',
fontWeight: 'bold'
}
},
select: {
style: {
fontFamily: 'Poppins'
}
}
}
},
所选按钮的字体是正确的,但其他按钮的字体不正确。将鼠标悬停在它们上面后,它们得到了正确的字体,并保留了它。当你重新加载图形时,字体又丢失了。我该怎么做呢?
尝试使用CSS属性来设置它作为变通方法。
.highcharts-range-selector-buttons {
font-family: Poppins !important;
}