How to integrate Google charts as an AngularJs directive?

前端 未结 4 1813
一生所求
一生所求 2021-02-01 05:36

There are some examples of integrating Google charts as an AngularJs directive.

Like this one: http://plnkr.co/edit/YzwjuU?p=preview

Update: I w

4条回答
  •  猫巷女王i
    2021-02-01 06:18

    Here is a good example of a AngularJs Google Chart Tools directive in action.

    • Example plunker.

    Instructions

    These same instructions are in the plunker itself.

    1. Download ng-google-chart.js from github and add a script tag to your html.
    2. Create a div like:

    3. Add 'googlechart' to your module like this:

      angular.module('myApp',[ 'googlechart', ...

    4. Populate the $scope.chart like this:
    {
      "type": "ColumnChart",
      "cssStyle": "height:200px; width:300px;",
      "data": {
        "cols": [
          {
            "id": "month",
            "label": "Month",
            "type": "string",
            "p": {}
          },
          {
            "id": "laptop-id",
            "label": "Laptop",
            "type": "number",
            "p": {}
          },
          {
            "id": "desktop-id",
            "label": "Desktop",
            "type": "number",
            "p": {}
          },
          {
            "id": "server-id",
            "label": "Server",
            "type": "number",
            "p": {}
          },
          {
            "id": "cost-id",
            "label": "Shipping",
            "type": "number"
          }
        ],
        "rows": [
          {
            "c": [
              {
                "v": "January"
              },
              {
                "v": 19,
                "f": "42 items"
              },
              {
                "v": 12,
                "f": "Ony 12 items"
              },
              {
                "v": 7,
                "f": "7 servers"
              },
              {
                "v": 4
              }
            ]
          },
          {
            "c": [
              {
                "v": "February"
              },
              {
                "v": 13
              },
              {
                "v": 1,
                "f": "1 unit (Out of stock this month)"
              },
              {
                "v": 12
              },
              {
                "v": 2
              }
            ]
          },
          {
            "c": [
              {
                "v": "March"
              },
              {
                "v": 24
              },
              {
                "v": 0
              },
              {
                "v": 11
              },
              {
                "v": 6
              }
            ]
          }
        ]
      },
      "options": {
        "title": "Sales per month",
        "isStacked": "true",
        "fill": 20,
        "displayExactValues": true,
        "vAxis": {
          "title": "Sales unit",
          "gridlines": {
            "count": 6
          }
        },
        "hAxis": {
          "title": "Date"
        }
      },
      "formatters": {},
      "displayed": true
    }
    

提交回复
热议问题