// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) 2014 OxyPlot contributors // // // This is a Avalonia wrapper of OxyPlot.TimeSpanAxis. // // -------------------------------------------------------------------------------------------------------------------- namespace OxyPlot.Avalonia { /// /// This is a Avalonia wrapper of OxyPlot.TimeSpanAxis. /// public class TimeSpanAxis : Axis { /// /// Initializes a new instance of the class. /// public TimeSpanAxis() { InternalAxis = new Axes.TimeSpanAxis(); } /// /// Creates the internal axis. /// /// The internal axis. public override Axes.Axis CreateModel() { SynchronizeProperties(); return InternalAxis; } /// /// The synchronize properties. /// protected override void SynchronizeProperties() { base.SynchronizeProperties(); // var a = (Axes.TimeSpanAxis)InternalAxis; // Currently no values to synchronize } } }