Layman Posted May 2, 2007 Report Share Posted May 2, 2007 Hi, How to display US map and on top of each state I want to display a table column information (I am using SQL Server as my backend)? RegardsLayman Link to comment Share on other sites More sharing options...
Frank Posted May 2, 2007 Report Share Posted May 2, 2007 A table column information? What do you mean by this? If you are talking about a value, simply set chart.AllSeries.PointLabels.Visible= true. Link to comment Share on other sites More sharing options...
Layman Posted May 2, 2007 Author Report Share Posted May 2, 2007 Frank, Lets assume that I fetch column A, B, C, D from a SQL table. On top of each state I need to display its corresponding information from column B and C. Hope my question is clear this time! RegardsLayman Link to comment Share on other sites More sharing options...
Frank Posted May 3, 2007 Report Share Posted May 3, 2007 TRhe chart map takes only two columns of data: The label (ID for Map Region) The value Any other information you need to handle on your own. There is a DisplayText property in the MapElement class tha tyou can use to set the text to display. For example: MapRegion florida = FindMapRegion("FL");MapRegion florida = FindMapRegion("FL");if (florida != null) florida.DisplayText = "Florida"; Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.