我目前正在使用ChartWrapper
并ControlWrapper
在我一直从事的项目中开发一些实用程序。让我使用示例中的控件和仪表板中的这个示例:
var pieChart = new google.visualization.ChartWrapper({
'chartType': 'PieChart',
'containerId': 'chart_div',
'options': {
'width': 300,
'height': 300,
'pieSliceText': 'value',
'legend': 'right'
}
});
我知道pieChart
是 type ChartWrapper
,但我正在使用一个PieChart
对象来绘制图表。现在,我该如何设置PieChart
对象的选项,而不是ChartWrapper
? 我尝试使用getChart
,但总是返回 null。我想
ChartWrapper
有一个类型的对象PieChart
。如果我能以某种方式访问该对象,那么我可以设置一些选项来满足我的需求。有人知道该怎么做吗?