/// <summary>
 /// Initializes a new instance of the <see cref="GaugeScaleBase" /> class.
 /// </summary>
 public GaugeScaleBase()
 {
     Ranges = new List<GaugeScaleRanges>();
     MajorTicks = new GaugeScaleTicks();
     MinorTicks = new GaugeScaleTicks();
     Line = new ChartLine();
 }
Beispiel #2
0
 private void Initialize()
 {
     Border     = new ChartElementBorder();
     Line       = new ChartLine();
     Type       = "ohlc";
     Aggregates = new ChartOHLCAggregates();
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeScaleBase" /> class.
 /// </summary>
 public GaugeScaleBase()
 {
     Ranges     = new List <GaugeScaleRanges>();
     MajorTicks = new GaugeScaleTicks();
     MinorTicks = new GaugeScaleTicks();
     Line       = new ChartLine();
 }
Beispiel #4
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();
 }
Beispiel #5
0
 private void Initialize()
 {
     Stacked     = false;
     Labels      = new ChartPointLabels();
     Markers     = new ChartMarkers();
     Line        = new ChartLine();
     Orientation = ChartSeriesOrientation.Horizontal;
 }
Beispiel #6
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>();
 }
Beispiel #7
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();
 }
Beispiel #8
0
 private void Initialize()
 {
     Border     = new ChartElementBorder();
     Line       = new ChartLine();
     Type       = "boxPlot";
     Aggregates = new ChartBoxPlotAggregates();
     Outliers   = new ChartMarkers();
     Extremes   = new ChartMarkers();
 }
Beispiel #9
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();
 }
 /// <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();
 }
Beispiel #11
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>();
 }
Beispiel #12
0
 public ChartLineSerializer(ChartLine line)
 {
     this.line = line;
 }
 public ChartLineSerializer(ChartLine line)
 {
     this.line = line;
 }