ChartAxisCollection

ChartAxisCollection class

يمثل مجموعة من محاور المخطط.

public class ChartAxisCollection : IEnumerable<ChartAxis>

الخصائص

اسموصف
Count { get; }الحصول على عدد المحاور في هذه المجموعة.
Item { get; }الحصول على المحور عند الفهرس المحدد.

طُرق

اسموصف
GetEnumerator()يُرجع كائن العداد.

أمثلة

يوضح كيفية العمل مع مجموعة المحاور.

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

Shape shape = builder.InsertChart(ChartType.Column, 500, 300);
Chart chart = shape.Chart;            

// إخفاء خطوط الشبكة الرئيسية على المحور Y الأساسي والثانوي.
foreach (ChartAxis axis in chart.Axes)
{
    if (axis.Type == ChartAxisType.Value)
        axis.HasMajorGridlines = false;
}

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

أنظر أيضا