首页 文章

Angular-Charts - 饼图,在每个数据片段内显示标签

提问于
浏览
2

我正在学习角图-js的阶段 . 我试图使用angular-chart.js绘制饼图 . 但我无法找到在饼图上显示标签(而不是工具提示)的方法,饼图描述了每个数据片段 .

我是这样做的:

angular.module('App').controller('Controller', ['$scope', '$http', '$location', '$window', '$routeParams',
    function($scope, $http, $location, $window) {
        var diskDataJson = {
            "data": [80, 12],
            "labels": [Used space, Free Space],
            "colours": ['#9AB6F0', '#C2D3F6']
        };
    
        $scope.pieDiskData = json;
    }
]);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<table border="0" width="100%">
  <tr>
    <td style="border-left: 1px solid #0099CC" width="25%">
      <center><span><label ng-bind-html="'load.static.dashboard.system.DUSAGE' | translate"/></span>
      </center>
      <canvas id="pie33" class="chart chart-pie chart-xs ng-isolate-scope" height="120" width="240" data="pieDiskData.data" labels="pieDiskData.labels" colours="pieDiskData.colours" legend="true"></canvas>
    </td>
  </tr>
</table>

1 回答

  • 4

    改编自https://stackoverflow.com/a/25913101/360067 for angular-chart

    将以下 options 添加到您的范围

    $scope.options = {
        tooltipEvents: [],
        showTooltips: true,
        tooltipCaretSize: 0,
        onAnimationComplete: function () {
            this.showTooltip(this.segments, true);
        },
    };
    

    并在你的指令中使用它

    <canvas id="pie33" options="options"...
    

    小提琴(包含您代码中的相关部分) - http://jsfiddle.net/zuhp8k5f/154/


相关问题