Geocharts are powerful tools for displaying geographical data in an interactive and visually appealing manner. Whether you are tracking sales across different regions, monitoring population distribution, or analyzing global trends, geocharts provide a clear and intuitive representation of data on maps. Using a geochart on a dashboard or in a reporting tool can give you valuable insights into spatial patterns. In this article, we will explore how to create a dynamic geochart to visually represent geographical data to display the population of each USA state using the Google Chart Library (GeoChart).
Note: Depending on the data that you want to display, this configuration might require a Google developer key.
Screenshot of a DataPage showing a map of the USA with a tooltip displaying population data for Illinois, with a table below including information for other states. Steps:
  1. In your table, add fields with the geographical data that you want to present. For example, include one field for storing US state names (State), and one for storing the population count for every state (Population).
  2. On a Report DataPage, on the Search and Report Wizard - Configure Results Page Fields screen, in the lower-right corner of the DataPage Elements panel, click the Insert button , and then add a calculated field.
  3. In the Formula section, insert an SQL statement to get the values from your table as an array. For example, the statement below selects the State and Population value fields from the “States_GeoChart” table.
    Note: The CONVERT to VARCHAR data type is used because the Population field is a number in the “States_GeoChart” table. All fields inside the following formula must use this statement if they are not stored as the Text data type.
    Search and Report Wizard dialog box showing the added calculated field formula.
  4. In the lower-right corner of the DataPage Elements panel, click the Insert button , and then add a Header & Footer.
  5. In the header of the DataPage, disable the HTML editor, and then add the following HTML/CSS code to hide the values of the calculated field added in step 3. Search and Report Wizard dialog box showing the code that hides the values of the calculated field from the DataPage.In this example, the first column in the report is the calculated field, which is represented by “1” in each line.
  6. Display the geochart by adding the following JavaScript below the code segment added in step 5. Replace 1 in the [@calcfield:1!] value (highlighted in the following screenshot) with the number of your calculated field: Search and Report Wizard dialog box showing the code that displays the geochart.
  7. Optional: Customize the options object in the code above to change the displayed country, the range of colors, and so on. For more information on customizing geocharts, see Google Charts help. Search and Report Wizard dialog box showing the code that you can use to customize the geochart display.
  8. Click Finish.
Result: The DataPage displays the geochart with the data that you provided.
Note: This article uses external HTML, JavaScript, or third-party solutions to add functionality outside of Caspio Bridge’s standard feature set. These solutions are provided “as is” without warranty, support, or guarantee. The code within this article is provided as a sample to assist you in the customization of your web applications. You may need a basic understanding of HTML and JavaScript to implement successfully. For assistance with further customization based on your specific application requirements, please contact our Professional Services team.
code1
STUFF((SELECT ',' +'['''+ State + ''',' + CONVERT(VARCHAR,Population) +']' FROM States_GeoChart FOR XML PATH ('')), 1, 1, '')
code2
<style>  

form[action*='[@cbAppKey]'] tr.cbResultSetDataRow td:nth-child(1),  

form[action*='[@cbAppKey]'] tr.cbResultSetTableHeader th:nth-child(1)  

{  

display:none !important;  

}  

</style>
code3
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>  

<script type="text/javascript">  

document.addEventListener('DataPageReady', function (event) {  

  if (event.detail.appKey == '[@cbAppKey]') {  

    /*https://developers.google.com/chart/interactive/docs/gallery/geochart*/  

    google.charts.load('current', {  

      'packages':['geochart'],  

    });  

    google.charts.setOnLoadCallback(drawRegionsMap);  

  

    function drawRegionsMap() {  

      var arrays = [['State', 'Population']];  

      arrays.push([@calcfield:1!])  

      var data = google.visualization.arrayToDataTable(arrays);  

      var options = {  

        region: 'US', /* https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements */  

        displayMode: 'regions',  

        resolution: 'provinces',  

        colorAxis: {colors:['Salmon','FireBrick']},  

      };  

      var chart = new google.visualization.GeoChart(document.getElementById('regions_div'));  

      chart.draw(data, options);  

    }  

  }  

  });  

</script>  

<div id="regions_div" style="width: auto; max-width:800px;"></div>