谷歌图表ChartWrapper图表包装参数选项字段文档



我是谷歌图表的新手。我使用ChartWrapper绘制图表,在创建这样的图表时,我将图表包装器参数传递给构造函数:

var chartWrapperArgs = {
                chartType: "LineChart",
                dataTable: dataTable,
                options: { // <<<< where to find a documentations about this property ?
                    "width": 900,
                    "height": 800,
                    "is3D": true,
                    "title": "Явление на числата ",
                    "isStacked": "false",
//                    "fill": 20,
                    "displayExactValues": false,
                    "vAxis": {
                        "title": "явление"
                    },
                    "hAxis": {
                        "title": "число"
                    }
                },
                containerId: containerId
            };

            var chartWrapper = new google.visualization.ChartWrapper(chartWrapperArgs); 

我的问题是在哪里可以获得关于"选项"参数的文档?什么选项可以传递给"选项"?

我在这里查看了谷歌文档但他们只描述了什么选择,举了一个简单的例子,仅此而已。但是我发现,在其中的一些,还有其他的,代码示例中使用了其他参数!

适当的选项取决于chartType,选项的文档与其他关于chartType的文档一起提供。请参阅上的列表https://developers.google.com/chart/interactive/docs/gallery

对于折线图,此处记录了选项:https://developers.google.com/chart/interactive/docs/gallery/linechart#Configuration_Options

最新更新