1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
angular.module("google-chart-sample").controller("GenericChartCtrl", function ($scope, $routeParams) {
$scope.chartObject = {};
$scope.onions = [
{v: "Onions"},
{v: 3},
];
$scope.chartObject.data = {"cols": [
{id: "t", label: "Topping", type: "string"},
{id: "s", label: "Slices", type: "number"}
], "rows": [
{c: [
{v: "Mushrooms"},
{v: 3},
]},
{c: $scope.onions},
{c: [
{v: "Olives"},
{v: 31}
]},
{c: [
{v: "Zucchini"},
{v: 1},
]},
{c: [
{v: "Pepperoni"},
{v: 2},
]}
]};
// $routeParams.chartType == BarChart or PieChart or ColumnChart...
$scope.chartObject.type = $routeParams.chartType;
$scope.chartObject.options = {
'title': 'How Much Pizza I Ate Last Night'
}
});
|