public PointChartItemInfoContainer(PointType type, ChartViewModelBase viewModel)
 {
     this.PointType  = type;
     this.ChartModel = viewModel;
 }
 public BarChartItemInfoContainer(BarType type, ChartViewModelBase viewModel)
 {
     this.BarType    = type;
     this.ChartModel = viewModel;
 }
 public LineChartItemInfoContainer(LineType type, ChartViewModelBase viewModel)
 {
     this.LineType   = type;
     this.ChartModel = viewModel;
 }
Beispiel #4
0
 public AreaChartItemInfoContainer(AreaType type, ChartViewModelBase viewModel)
 {
     this.AreaType   = type;
     this.ChartModel = viewModel;
 }
Beispiel #5
0
 public ColorizerItemInfoContainer(ColorizerType type, ChartViewModelBase viewModel)
 {
     ColorizerType = type;
     ChartModel    = viewModel;
 }