无法获得angular-google-chart以生成双轴图表

时间:2017-03-26 00:36:26

标签: angularjs charts google-chartwrapper

我无法获得角度 - 谷图来生成具有两个y轴刻度的图表。我尝试过很多来自网上直接使用谷歌图表但没有运气的例子。我已经包含了我认为是一个简单的例子。此代码位于控制器内。这是我的代码:

(function () {
  'use strict';

  angular
    .module('core')
    .controller('DashboardErrorRatesController', DashboardErrorRatesController);

  DashboardErrorRatesController.$inject = ['$rootScope', '$scope', '$state', '$timeout', '$interval', 'Authentication', 'locale', 'Common', 'Query', 'googleJsapiUrl'];

  function DashboardErrorRatesController($rootScope, $scope, $state, $timeout, $interval, Authentication, locale, Common, Query, googleJsapiUrl) {

$scope.myChartObject = {
  type: 'LineChart',
  displayed: false,
  chartArea: { left: 100, top: 100, width: 400, height: 450 },
  data: {
    cols: [
      {
        id: 'issues',
        label: 'Issues per Week',
        type: 'string'
      },
      {
        id: 'pct_people',
        label: '% of People',
        type: 'number'
      },
      {
        id: 'avg_excallations',
        label: 'Average Escallations',
        type: 'number'
      }
    ],
    rows: [
      { 'c': [{ 'v': '0' }, { 'v': 0.39 }, { 'v': 0 }] },
      { 'c': [{ 'v': '1' }, { 'v': 0.17 }, { 'v': 31.063636363636363 }] },
      { 'c': [{ 'v': '2' }, { 'v': 0.12 }, { 'v': 30.46086956521739 }] },
      { 'c': [{ 'v': '3' }, { 'v': 0.09 }, { 'v': 49.612360674157316 }] },
      { 'c': [{ 'v': '4' }, { 'v': 0.06 }, { 'v': 26.975 }] },
      { 'c': [{ 'v': '5' }, { 'v': 0.04 }, { 'v': 32.82588235294117 }] },
      { 'c': [{ 'v': '6' }, { 'v': 0.03 }, { 'v': 25.413886666666667 }] },
      { 'c': [{ 'v': '7' }, { 'v': 0.03 }, { 'v': 35.716933333333344 }] },
      { 'c': [{ 'v': '8' }, { 'v': 0.02 }, { 'v': 11.689516129032258 }] },
      { 'c': [{ 'v': '9' }, { 'v': 0.01 }, { 'v': 10.20833125 }] },
      { 'c': [{ 'v': '10' }, { 'v': 0.01 }, { 'v': 29.311111111111114 }] },
      { 'c': [{ 'v': '10+' }, { 'v': 0.05 }, { 'v': 24.697815555555554 }] }
    ],
    options: {
      title: 'Something',
      isStacked: false,
      width: 300,
      height: 600,
      vAxis: {
        0: {
          title: '% of People',
          format: '#%'
        },
        1: {
          title: 'Average Escallations',
          format: '#,###.##'
        }
      },
      hAxis: {
        title: 'Issues per Week'
      },
      seriesType: 'bars',
      series: {
        0: { targetAxisIndex: 0 },
        1: { targetAxisIndex: 1 }
      }
    },
    formatters: {}
  }
};
  }
}());

我认为这应该产生一个带有轴的图表,但不是。这几乎就像角度谷歌图表库(0.1.0)使用的旧版谷歌图表,但我无法弄明白。

这是html:

<div google-chart chart="myChartObject"></div>

1 个答案:

答案 0 :(得分:0)

我明白了!我改变了&#39; LineChart&#39;到&#39; ComboChart&#39;。哇,花了很长时间。我讨厌这种情况发生。