Ejemplo n.º 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>();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartNumericAxis{T}" /> class.
 /// </summary>
 /// <param name="chart">The chart.</param>
 public ChartNumericAxis(Chart <T> chart)
     : base(chart)
 {
     AxisCrossingValues = new List <double>();
     MajorGridLines     = new ChartLine();
     MinorGridLines     = new ChartLine();
     Labels             = new ChartAxisLabels();
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartNumericAxis{T}" /> class.
 /// </summary>
 /// <param name="chart">The chart.</param>
 public ChartDateAxis(Chart <T> chart)
     : base(chart)
 {
     AxisCrossingValues = new List <DateTime>();
     MajorGridLines     = new ChartLine();
     MinorGridLines     = new ChartLine();
     Labels             = new ChartAxisLabels();
 }
Ejemplo n.º 4
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();
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartAxisBase{T, TValue}" /> class.
 /// </summary>
 /// <param name="chart">The chart.</param>
 public ChartAxisBase(Chart <T> chart)
 {
     Chart          = chart;
     MajorGridLines = new ChartLine();
     MinorGridLines = new ChartLine();
     Line           = new ChartLine();
     Labels         = new ChartAxisLabels();
     PlotBands      = new List <ChartPlotBand <TValue> >();
     Title          = new ChartAxisTitle();
     MajorTicks     = new ChartAxisTicks();
     MinorTicks     = new ChartAxisTicks();
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartAxisBase{T, TValue}" /> class.
 /// </summary>
 /// <param name="chart">The chart.</param>
 public ChartAxisBase(Chart <T> chart)
 {
     Chart          = chart;
     MajorGridLines = new ChartLine();
     MinorGridLines = new ChartLine();
     Line           = new ChartLine();
     Labels         = new ChartAxisLabels();
     Title          = new ChartAxisTitle();
     MajorTicks     = new ChartAxisTicks();
     MinorTicks     = new ChartAxisTicks();
     Crosshair      = new ChartAxisCrosshair();
     Notes          = new ChartAxisNotes();
     PlotBands      = new List <ChartPlotBand>();
 }
Ejemplo n.º 7
0
 public ChartAxisLabelsSerializer(ChartAxisLabels axisLabels)
     : base(axisLabels)
 {
     this.axisLabels = axisLabels;
 }
Ejemplo n.º 8
0
 public ChartAxisLabelsSerializer(ChartAxisLabels axisLabels)
     : base(axisLabels)
 {
     this.axisLabels = axisLabels;
 }