ChartLegendEntryCollection

ChartLegendEntryCollection class

Represents a collection of chart legend entries.

To learn more, visit the Working with Charts documentation article.

public class ChartLegendEntryCollection : IEnumerable<ChartLegendEntry>

Properties

NameDescription
Count { get; }Returns the number of ChartLegendEntry in this collection.
Item { get; }Returns ChartLegendEntry for the specified index.

Methods

NameDescription
GetEnumerator()Returns an enumerator object.

Examples

Shows how to work with a legend entry for chart series.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

Shape shape = builder.InsertChart(ChartType.Column, 432, 252);

Chart chart = shape.Chart;
ChartSeriesCollection series = chart.Series;
series.Clear();

string[] categories = new string[] { "AW Category 1", "AW Category 2" };

ChartSeries series1 = series.Add("Series 1", categories, new double[] { 1, 2 });
series.Add("Series 2", categories, new double[] { 3, 4 });
series.Add("Series 3", categories, new double[] { 5, 6 });
series.Add("Series 4", categories, new double[] { 0, 0 });

ChartLegendEntryCollection legendEntries = chart.Legend.LegendEntries;
legendEntries[3].IsHidden = true;

doc.Save(ArtifactsDir + "Charts.LegendEntries.docx");

See Also