示例#1
0
 public AspectController(TChart chart, ChartViewController chartController, UITableViewStyle style) : base(style)
 {
     this.chart           = chart;
     this.chartController = chartController;
 }
 public ColorPalettesController(TChart chart, ChartViewController chartController, UITableViewStyle style) : base(style)
 {
     this.chart           = chart;
     this.chartController = chartController;
 }
 public SeriesTypesDelegate(TypesTableController controller, ChartViewController chartController)
 {
     _controller = controller;
 }
 public SettingsDelegate(SettingsController controller, ChartViewController chartController)
 {
     _controller      = controller;
     _chartController = chartController;
 }
 public TypesTableController(Boolean newChart = false) : base(UITableViewStyle.Grouped)
 {
     this.chartController = new ChartViewController();
     this.chart           = chartController.chart;
     this.newChart        = newChart;
 }