コード例 #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)
 {
     MajorGridLines = new ChartLine();
     MinorGridLines = new ChartLine();
     Labels         = new ChartAxisLabels();
 }
コード例 #2
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>();
 }
コード例 #3
0
 public ChartAxisLabelsBuilderTests()
 {
     labels = new ChartAxisLabels();
     builder = new ChartAxisLabelsBuilder(labels);
 }
コード例 #4
0
 public ChartAxisLabelsSerializerTests()
 {
     labels = new ChartAxisLabels();
 }
コード例 #5
0
 public ChartAxisLabelsSerializer(ChartAxisLabels axisLabels)
     : base(axisLabels)
 {
     this.axisLabels = axisLabels;
 }
コード例 #6
0
 public ChartAxisLabelsSerializer(ChartAxisLabels axisLabels)
     : base(axisLabels)
 {
     this.axisLabels = axisLabels;
 }