Ejemplo n.º 1
0
 /// <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);
 }