// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) 2020 OxyPlot contributors
//
//
// Provides a standard set of commands for the control.
//
// --------------------------------------------------------------------------------------------------------------------
namespace OxyPlot.Wpf
{
using System.Windows.Input;
///
/// Provides a standard set of commands for the control.
///
public static class PlotCommands
{
///
/// Gets the value that represents the "Reset all axes" command.
///
public static readonly ICommand ResetAxes = new RoutedUICommand("Reset all axes", "ResetAxes", typeof(PlotViewBase));
}
}