Index: src/Common/DelftTools.Controls.Swf/Charting/Tools/ISelectPointTool.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/DelftTools.Controls.Swf/Charting/Tools/ISelectPointTool.cs (.../ISelectPointTool.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/DelftTools.Controls.Swf/Charting/Tools/ISelectPointTool.cs (.../ISelectPointTool.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -6,6 +6,8 @@ { public interface ISelectPointTool : IChartViewTool { + event SelectionChangedEventHandler SelectionChanged; + event NotifyCollectionChangedEventHandler CollectionChanged; NearestPointStyles Style { get; set; } Cursor Cursor { get; set; } Color SelectedPointerColor { get; set; } @@ -25,8 +27,5 @@ /// The chart series a data source. /// The data source index of the added point. void AddPointAtIndexToSelection(IChartSeries chartSeries, int resultIndex); - - event SelectionChangedEventHandler SelectionChanged; - event NotifyCollectionChangedEventHandler CollectionChanged; } } \ No newline at end of file