Chart Pie - How show percentage
Hi,
How to show the percentage of all pie chart? We need to show all the values of the chart.
See attached image.
Thnks
-
正式なコメント
Hi,
The use case can be achieved by using the below custom script.eFormEvents.onFormLoadComplete=function(){
eFormHelper.getField({fieldId:'Chart1'}, function(res){var kendoChartInst=$(res.data).data('kendoChart');
kendoChartInst.options.series.forEach(function(ser){
ser.type == 'pie' && ((ser.labels || {}).visible = true);
});
kendoChartInst.refresh();
});}
Hope this helps
コメントアクション
サインインしてコメントを残してください。
コメント
2件のコメント