/// <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(); }
public ChartAxisSelectionSerializer(ChartAxisSelection selection) { this.selection = selection; }