Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartCategoryAxis{T}" /> class.
 /// </summary>
 /// <param name="chart">The chart.</param>
 public ChartCategoryAxis(Chart <T> chart)
     : base(chart)
 {
     Labels             = new ChartAxisLabels();
     MajorGridLines     = new ChartLine();
     MinorGridLines     = new ChartLine();
     AxisCrossingValues = new List <double>();
     AutoBaseUnitSteps  = new ChartAxisBaseUnitSteps();
     Select             = new ChartAxisSelection();
 }
Пример #2
0
 public ChartAxisSelectionSerializer(ChartAxisSelection selection)
 {
     this.selection = selection;
 }