コード例 #1
0
 public LineChartControl()
 {
     InitializeComponent();
     this.DataContext           = this;
     this.controlChartStyle     = new ChartStyleLineChartControl(this);
     this.controlDataCollection = new DataCollectionLineChartControl(this);
     this.controlDataSeries     = new DataSeriesLineChartControl();
 }
コード例 #2
0
 public DataCollectionLineChartControl(LineChartControl lcc)
 {
     dataList = new List <DataSeriesLineChartControl>();
     this.lcc = lcc;
     this.cs  = lcc.ControlChartStyle;
 }