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