Hello,
I'm new to Telerik reporting and I was wondering if it's possible to change the series item label vertical positioning with a pie chart? Or even being able to move the labels Positioin.X and Y values would work.
I tried setting intelligentLabelsEnabled = true but with a lot of series items the labels are too hard to follow.
I tried somthing like,
I'm new to Telerik reporting and I was wondering if it's possible to change the series item label vertical positioning with a pie chart? Or even being able to move the labels Positioin.X and Y values would work.
I tried setting intelligentLabelsEnabled = true but with a lot of series items the labels are too hard to follow.
I tried somthing like,
ChartSeriesItem
item = new ChartSeriesItem();
item.YValue = 10;
item.Label.TextBlock.Text =
"Ben 10";
item.Label.Appearance.Position.Auto =
false;
item.Label.Appearance.Position.AlignedPosition = Telerik.Reporting.Charting.Styles.
AlignedPositions.None;
item.Label.Appearance.Position.X = 10;
item.Label.Appearance.Position.Y = 10;
chartDrill.Series[0].Items.Add(item);
Any ideas?
Thanks in advance,
~Boots