有谁知道改变这些日期的字体大小的方法?我想让它们变得更小一些,所以它们都适合而不是每次跳过一次......
答案 0 :(得分:47)
尝试:
options:{
hAxis : {
textStyle : {
fontSize: 7 // or the number you want
}
}
}
答案 1 :(得分:1)
我使用以下代码解决了此问题:
titleTextStyle -指定标题文字样式的对象。该对象具有以下格式:
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'
}
}
};
More details from Google Chart
快乐的编码...