charts - setonloadcallback - gráficas en google
Los gráficos de Google cambian el tamaño de la fuente (2)
¿Alguien sabe una manera de cambiar el tamaño de fuente de estas fechas? Quiero hacerlos un poco más pequeños para que todos se ajusten en lugar de saltar uno cada vez.
Intenta con:
options:{
hAxis : {
textStyle : {
fontSize: 7 // or the number you want
}
}
}
Solucioné este problema usando el siguiente código:
titleTextStyle : un objeto que especifica el estilo del texto del título. El objeto tiene este formato:
var options = {
title: ''Chart Name '',
width: ''100%'',
height: ''100%'',
legend: {
position: "none"
},
hAxis: {
title: ''Request Status'',
titleTextStyle: {
color: "#000",
fontName: "sans-serif",
fontSize: 11,
bold: true,
italic: false
}
},
vAxis: {
title: ''Amount requested ($)'',
titleTextStyle: {
color: "#000",
fontName: "sans-serif",
fontSize: 11,
bold: true,
italic: false
}
},
annotations: {
alwaysOutside: true,
textStyle: {
fontSize: 14,
auraColor: ''none''
}
}
};
Feliz codificación ...