Example #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ScalePanel"/> class.
        /// </summary>
        public ScalePanel()
        {
            this.tickVisuals  = new List <FrameworkElement>();
            this.labelVisuals = new List <FrameworkElement>();

            this.model           = new NumericalAxisModel();
            this.model.presenter = this;
            this.model.View      = this;
        }
Example #2
0
 internal VerticalAxisLayoutStrategy(NumericalAxisModel owner)
 {
     this.owner = owner;
 }
 internal HorizontalAxisLayoutStrategy(NumericalAxisModel owner)
 {
     this.owner = owner;
 }