This question is locked. New answers and comments are not allowed.
I have a pie chart that is showing the value (data.percent) in the spider label and now the LegendLabel (data.tld):
How can I show the LegendLabel?
PieSeriesDefinition def = new PieSeriesDefinition(); def.RadiusFactor = 0.83; def.LabelSettings.ShowConnectors = true; def.LabelSettings.SpiderModeEnabled = true; pieSeries.Definition = def; foreach (DomainPortfolioData data in domainPortfolioData) pieSeries.Add(new DataPoint(data.percent) { LegendLabel = data.tld }); How can I show the LegendLabel?