AUTHOR: Marin Bratanov
DATE POSTED: December 04, 2017
Pie chart labels are truncated or cut off, so they are not fully visible. Happens more often when label text is long.
By default, the pie chart label holds the value of the segment only and it is usually short enough to not cause issues.
Also, RadHtmlChart does not adjust size based on the label size.
There are various approaches you can take to improve the appearance of the chart. For example, you can use one or more of the following:
var
radHtmlChartObject = $find(
"<%=PieChart1.ClientID %>"
);
//the standard script control object
kendoChart = radHtmlChartObject.get_kendoWidget();
//the Kendo widget
kendoChart.options.series[0].padding = 100;
kendoChart.refresh();
<
PlotArea
>
Appearance
TextStyle
Margin
=
"0 90 0 0"
/>
</
Resources Buy Try