angular.js 的仪表数组

Array of Gauges with angular.js

我在我的 angular.js 上使用 gauge.js(http://bernii.github.io/gauge.js/) 并且我正在尝试创建动态的仪表实例,设置值抛出 ng-model, 我的模板中有:

  <a ng-repeat="item in items" 
           href="#/{{item.queId}}"
           class="item item-thumbnail-left">
          <img ng-src="{{ item.entrancePhotoUrl }}">
          <h1>{{ item.name }}</h1><h5>{{item.waitTimeEstimationSec}}</h5>
          <h4>{{ item.streetAddress }}</h4>
          <canvas gaugejs options="gaugeOptions" value="12" max-value="15" animation-time="animationTime"></canvas>
        </a>
      </div>

但如何使用 ng 模型为我的仪表设置值?

谢谢!

我找到了最适合我的量规及其 wj-radial-gauge。非常容易使用。