Index: Core/Components/src/Core.Components.Chart.Forms/IChartControl.cs
===================================================================
diff -u -r98b126b6d45b128483be32b5d76285ddfbe5655b -ra9234c14f4059dde4be02b47095510971e2d80db
--- Core/Components/src/Core.Components.Chart.Forms/IChartControl.cs (.../IChartControl.cs) (revision 98b126b6d45b128483be32b5d76285ddfbe5655b)
+++ Core/Components/src/Core.Components.Chart.Forms/IChartControl.cs (.../IChartControl.cs) (revision a9234c14f4059dde4be02b47095510971e2d80db)
@@ -30,16 +30,6 @@
public interface IChartControl
{
///
- /// Gets a value indicating whether or not the chart can be panned with the left mouse button.
- ///
- bool IsPanningEnabled { get; }
-
- ///
- /// Gets a value indicating whether or not the chart can be zoomed by rectangle with the left mouse button.
- ///
- bool IsRectangleZoomingEnabled { get; }
-
- ///
/// Gets or sets the data to show in the .
///
ChartDataCollection Data { get; set; }
@@ -60,21 +50,6 @@
string LeftAxisTitle { get; set; }
///
- /// Toggles panning of the . Panning is invoked by clicking the left mouse-button.
- ///
- void TogglePanning();
-
- ///
- /// Toggles rectangle zooming of the . Rectangle zooming is invoked by clicking the left mouse-button.
- ///
- void ToggleRectangleZooming();
-
- ///
- /// Zooms to a level so that everything is in view.
- ///
- void ZoomToAllVisibleLayers();
-
- ///
/// Zooms to a level such that the given chart data is in view.
///
/// The data to zoom to.