コード例 #1
0
 public ChartViewBase(string title, Label label)
 {
     BaseChart = new ChartViewRender();
     InitializeChart();
     CrearChart(new Button {
         Text = title
     }, label);
 }
コード例 #2
0
 // Constructor
 public ChartViewBase(Button button)
 {
     BaseChart = new ChartViewRender();
     InitializeChart();
     CrearChart(button);
 }