Search the Community

Showing results for tags 'fusionmap'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 2 results

  1. Map is properly getting rendered properly on my laptop but when I am trying to open in on my mobile it is not displaying and showing me error Chart type not supported. You may test it on vivekcharuasia.com Please help Code: <?php // Widget appearance configuration $arrMapConfig = array( "chart" => array( "includevalueinlabels" => "1", "labelsepchar" => ": ", "entityFillHoverColor" => "#FFF9C4", "theme" => "fusion", "containerBackgroundOpacity" => '0', "bgcolor" => "#191c25", "canvasBgAlpha" => "0", ) ); // Widget color range data $colorDataObj = array("minvalue" => "0", "code" => "#293038", "gradient" => "0", "color" => array( ["minvalue"=> "0", "maxvalue"=> "1000", "code"=> "#00FF00"], ["minvalue"=> "1000", "maxvalue"=> "30000", "code"=> "#FFFF00"], ["minvalue"=> "30000","maxvalue"=> "150000", "code"=> "#FFA500"], ["minvalue"=> "150000","maxvalue"=> "350000", "code"=> "#FF0000"] )); // Map data array $mapArrayData=json_decode($content,true); if ($mapArrayData === NULL) die('Error parsing json'); $mapData = array(); foreach ($mapArrayData as $key => $val) { $c=0; foreach($val['districtData'] as $value => $v) { $c = $c + $v['confirmed']; } $code=$val['statecode']; $str=getStateID($code); array_push($mapData,array("id" => $str, "value" => $c, "lable" => $key, "link" => "n-state.php?id=$code")); } $arrMapConfig["data"] = $mapData; $arrMapConfig["colorRange"] = $colorDataObj; //print_r($arrMapConfig); // JSON Encode the data to retrieve the string containing the JSON representation of the data in the array. $jsonEncodedData = json_encode($arrMapConfig); // Map object $Map = new FusionCharts("maps/india", "Covid-19 India Map" , "100%", "450", "map-container", "json", $jsonEncodedData); // Render the Map $Map->render(); ?> <!--<div id="audience-map" class="vector-map"></div>--> <div id="map-container">Map will render here!</div>
  2. Hi, I am using FCMap_WorldwithCountries.swf for showing Fusion world map. Please let me know if any swf files are available to show World map in 3D. Thanks in advance