Chartjs-Angular-chart does not show the series at the top like documentation

1👍

You need to configure under options,

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

DEMO

Leave a comment