using System.Windows.Forms; using Core.Components.Charting; using Core.Components.OxyPlot.Forms; using Core.Plugins.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 IChart Chart { get { return (BaseChart) Data; } } } }