How to Decrease Google+ Lyrics

1

Hello, I would like to know how to customize the letters of Google Charts, I have a graph generated, but the names are great, so they do not all appear, does anyone know a way to decrease the letters or put the words down? p>

Follow the code

     var options = {

            chart: {
                title: 'Relatorio Geral',
                subtitle: 'Quantidade de Operarios por função',
            },

            chartArea: { width: '100%', height: '50%' },
            annotations: {
                textStyle: {
                    fontName: 'Times-Roman',
                    fontSize: 18,
                    bold: true,
                    italic: true,
                    // The color of the text.
                    color: '#871b47',
                    // The color of the text outline.
                    auraColor: '#d799ae',
                    // The transparency of the text.
                    opacity: 0.8
                }
            }
    };
    
asked by anonymous 25.05.2017 / 17:08

1 answer

2

According to the documentation you can use textStyle. link

var options = {
  annotations: {
    textStyle: {
      fontName: 'Times-Roman',
      fontSize: 18,
      bold: true,
      italic: true,
      // The color of the text.
      color: '#871b47',
      // The color of the text outline.
      auraColor: '#d799ae',
      // The transparency of the text.
      opacity: 0.8
    }
  }
};
    
25.05.2017 / 17:13