BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
[C#]
series.ConfigItems.PieItem.LabelStyle = ChartAccumulationLabelStyle.Inside;
|
[C#]
for (int i = 0; i < 9; i++)
{
series.Styles[i].TextFormat = series.Points[i].Category.ToString() + ":{0}";
}
|
[C#]
series.ConfigItems.PieItem.LabelStyle = ChartAccumulationLabelStyle.Outside;
series.Style.TextOffset = 50;
|
Dear Saravana Kumar Kanagavel,
Thank's for the answer. That helped me a lot.
But if it possible, can I separate qualitative and categorical text ? The qualitative text is inside the pie, and categorical text is outside the pie.
Thank you :)
Windows Forms:
series.ConfigItems.PieItem.LabelStyle = ChartAccumulationLabelStyle.Inside;
|