Back

Stacked bars. Black theme.

Global emissions since 1751

Documentation Open in JSFiddle
Start Free Trial Purchase

HTML

HTML
<script src="https://cdn.zoomcharts-cloud.com/1/nightly/zoomcharts.js"></script>

<div id="demo"></div>

CSS

CSS
.DVSL-info-right, .DVSL-info-left, .DVSL-info-center {
        border-radius:0;
        background-color:rgba(30,30,30,0.5);
        border-bottom:0;
        width:20%;
    }
    .DVSL-bar-left > li a, .DVSL-bar-right > li a {
        color:#FFFFFF;
    }
    .DVSL-bar-left > li a:hover, .DVSL-bar-right > li a:hover {
        opacity: 0.8;
    }
    .DVSL-bar-left li > a, .DVSL-bar-right li > a {
        height: 37px;
    }
    .DVSL-info-left tr:nth-child(2n), .DVSL-info-right tr:nth-child(2n), .DVSL-info-center tr:nth-child(2n) {
        background-color:rgba(52, 52, 52, 0.5);
    }
    .DVSL-info-right strong, .DVSL-info-left strong, .DVSL-info-center strong {
        color:#FFFFFF;
        border-radius:0;
        border-bottom:0;
        background-color:rgba(12, 12, 12, 0.5);
    }
    .DVSL-info-left table > tbody > tr:nth-child(1) > td:nth-child(2),
    .DVSL-info-right table > tbody > tr:nth-child(1) > td:nth-child(2),
    .DVSL-info-center table > tbody > tr:nth-child(1) > td:nth-child(2) {
        color:#51CEAF;
        /*color:#14A9E3;*/
    }
    .DVSL-info-left table > tbody > tr:nth-child(2) > td:nth-child(2),
    .DVSL-info-right table > tbody > tr:nth-child(2) > td:nth-child(2),
    .DVSL-info-center table > tbody > tr:nth-child(2) > td:nth-child(2) {
        /*color:#3AC7D0;*/
        color:#2992BD;
    }
    .DVSL-info-left table > tbody > tr:nth-child(3) > td:nth-child(2),
    .DVSL-info-right table > tbody > tr:nth-child(3) > td:nth-child(2),
    .DVSL-info-center table > tbody > tr:nth-child(3) > td:nth-child(2) {
        /*color:#B2CE89;*/
        color:#15A8E4;
    }
    .DVSL-info-left table > tbody > tr:nth-child(4) > td:nth-child(2),
    .DVSL-info-right table > tbody > tr:nth-child(4) > td:nth-child(2),
    .DVSL-info-center table > tbody > tr:nth-child(4) > td:nth-child(2) {
         color:#B3CD8A;
    }
    .DVSL-info-left table > tbody > tr:nth-child(5) > td:nth-child(2),
    .DVSL-info-right table > tbody > tr:nth-child(5) > td:nth-child(2),
    .DVSL-info-center table > tbody > tr:nth-child(5) > td:nth-child(2) {
        color:#3AC7D0;
    }
    .DVSL-info-left table > tbody > tr > td,
    .DVSL-info-right table > tbody > tr > td,
    .DVSL-info-center table > tbody > tr > td {
        padding:12px 0;
    }

JavaScript

JavaScript

    function success(data){
        data.dataLimitFrom = 0;
        data.dataLimitTo = 0;
        for (var i in data.values) {
            if (data.dataLimitFrom == 0) {
                data.dataLimitFrom = data.values[i][0];
            }
            data.dataLimitFrom = data.dataLimitFrom > data.values[i][0] ? data.values[i][0] : data.dataLimitFrom;
            data.dataLimitTo = data.dataLimitTo < data.values[i][0] ? data.values[i][0] : data.dataLimitTo;
        }
        t = new TimeChart(
                {
                    container: document.getElementById("demo"),
                    data:
                    {
                        units:["d"],
                        preloaded: data
                    },
                    valueAxisDefault:{ 
                        title: "Amount, metric tons", 
                        style: {
                            title: { fillColor:"#838283"},
                            hgrid: { lineColor: "rgba(84,82,84,0.5)"},
                            valueLabel: { fillColor: "#838283"}
                        } 
                    },
                    timeAxis: {
                        style: {
                            minorTimeLabel: { fillColor: "#838283" },
                            majorTimeLabel: { fillColor: "#838283" }
                        }
                    },
                    series:[
                        {
                            name:"Gas fuel",
                            id:"series1",
                            type:"columns",
                            data:{
                                index:2,
                                aggregation:"sum"
                            },
                            stack: "default",
                            style:{
                                fillColor:"#3AC7D0"
                            }
                        },
                        {
                            name:"Liquid Fuel",
                            id:"series2",
                            type:"columns",
                            data:{
                                index:3,
                                aggregation:"sum"
                            },
                            stack: "default",
                            style:{
                                fillColor:"#B3CD8A"
                            }
                        },
                        {
                            name:"Solid Fuel",
                            id:"series3",
                            type:"columns",
                            data:{
                                index:4,
                                aggregation:"sum"
                            },
                            stack: "default",
                            style:{
                                fillColor: "#15A8E4"
                            }
                        },
                        {
                            name:"Cement",
                            id:"series4",
                            type:"columns",
                            data:{
                                index:5,
                                aggregation:"sum"
                            },
                            stack: "default",
                            style:{
                                fillColor: "#2992BD"
                            }
                        },
                        {
                            name:"Gas Flaring",
                            id:"series5",
                            type:"columns",
                            data:{
                                index:6,
                                aggregation:"sum"
                            },
                            stack: "default",
                            style:{
                                fillColor: "#47DAB5"
                            }
                        }
                    ],
                    info: {
                        style: {
                            highlight:{
                                fillColor: "rgba(142,142,142,0.15)"
                            }
                        }
                    },
                    chartTypes:{
                        columns:{
                            style: {
                                padding:[1,1]
                            }
                        }
                    },
                    navigation: {
                        initialDisplayUnit: "10 y",
                        initialDisplayPeriod: "250 y",
                        initialDisplayAnchor: "newestData"
                    },
                    area: {
                        displayUnits: [
                            {name: "year", unit: "1 y"},
                            {name: "10 years", unit: "10 y"},
                            {name: "50 years", unit: "50 y"}
                        ],
                        style: {
                            fillColor: "#1B1B1B",
                            selection: {
                                "lineColor": "#000000",
                                "fillColor": "rgba(142,142,142,0.15)"
                            },
                            selectionLabel: {
                                "fillColor": "#FFFFFF"
                            },
                            zoomHighlight:{
                                "fillColor": "rgba(142,142,142,0.15)"
                            },
                            zoomHighlightInactive:{
                                "fillColor": "rgba(142,142,142,0.15)"
                            }
                        }
                    },
                    currentTime: {enabled: false}
                }
        );
    }
    // using a custom library to load CSV data
    loadCSV("/dvsl/data/time-chart/global-emissions.csv", "d", [
        {type: "date", format:  "([0-9]+)", fields: [1,2,3], process:
        [null,function(a){return parseInt(a)}, function(b){return 1}, function(b){return 1}]}, 
        {type: "decimal"},
        {type: "decimal"},
        {type: "decimal"},
        {type: "decimal"},
        {type: "decimal"},
        {type: "decimal"}
    ], ",", success);

Data

Data
1751,3,0,0,3,0,0,
1752,3,0,0,3,0,0,
1753,3,0,0,3,0,0,
1754,3,0,0,3,0,0,
1755,3,0,0,3,0,0,
1756,3,0,0,3,0,0,
1757,3,0,0,3,0,0,
1758,3,0,0,3,0,0,
1759,3,0,0,3,0,0,
1760,3,0,0,3,0,0,
1761,3,0,0,3,0,0,
1762,3,0,0,3,0,0,
1763,3,0,0,3,0,0,
1764,3,0,0,3,0,0,
1765,3,0,0,3,0,0,
1766,3,0,0,3,0,0,
1767,3,0,0,3,0,0,
1768,3,0,0,3,0,0,
1769,3,0,0,3,0,0,
1770,3,0,0,3,0,0,
1771,4,0,0,4,0,0,
1772,4,0,0,4,0,0,
1773,4,0,0,4,0,0,
1774,4,0,0,4,0,0,
1775,4,0,0,4,0,0,
1776,4,0,0,4,0,0,
1777,4,0,0,4,0,0,
1778,4,0,0,4,0,0,
1779,4,0,0,4,0,0,
1780,4,0,0,4,0,0,
1781,5,0,0,5,0,0,
1782,5,0,0,5,0,0,
1783,5,0,0,5,0,0,
1784,5,0,0,5,0,0,
1785,5,0,0,5,0,0,
1786,5,0,0,5,0,0,
1787,5,0,0,5,0,0,
1788,5,0,0,5,0,0,
1789,5,0,0,5,0,0,
1790,5,0,0,5,0,0,
1791,6,0,0,6,0,0,
1792,6,0,0,6,0,0,
1793,6,0,0,6,0,0,
1794,6,0,0,6,0,0,
1795,6,0,0,6,0,0,
1796,6,0,0,6,0,0,
1797,7,0,0,7,0,0,
1798,7,0,0,7,0,0,
1799,7,0,0,7,0,0,
1800,8,0,0,8,0,0,
1801,8,0,0,8,0,0,
1802,10,0,0,10,0,0,
1803,9,0,0,9,0,0,
1804,9,0,0,9,0,0,
1805,9,0,0,9,0,0,
1806,10,0,0,10,0,0,
1807,10,0,0,10,0,0,
1808,10,0,0,10,0,0,
1809,10,0,0,10,0,0,
1810,10,0,0,10,0,0,
1811,11,0,0,11,0,0,
1812,11,0,0,11,0,0,
1813,11,0,0,11,0,0,
1814,11,0,0,11,0,0,
1815,12,0,0,12,0,0,
1816,13,0,0,13,0,0,
1817,14,0,0,14,0,0,
1818,14,0,0,14,0,0,
1819,14,0,0,14,0,0,
1820,14,0,0,14,0,0,
1821,14,0,0,14,0,0,
1822,15,0,0,15,0,0,
1823,16,0,0,16,0,0,
1824,16,0,0,16,0,0,
1825,17,0,0,17,0,0,
1826,17,0,0,17,0,0,
1827,18,0,0,18,0,0,
1828,18,0,0,18,0,0,
1829,18,0,0,18,0,0,
1830,24,0,0,24,0,0,
1831,23,0,0,23,0,0,
1832,23,0,0,23,0,0,
1833,24,0,0,24,0,0,
1834,24,0,0,24,0,0,
1835,25,0,0,25,0,0,
1836,29,0,0,29,0,0,
1837,29,0,0,29,0,0,
1838,30,0,0,30,0,0,
1839,31,0,0,31,0,0,
1840,33,0,0,33,0,0,
1841,34,0,0,34,0,0,
1842,36,0,0,36,0,0,
1843,37,0,0,37,0,0,
1844,39,0,0,39,0,0,
1845,43,0,0,43,0,0,
1846,43,0,0,43,0,0,
1847,46,0,0,46,0,0,
1848,47,0,0,47,0,0,
1849,50,0,0,50,0,0,
1850,54,0,0,54,0,0,
1851,54,0,0,54,0,0,
1852,57,0,0,57,0,0,
1853,59,0,0,59,0,0,
1854,69,0,0,69,0,0,
1855,71,0,0,71,0,0,
1856,76,0,0,76,0,0,
1857,77,0,0,77,0,0,
1858,78,0,0,78,0,0,
1859,83,0,0,83,0,0,
1860,91,0,0,91,0,0,
1861,95,0,0,95,0,0,
1862,97,0,0,96,0,0,
1863,104,0,0,103,0,0,
1864,112,0,0,112,0,0,
1865,119,0,0,119,0,0,
1866,122,0,0,122,0,0,
1867,130,0,0,130,0,0,
1868,135,0,0,134,0,0,
1869,142,0,0,142,0,0,
1870,147,0,1,146,0,0,
1871,156,0,1,156,0,0,
1872,173,0,1,173,0,0,
1873,184,0,1,183,0,0,
1874,174,0,1,173,0,0,
1875,188,0,1,187,0,0,
1876,191,0,1,190,0,0,
1877,194,0,2,192,0,0,
1878,196,0,2,194,0,0,
1879,210,0,3,207,0,0,
1880,236,0,3,233,0,0,
1881,243,0,4,239,0,0,
1882,256,0,4,252,0,0,
1883,272,0,3,269,0,0,
1884,275,0,4,271,0,0,
1885,277,1,4,273,0,0,
1886,281,2,5,275,0,0,
1887,295,3,5,287,0,0,
1888,327,5,5,317,0,0,
1889,327,3,6,318,0,0,
1890,356,3,8,345,0,0,
1891,372,2,9,360,0,0,
1892,374,2,9,363,0,0,
1893,370,2,10,358,0,0,
1894,383,2,9,372,0,0,
1895,406,2,11,393,0,0,
1896,419,2,12,405,0,0,
1897,440,2,13,425,0,0,
1898,465,2,13,449,0,0,
1899,507,3,14,491,0,0,
1900,534,3,16,515,0,0,
1901,552,4,18,531,0,0,
1902,566,4,19,543,0,0,
1903,617,4,20,593,0,0,
1904,624,4,23,597,0,0,
1905,663,5,23,636,0,0,
1906,707,5,23,680,0,0,
1907,784,5,28,750,0,0,
1908,750,5,30,714,0,0,
1909,785,6,32,747,0,0,
1910,819,7,34,778,0,0,
1911,836,7,36,792,0,0,
1912,879,8,37,834,0,0,
1913,943,8,41,895,0,0,
1914,850,8,42,800,0,0,
1915,838,9,45,784,0,0,
1916,901,10,48,842,0,0,
1917,955,11,54,891,0,0,
1918,936,10,53,873,0,0,
1919,806,10,61,735,0,0,
1920,932,11,78,843,0,0,
1921,803,10,84,709,0,0,
1922,845,11,94,740,0,0,
1923,970,14,111,845,0,0,
1924,963,16,110,836,0,0,
1925,975,17,116,842,0,0,
1926,983,19,119,846,0,0,
1927,1062,21,136,905,0,0,
1928,1065,23,143,890,10,0,
1929,1145,28,160,947,10,0,
1930,1053,28,152,862,10,0,
1931,940,25,147,759,8,0,
1932,847,24,141,675,7,0,
1933,893,25,154,708,7,0,
1934,973,28,162,775,8,0,
1935,1027,30,176,811,9,0,
1936,1130,34,192,893,11,0,
1937,1209,38,219,941,11,0,
1938,1142,37,214,880,12,0,
1939,1192,38,222,918,13,0,
1940,1299,42,229,1017,11,0,
1941,1334,42,236,1043,12,0,
1942,1342,45,222,1063,11,0,
1943,1391,50,239,1092,10,0,
1944,1383,54,275,1047,7,0,
1945,1160,59,275,820,7,0,
1946,1238,61,292,875,10,0,
1947,1392,67,322,992,12,0,
1948,1469,76,364,1015,14,0,
1949,1419,81,362,960,16,0,
1950,1630,97,423,1070,18,23,0.64
1951,1767,115,479,1129,20,24,0.69
1952,1795,124,504,1119,22,26,0.68
1953,1841,131,533,1125,24,27,0.69
1954,1865,138,557,1116,27,27,0.69
1955,2042,150,625,1208,30,31,0.74
1956,2177,161,679,1273,32,32,0.77
1957,2270,178,714,1309,34,35,0.79
1958,2330,192,731,1336,36,35,0.8
1959,2454,206,789,1382,40,36,0.83
1960,2569,227,849,1410,43,39,0.85
1961,2580,240,904,1349,45,42,0.84
1962,2686,263,980,1351,49,44,0.86
1963,2833,286,1052,1396,51,47,0.88
1964,2995,316,1137,1435,57,51,0.92
1965,3130,337,1219,1460,59,55,0.94
1966,3288,364,1323,1478,63,60,0.97
1967,3393,392,1423,1448,65,66,0.98
1968,3566,424,1551,1448,70,73,1.01
1969,3780,467,1673,1486,74,80,1.05
1970,4053,493,1839,1556,78,87,1.1
1971,4208,530,1947,1559,84,88,1.12
1972,4376,560,2057,1576,89,94,1.14
1973,4614,588,2241,1581,95,110,1.18
1974,4623,597,2245,1579,96,107,1.16
1975,4596,604,2132,1673,95,92,1.13
1976,4864,630,2314,1710,103,108,1.18
1977,5026,650,2398,1765,108,104,1.19
1978,5087,680,2392,1793,116,106,1.19
1979,5369,721,2544,1887,119,98,1.23
1980,5315,740,2422,1947,120,86,1.2
1981,5152,756,2289,1921,121,64,1.14
1982,5113,740,2196,1992,121,64,1.11
1983,5094,741,2176,1995,125,58,1.09
1984,5280,808,2199,2094,128,51,1.11
1985,5439,837,2186,2237,131,49,1.12
1986,5607,831,2293,2300,137,46,1.14
1987,5752,894,2306,2364,143,44,1.15
1988,5965,937,2412,2414,152,50,1.17
1989,6097,985,2459,2457,156,41,1.17
1990,6127,1019,2492,2419,157,40,1.16
1991,6217,1063,2605,2345,161,44,1.16
1992,6164,1095,2510,2357,167,35,1.13
1993,6162,1129,2523,2298,176,36,1.11
1994,6266,1139,2546,2358,186,38,1.11
1995,6398,1157,2565,2442,197,36,1.12
1996,6542,1209,2624,2469,203,37,1.13
1997,6651,1208,2700,2495,209,38,1.13
1998,6643,1243,2766,2391,209,35,1.12
1999,6610,1270,2737,2352,217,33,1.1
2000,6765,1288,2838,2367,226,45,1.11
2001,6927,1312,2840,2492,237,46,1.12
2002,6996,1344,2831,2521,252,48,1.12
2003,7416,1391,2959,2743,276,48,1.17
2004,7807,1437,3053,2967,298,53,1.21
2005,8093,1480,3076,3157,320,60,1.24
2006,8370,1525,3089,3339,356,61,1.27
2007,8566,1572,3081,3464,382,68,1.28
2008,8783,1631,3122,3571,388,71,1.3
2009,8740,1585,3056,3620,413,66,1.28
2010,9167,1702,3114,3842,450,59,1.33
Download Data