Is it possible in any way to remove a single DataLabel from a Chart made with EPPlus and C#?
I just want to remove a single one, not the setting for the hole Chart... How can the collection of DataLabels be accessed (dLbls > dLbl)?
var chart = (ExcelBarChart)worksheet.Drawings.AddChart("Chart", eChartType.ColumnStacked);
Also made use of coloring a individual point of Chart with this: Legend color is incorrect in excel chart created using EPPlus
(The red point at the upper right)
Now I want to remove a specific label of a point, with generally applied DataLabels...
chart.DataLabel.ShowValue = true;
Any hint appreciated.