public LineChartControl() { InitializeComponent(); this.DataContext = this; this.controlChartStyle = new ChartStyleLineChartControl(this); this.controlDataCollection = new DataCollectionLineChartControl(this); this.controlDataSeries = new DataSeriesLineChartControl(); }
public DataCollectionLineChartControl(LineChartControl lcc) { dataList = new List <DataSeriesLineChartControl>(); this.lcc = lcc; this.cs = lcc.ControlChartStyle; }