Inheritance: System.Configuration.ConfigurationElement
Esempio n. 1
0
 public Graph(ReportDefinition reportDefinition, ReportDefinitionReport report)
 {
     this.XLabel = reportDefinition.X;
     this.XType = reportDefinition.XType;
     this.YLabel = reportDefinition.Y;
     this.YType = reportDefinition.YYType;
     this.YYLabel = reportDefinition.YY;
     this.YYType = reportDefinition.YYType;
     this.ChartType = report.ChartType;
     this.Series = new List<GraphSeries>();
 }
 public Graph(ReportDefinition reportDefinition, ReportDefinitionReport report)
 {
     this.XLabel    = reportDefinition.X;
     this.XType     = reportDefinition.XType;
     this.YLabel    = reportDefinition.Y;
     this.YType     = reportDefinition.YYType;
     this.YYLabel   = reportDefinition.YY;
     this.YYType    = reportDefinition.YYType;
     this.ChartType = report.ChartType;
     this.Series    = new List <GraphSeries>();
 }