更改 Google 折线图中系列标签的字体大小
Change font size of series label in Google Line Chart
是否有一个选项可以为每个系列线的标签设置字体大小,这些标签显示在 Google 图表的右侧?在概述示例 (https://developers.google.com/chart/interactive/docs/gallery/linechart) 中,我指的标签是“狗”和“猫”。我的图表有很多系列,标签太多,在图表底部被截断。我想让它们变小以适合它们。
使用以下选项...
legend.textStyle.fontSize
例如
legend: {
textStyle: {
fontSize: 8
}
}
是否有一个选项可以为每个系列线的标签设置字体大小,这些标签显示在 Google 图表的右侧?在概述示例 (https://developers.google.com/chart/interactive/docs/gallery/linechart) 中,我指的标签是“狗”和“猫”。我的图表有很多系列,标签太多,在图表底部被截断。我想让它们变小以适合它们。
使用以下选项...
legend.textStyle.fontSize
例如
legend: {
textStyle: {
fontSize: 8
}
}