// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) 2020 OxyPlot contributors // // -------------------------------------------------------------------------------------------------------------------- namespace ExampleBrowser { using OxyPlot; using OxyPlot.Wpf; /// /// Represents a PlotView which uses the XamlRenderContext for rendering. /// public class XamlPlotView : PlotView { protected override IRenderContext CreateRenderContext() { return new XamlRenderContext(this.Canvas); } } }