如何在Google Charts中绘制图表区域周围的边框?

时间:2013-10-10 22:07:40

标签: charts google-visualization

我只需要图表区域周围的边框,而不是整个图表。我找不到要设置的属性。这是在Google Visualization API中。

1 个答案:

答案 0 :(得分:12)

适当的选项没有记录。您需要设置chartArea.backgroundColor.strokechartArea.backgroundColor.strokeWidth选项。 stroke选项控制边框的颜色,并采用任何有效的HTML颜色字符串。 strokeWidth选项控制边框的宽度,并采用宽度的整数(以像素为单位):

chartArea: {
    backgroundColor: {
        stroke: '#4322c0',
        strokeWidth: 3
    }
}