// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) 2014 OxyPlot contributors // // -------------------------------------------------------------------------------------------------------------------- namespace ExampleLibrary { using OxyPlot; /// /// Represents an example. /// public class Example { /// /// Initializes a new instance of the class. /// /// The model. /// The controller. public Example(PlotModel model, IPlotController controller = null) { this.Model = model; this.Controller = controller; } /// /// Gets the controller. /// /// /// The controller. /// public IPlotController Controller { get; private set; } /// /// Gets the model. /// /// /// The model. /// public PlotModel Model { get; private set; } } }