World 'Fertility Rate' with Animated Bubble Chart

The Fertility Rate, GDP Per Capita, and Population historical values are visualized with the Animated Bubble Chart. The chart employs linear scale on both X and Y axis. Items on the chart are divided into groups (continents in this case).
Note: Use Play/Pause to control the animation or click on the time axis to jump to a specific period. At any time click the pause button and Zoom In/Out (mouse wheel or pinch-to-zoom) the chart. Mouse over a specific item to see its values. Click on an item and choose History Line to see all previous (historical) values of the same item on the same chart. Learn more about all Animated Bubble Chart Features.

HTML/JavaScript Code

The HTML elements and JavaScript code used in this example.
...
<div id="chartDiv"></div>
...
function showChart() {
    let config =  {
        title: "World Fertility Rate, GDP Per Capita, and Population Historical Values",
        width: "800",
        height: "600",
        numberOfDecimals: 2,
        thousandsSeparator: ".",
        decimalSeparator: ",",
        transitionTime: 2,
        measures: [{ title: "Fertility Rate" }, 
                { title: "GDP Per Capita", prefix: "$" }, 
                { title: "Population" }],
        dataCSVURL: "/charts-lib/examples/world-fertility-gdp-population.csv"
    }

    kyubitTimeCharts.showBubbleChart("chartDiv", config);
}
Learn more about Animated Bubble Chart API.

Chart Data

All values for this animated bubble chart example are stored in the World-fertility-gdp-population.csv file.