有没有办法使用jQuery函数更改fontSize?
我尝试使用此代码:
$('#container').highcharts().container.parentNode.style.fontSize = '40px';
我在这个小提琴上找到了:http://jsfiddle.net/highcharts/rcncL/
但是没有用,我收到了这个错误:
Uncaught TypeError: Cannot read property 'container' of undefined
对我来说没有运气:(
答案 0 :(得分:0)
$("#container")。highcharts({chart:style:{ fontSize:' 12px' }});
这应该可以解决问题。
答案 1 :(得分:0)
试试这个。
Highcharts.setOptions({
chart: {
style: {
fontSize: '40px'
}
}
});
答案 2 :(得分:0)
以简单的方式,您可以在任何使用文本的地方(如标签,标题)设置useHTML标志,然后使用该类返回包含在div对象中的文本。
$('#btn').click(function () {
$('.fontsize').css({
'font-size': '20px'
})
});