8

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

4

1 回答 1

13

适当的选项是未记录的。您需要设置chartArea.backgroundColor.strokechartArea.backgroundColor.strokeWidth选项。该stroke选项控制边框的颜色,并采用任何有效的 HTML 颜色字符串。该strokeWidth选项控制边框的宽度,并采用一个整数作为像素宽度:

chartArea: {
    backgroundColor: {
        stroke: '#4322c0',
        strokeWidth: 3
    }
}
于 2013-10-10T22:30:42.063 回答