OnAxisLabelStylePropertyChanged() private static method

AxisLabelStyleProperty property changed handler.
private static OnAxisLabelStylePropertyChanged ( DependencyObject d, DependencyPropertyChangedEventArgs e ) : void
d DependencyObject DisplayAxis that changed its AxisLabelStyle.
e DependencyPropertyChangedEventArgs Event arguments.
return void
        /// <summary>
        /// AxisLabelStyleProperty property changed handler.
        /// </summary>
        /// <param name="d">DisplayAxis that changed its AxisLabelStyle.</param>
        /// <param name="e">Event arguments.</param>
        private static void OnAxisLabelStylePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            DisplayAxis source   = (DisplayAxis)d;
            Style       oldValue = (Style)e.OldValue;
            Style       newValue = (Style)e.NewValue;

            source.OnAxisLabelStylePropertyChanged(oldValue, newValue);
        }