web-dev-qa-db-ja.com

グーグルチャートのタイトルのフォントサイズを変更するには?

Googleチャートでタイトルのフォントサイズを変更するにはどうすればよいですか?

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

このようなオプションで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 Chartの完全なサポートガイドは、こちらで見つけることができます https://developers.google.com/chart/interactive/docs

42
j3ff