如何更改谷歌图表标题字体大小?

时间:2016-05-12 02:24:59

标签: html google-visualization

如何在Google图表中更改标题的字体大小?

   var options = {
      title: 'My Daily Activities',
      'backgroundColor': 'transparent',   
      is3D: true,
    };

1 个答案:

答案 0 :(得分:41)

在像这样的选项中使用titleTextStyle

var options = {
    titleTextStyle: {
        color: <string>,    // any HTML string color ('red', '#cc00cc')
        fontName: <string>, // i.e. 'Times New Roman'
        fontSize: <number>, // 12, 18 whatever you want (don't specify px)
        bold: <boolean>,    // true or false
        italic: <boolean>   // true of false
    }
}

您可以在此处找到Google图表的完整支持指南 https://developers.google.com/chart/interactive/docs