How to display pie slice data and tooltip together using chart.js
问题 Can we display data in pie chart slice and also tolltip like the above image using chart.js? Updated: Here is my code in php page. printf( '<table>' ); echo '<tr><td style="text-align: right;"><canvas id="pie-canvas-' . $canvasId . '" width=256px height=257px ></canvas></td><td style="text-align: left;width:360px;" id="legend" class="chart-legend"></td></tr>'; echo '<script type="text/javascript">drawPie(' . $canvasId . ', ' . $data .', ' . $legend . ');</script>'; printf( '</table>' );