我只需要图表区域周围的边框,而不是整个图表。我找不到要设置的属性。这是在Google Visualization API中。
答案 0 :(得分:12)
适当的选项没有记录。您需要设置chartArea.backgroundColor.stroke
和chartArea.backgroundColor.strokeWidth
选项。 stroke
选项控制边框的颜色,并采用任何有效的HTML颜色字符串。 strokeWidth
选项控制边框的宽度,并采用宽度的整数(以像素为单位):
chartArea: {
backgroundColor: {
stroke: '#4322c0',
strokeWidth: 3
}
}