ChartLegendEntryCollection
İçindekiler
[
Saklamak
]ChartLegendEntryCollection class
Grafik açıklama girişlerinin bir koleksiyonunu temsil eder.
Daha fazlasını öğrenmek için şu adresi ziyaret edin:Grafiklerle Çalışmak dokümantasyon makalesi.
public class ChartLegendEntryCollection : IEnumerable<ChartLegendEntry>
Özellikleri
İsim | Tanım |
---|---|
Count { get; } | Sayıyı döndürürChartLegendEntry bu koleksiyonda. |
Item { get; } | İadelerChartLegendEntry belirtilen dizin için. |
yöntemler
İsim | Tanım |
---|---|
GetEnumerator() | Bir numaralandırıcı nesnesini döndürür. |
Örnekler
Grafik serileri için bir açıklama girişiyle nasıl çalışılacağını gösterir.
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;
foreach (ChartLegendEntry legendEntry in legendEntries)
legendEntry.Font.Size = 12;
series1.LegendEntry.Font.Italic = true;
doc.Save(ArtifactsDir + "Charts.LegendEntries.docx");
Ayrıca bakınız
- class ChartLegendEntry
- ad alanı Aspose.Words.Drawing.Charts
- toplantı Aspose.Words