Hi
I am using version 9.2 of infragistics map.I have added Mousewheel event to XamWebMap but it not at all firing. Can any one help me in this.
My set up is like this...
<igMap:XamWebMap x:Name="map1" Loaded="map1_MouseWheel">
<igMap:XamWebMap.Layers>
<igMap:MapLayer x:Name="Layer1" VisibleFromScale="0" FillMode="Chloropleth">
<igMap:MapLayer.Reader>
<!-- <igMap:SqlShapeReader DataMapping="Data=geom;Name=ID;ToolTip=ID"/> -->
<igMap:ShapeFileReader Uri="shapefiles/Plantlevel1" DataMapping="Name=ID"/>
</igMap:MapLayer.Reader>
</igMap:MapLayer>
</igMap:XamWebMap.Layers>
</igMap:XamWebMap>
The map intentionally supresses the mouse wheel events from being exposed, you are better off listening for WindowRectChanged.
-Graham