Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartAxisBase{T}" /> 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>();
     Title              = new ChartAxisTitle();
     AxisCrossingValues = new List <double>();
 }
 public ChartAxisTitleSerializer(ChartAxisTitle title)
 {
     this.title = title;
 }
 public ChartAxisTitleBuilderTests()
 {
     title = new ChartAxisTitle();
     builder = new ChartAxisTitleBuilder(title);
 }
Example #4
0
 public ChartAxisTitleSerializer(ChartAxisTitle title)
 {
     this.title = title;
 }