Render a legend on angular-chart.js doughnut chart

前端 未结 2 1043
忘了有多久
忘了有多久 2021-01-08 00:10

I\'ve followed angular-chart.js documentation, and created a chart, but am unable to render a legend with it. I don\'t understand why its not working.

Documentation:

2条回答
  •  星月不相逢
    2021-01-08 00:33

    I had Similar Problem So I have extended the width of the Pie Chart and Placed Legends Right Side of the Graph and Looks Pretty Well

    You can add this in the Controller

     $scope.options = {
        legend: {
          display: true,
          position: 'right'
        }
      };
    

    In HTML you can add

    
            chart-series="series"
          
    

提交回复
热议问题