Index: src/Common/DelftTools.Controls.Swf/Charting/IChartViewTool.cs
===================================================================
diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a
--- src/Common/DelftTools.Controls.Swf/Charting/IChartViewTool.cs (.../IChartViewTool.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9)
+++ src/Common/DelftTools.Controls.Swf/Charting/IChartViewTool.cs (.../IChartViewTool.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
@@ -5,6 +5,11 @@
public interface IChartViewTool
{
///
+ /// Event that is fired when the tools active state changes.
+ ///
+ event EventHandler ActiveChanged;
+
+ ///
/// Gets or sets the ChartView
///
IChartView ChartView { get; set; }
@@ -19,10 +24,5 @@
/// The default Teechart Active property will not draw deactivated tools
///
bool Enabled { get; set; }
-
- ///
- /// Event that is fired when the tools active state changes.
- ///
- event EventHandler ActiveChanged;
}
}
\ No newline at end of file