0

我试图使用谷歌图表工具提供的饼图。他们的文档指定了一组配置选项

https://google-developers.appspot.com/chart/interactive/docs/gallery/piechart#Configuration_Options

但我不知道如何或在哪里在示例代码中指定它们?

4

1 回答 1

0

使用示例代码中给出的选项变量完成配置。为了改变背景颜色,我替换了这个

  var options = {'title':'Some Title',
                 'width':400,
                 'height':300};

这样

  var options = {'title':'Some Title',
                 'width':400,
                 'height':300, 'backgroundColor':'#EEF4EE'};
于 2012-05-06T17:42:06.863 回答