How to display pie chart data values of each slice in chart.js

前端 未结 6 1348
执念已碎
执念已碎 2020-11-30 00:03

I am using Chart.js for drawing pie chart in my php page.I found tooltip as showing each slice values.

But I wish to display those values like below image.

6条回答
  •  野性不改
    2020-11-30 00:32

    Easiest way to do this with Chartjs. Just add below line in options:

    pieceLabel: {
            fontColor: '#000'
        }
    

    Best of luck

提交回复
热议问题