web-dev-qa-db-fra.com

Comment changer la taille de la police du titre du graphique Google?

Comment changer la taille de police de mon titre dans google chart?

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

Utilisez titleTextStyle dans des options comme celle-ci

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
    }
}

Vous pouvez trouver un guide d'assistance complet pour les graphiques Google ici https://developers.google.com/chart/interactive/docs

42
j3ff