Пример #1
0
 public LegendConfiguration()
 {
     this._enabled        = true;
     this._graphicOverlap = true;
     this._docking        = System.Windows.Forms.DataVisualization.Charting.Docking.Right;
     this._alignment      = StringAlignment.Center;
 }
Пример #2
0
 /// <summary>
 /// Initializing object GraphConfiguration.
 /// </summary>
 public GraphConfiguration()
 {
     this._itemsConfiguration  = new ItemsConfiguration();
     this._xConfiguration      = new AxisXConfiguration();
     this._yConfiguration      = new AxisYConfiguration();
     this._legendConfiguration = new LegendConfiguration();
     this._graphType           = GraphTypeEnum.NameDateStackedColumn;
     this._palette             = new List <PaletteItem>();
     this._firstWeekDay        = DayOfWeek.Sunday;
     this._margin = new GraphMargins();
 }
Пример #3
0
 public ItemsConfiguration()
 {
     this._unit         = UnitEnum.Second;
     this._nameSortType = NameSortEnum.NameAscending;
 }