chartjs-plugin-labels icon indicating copy to clipboard operation
chartjs-plugin-labels copied to clipboard

Most label not showing

Open bilalmalkoc opened this issue 6 years ago • 1 comments

Top label not shwong. Is anyway to fix it, or is it a bug?

https://stackoverflow.com/questions/55610388/chart-js-label-not-showing-on-top

bilalmalkoc avatar Apr 10 '19 10:04 bilalmalkoc

@bilalmalkoc this not a bug. please also put title display true so it visible values clearly do like this

options: {
           plugins: {
               labels: {
                   render: 'label'
               }
           },
           title: {
               display: true,
           },
           scales: {
               yAxes: [{
                   ticks: {
                       beginAtZero: true
                   }
               }]
           }
       }

anubhav210 avatar Apr 11 '19 06:04 anubhav210