|
-- Region Name: World Map - Anychart 5 --
Region Source
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="#WIDTH#" height="#HEIGHT#" id="#CHART_NAME#" align=""> <param name="movie" value="&ANYCHART_INTEGRATION_KIT./#CHART_TYPE#.swf?XMLFile=#HOST#apex_util.flash?p=&APP_ID.:&FLOW_PAGE_ID.:&APP_SESSION.:FLOW_FLASH_CHART_R#REGION_ID#"> <param name="quality" value="high"> <param name="allowScriptAccess" value="sameDomain"> <param name="allowNetworking" value="all"> <param name="scale" value="noscale"> <param name="wmode" value="transparent"> <param name="FlashVars" value="waiting=#FLASH_WAITING#&loading=#FLASH_LOADING#">
<embed src="&ANYCHART_INTEGRATION_KIT./#CHART_TYPE#.swf?XMLFile=#HOST#apex_util.flash?p=&APP_ID.:&FLOW_PAGE_ID.:&APP_SESSION.:FLOW_FLASH_CHART_R#REGION_ID#" quality="high" width="#WIDTH#" height="#HEIGHT#" name="#CHART_NAME#" scale="noscale" align="" allowScriptAccess="sameDomain" allowNetworking="all" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" FlashVars="waiting=#FLASH_WAITING#&loading=#FLASH_LOADING#"> </embed> </object> #CHART_REFRESH#
Series Queries
Series 1
select null link, country label, people value FROM ( SELECT 'Belgium' country, 10500000 people FROM dual UNION ALL SELECT 'United States' country, 910500000 people FROM dual UNION ALL SELECT 'Germany' country, 510500000 people FROM dual UNION ALL SELECT 'Spain' country, 410500000 people FROM dual)
Chart XML
<?xml version = "1.0" encoding="utf-8" standalone = "yes"?> <anychart> <settings> <maps path_type="Absolute" path=""/> <resources path_type="Absolute" path="" /> </settings> <charts> <chart plot_type="Map" use_anychart3_data_model="true" use_sets_colors="false"> <chart_settings> <title> <text>World Map - Grid background Image Overlay</text> </title> </chart_settings> <data_plot_settings> <map_series source="&ANYCHART_5./swf/maps/world/world.amap" id_column="REGION_NAME"> <projection type="Equirectangular"/> <zoom factor="1"/> <grid enabled="True"> <background enabled="true"> <fill type="Image" image_url="&ANYCHART_5./anychart/gallery/img/earth.jpg" image_mode="FitByProportions"/> <border enabled="False"/> </background> <parallels enabled="False"/> <meridians enabled="False"/> </grid> <border color="White" opacity="1"/> <defined_map_region> <map_region_style> <fill enabled="True" opacity="0.45" color="Red"/> </map_region_style> <tooltip_settings enabled="true"> <format><![CDATA[Name: {%REGION_NAME} Number: {%Value}]]></format> </tooltip_settings> </defined_map_region> <undefined_map_region> <tooltip_settings enabled="True"> <format>{%REGION_NAME}</format> </tooltip_settings> <map_region_style> <fill enabled="True" opacity="0.01"/> <states> <hover> <fill enabled="True" color="Yellow" opacity="0.4"/> </hover> <selected_normal> <fill enabled="True" color="Yellow" opacity="0.4"/> <hatch_fill enabled="False"/> </selected_normal> <selected_hover> <fill enabled="True" color="Yellow" opacity="0.4"/> <hatch_fill enabled="False"/> </selected_hover> </states> </map_region_style> </undefined_map_region> </map_series> </data_plot_settings> #DATA# </chart> </charts> </anychart>
|