static void OnSquarePeaksChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
        {
            GraphDataBar bar = obj as GraphDataBar;

            if (bar != null)
            {
                bar.UpdateAllGraphs();
            }
        }