Jump to content
Software FX Community

how to display US maps


Layman

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...