1

我在下面的图表上有文字。我想更改文本“abc”的字体大小。我尝试将 'font-size':'8px' 放在 css 中,但它不起作用。有人对此有任何想法吗?

在此处输入图像描述 这是小提琴链接:http: //jsfiddle.net/3hGz2/

           'events': {
           'load': function () {
               var label = this['renderer']['label']('* y='+ slope +'x'+'+('+ intercept + ')<br>  R^2='+ rSquare)
               .css({
                   'width': '150px',
                   'color' : 'grey',
                   'font-size':'8px'

               })
               .attr({
                   'stroke': 'grey',
                   'stroke-width': 0,
                   'r': 5,
                   'padding': 3                      
               })
               .add();

               label.align(Highcharts.extend(['label']['getBBox()'], {
                   'align': 'right',
                   'x': -110, // offset
                   'verticalAlign': 'bottom',
                   'y': -130 // offset
               }), null, 'spacingBox');

           }
       }
4

1 回答 1

1

http://jsfiddle.net/3hGz2/1/

您可以将字体大小指定为fontSize

.css({
    'width': '150px',
    'color' : 'grey',
    'fontSize':'20px'
})
于 2013-09-26T21:15:18.177 回答