/// <summary> /// Creates a new instance of class ChartProjectionsSettings. /// </summary> /// <param name="owner">A Control object representing the owner chart.</param> internal ChartProjectionsSettings(Control owner) { this.owner = owner; // init fields this.line = new ChartLineSettings(owner); this.labels = new ChartLabelsSettings(owner); }
/// <summary> /// Creates a new instance of class ChartAxisSettingsBase. /// </summary> /// <param name="owner">A Control object representing the owner chart.</param> internal ChartAxisSettingsBase(Control owner) { this.owner = owner; // init fields this.line = new ChartLineSettings(owner); this.labels = new ChartLabelsSettings(owner); this.title = new ChartTitleSettings(owner); }
/// <summary> /// Creates a new instance of class ChartSeriesSettings. /// </summary> /// <param name="owner">A Control object representing the owner chart.</param> internal ChartSeriesSettings(Control owner) { this.owner = owner; // init fields this.line = new ChartLineSettings(owner); this.labels = new ChartLabelsSettings(owner); this.mark = new ChartMarkSettings(owner); this.projections = new ChartProjectionsSettings(owner); this.values = new ChartSeriesValueCollection(); this.title = new ChartTitleSettings(owner); }
/// <summary> /// Creates a new instance of class ChartGridSettings. /// </summary> /// <param name="owner">A Control object representing the owner chart.</param> internal ChartGridSettings(Control owner) { this.owner = owner; // init fields this.line = new ChartLineSettings(owner); }
/// <summary> /// Creates a new instance of class ChartLegendSettings. /// </summary> /// <param name="owner">A Control object representing the owner chart.</param> internal ChartLegendSettings(Control owner) { this.owner = owner; // init fields this.border = new ChartLineSettings(owner); }