All maps in FusionCharts Suite XT have pre defined unique internal IDs to reference each entity. Based on your use case you might want to name these entities differently. You can solve this problem by creating custom IDs for entities on a map. Apart from re-defining identities, you can also re-define the short name and long name of each identity, and use these as the label or tooltip of the map.
Let's work with a simple example of population map by continents. The table below shows the population numbers for the different continents. It also has columns for the "FusionCharts Internal ID" for each continent and a custom defined Desired ID.
Continent | Desired ID | FusionCharts Internal ID | Population (in millions) |
---|---|---|---|
North America | NAM | NA | 515 |
South America | SAM | SA | 373 |
Europe | EUR | EU | 727 |
Africa | AFR | AF | 885 |
Asia | ASI | AS | 3875 |
Australia | AUS | AU | 32 |
In this example, we want to rename the internal ID for North America from NA
to NAM
and for South America from SA
to SAM
and so on.
This can be done by defining new IDs for entities within the entitydef
array as part of the dataSource
of the map.
The data structure of a world map with new IDs set is shown below
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
{
"chart": {
"caption": "Global Population",
"theme": "fint",
"formatNumberScale": "0",
"numberSuffix": "M",
"showLabels": "1",
"useSNameInToolTip": "1",
"useSNameInLabels": "1"
},
"entityDef": [
{
"internalId": "NA",
"newId": "NAM"
},
{
"internalId": "SA",
"newId": "SAM"
},
{
"internalId": "EU",
"newId": "EUR"
},
{
"internalId": "AS",
"newId": "ASI"
},
{
"internalId": "AF",
"newId": "AFR"
},
{
"internalId": "AU",
"newId": "AUS"
}
],
"colorrange": {
"color": [
{
"minvalue": "0",
"maxvalue": "100",
"code": "#D1D9C5",
"displayValue": "< 100M"
},
{
"minvalue": "100",
"maxvalue": "500",
"code": "#C9DEA9",
"displayValue": "100-500M"
},
{
"minvalue": "500",
"maxvalue": "1000",
"code": "#91AF64",
"displayValue": "500M-1B"
},
{
"minvalue": "1000",
"maxvalue": "5000",
"code": "#5A9502",
"displayValue": "> 1B"
}
]
},
"data": [
{
"id": "NAM",
"value": "515"
},
{
"id": "SAM",
"value": "373"
},
{
"id": "ASI",
"value": "3875"
},
{
"id": "EUR",
"value": "727"
},
{
"id": "AFR",
"value": "885"
},
{
"id": "AUS",
"value": "32"
}
]
}
With the newly defined custom entity IDs, the map looks like this:
When defining new IDs for different entities on the map, ensure that you're referring to the right original internal ID. Also ensure that the redefined entity IDs are unique.
The full HTML code to build the example is shown here
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
<html>
<head>
<title>A Data Driven Map</title>
<script type="text/javascript" src="fusioncharts/fusioncharts.js"></script>
<script type="text/javascript" src="fusioncharts/themes/fusioncharts.theme.fint.js"></script>
<script>
FusionCharts.ready(function () {
var populationMap = new FusionCharts({
type: 'maps/world',
renderAt: 'chart-container',
width: '600',
height: '400',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Global Population",
"theme": "fint",
"formatNumberScale":"0",
"numberSuffix":"M",
"showLabels": "1",
"useSNameInToolTip":"1",
"useSNameInLabels": "1"
},
"entityDef": [
{
"internalId": "NA",
"newId": "NAM"
},
{
"internalId": "SA",
"newId": "SAM"
},
{
"internalId": "EU",
"newId": "EUR"
},
{
"internalId": "AS",
"newId": "ASI"
},
{
"internalId": "AF",
"newId": "AFR"
},
{
"internalId": "AU",
"newId": "AUS"
}
],
"colorrange": {
"color": [
{
"minvalue": "0",
"maxvalue": "100",
"code": "#D0DFA3",
"displayValue" : "< 100M"
},
{
"minvalue": "100",
"maxvalue": "500",
"code": "#B0BF92",
"displayValue" : "100-500M"
},
{
"minvalue": "500",
"maxvalue": "1000",
"code": "#91AF64",
"displayValue" : "500M-1B"
},
{
"minvalue": "1000",
"maxvalue": "5000",
"code": "#A9FF8D",
"displayValue" : "> 1B"
}
]
},
"data": [
{
"id": "NAM",
"value": "515"
},
{
"id": "SAM",
"value": "373"
},
{
"id": "ASI",
"value": "3875"
},
{
"id": "EUR",
"value": "727"
},
{
"id": "AFR",
"value": "885"
},
{
"id": "AUS",
"value": "32"
}
]
}
}
).render();
});
</script>
</head>
<body>
<div id="chart-container">A world map will load here!</div>
</body>
</html>
This is what we did in the above data structure
Created a map instance of type
maps/world
in thepopulationMap
variable. We set theheight
andwidth
of this map. Also thedataType
was set tojson
.Set the
caption
of the map to "Global Population" and applied thefint
(FusionCharts Internal) theme to control the cosmetic properties of the map. TheformatNumberScale
,showLabels
andnumberSuffix
attributes were used to specify the formatting of the labels.Used the
entityDef
object to specify anewID
for eachinternaID
.Used the
colorrange
object to define progressive coloring associated with a numeric data range.Specified the tabular data within the
data
array, referenced by the newly definednewID
.