View Single Post

  #1 (permalink)  
Old 04-08-2005
fletch fletch is offline
Junior Member
White Belt
 
Join Date: Feb 2005
Posts: 8
DisplayDataMap method c#

When I import a set of data and then I call this method on the imported data, do I need to refresh the map. I am trying to display the imported data as a shaded area, however it keeps displaying it as pushpins.
Code:
myData = axMappointControl1.ActiveMap.DataSets.ImportData(fileName + "!Sheet",missing,
									countryCode,MapPoint.GeoDelimiter.geoDelimiterDefault,
									MapPoint.GeoImportFlags.geoImportExcelSheet); 
								MapPoint.DataMap mine = myData.DisplayDataMap(MapPoint.GeoDataMapType.geoDataMapTypeShadedArea,missing,MapPoint.GeoShowDataBy.geoShowByDefault,MapPoint.GeoCombineDataBy.geoCombineByDefault,
MapPoint.GeoDataRangeType.geoRangeTypeDefault,MapPoint.GeoDataRangeOrder.geoRangeOrderDefault,1,1,missing,missing,missing,missing,missing);
Reply With Quote