1
Hello, I would like to know how to customize the letters of Google Charts, I have a generated chart, however the names are big, so they do not appear all, someone knows a way to decrease the letters or else, put the fallen words?
Follows 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
}
}
};
I tried to do it and it didn’t work.
– Carlos Eduardo
Could edit the message and post your code?
– Netinho Santos
Okay, I put the code in the question
– Carlos Eduardo