using System.Windows.Forms; using Core.Components.Charting.Forms; using Core.Components.OxyPlot.Forms; namespace Core.Plugins.OxyPlot.Test { /// /// Simple implementation which can be used in tests. /// public class TestChartView : Control, IChartView { public object Data { get; set; } public IChartControl Chart { get { return (ChartControl) Data; } } } }