Vizabi examples

Example BarRank Chart


Embed this chart into your web page

  1. Go to gapminder.org/tools
  2. Pick any chart you like
  3. Press embed button </>
  4. Copy to clipboard the code that appeared
  5. Paste this code anywhere on your web page
  6. Tweak width and height so that it fits your layout

embed-gapminder-chart.gif

Note: if you change something on the chart before you press embed your changes will be captured in the embed link too

Embedding without iframe

You will need to include vizabi script and stylesheet into your web page, as well as the scripts and styles for the tools you want to use.

Examples can be found here

Code snippet

<!doctype html>
<html>
<head>

<link rel="stylesheet" href="//s3-eu-west-1.amazonaws.com/static.gapminderdev.org/vizabi/develop/vizabi.css">
<link rel="stylesheet" href="//s3-eu-west-1.amazonaws.com/static.gapminderdev.org/barrankchart.css">

<script src="//d3js.org/d3.v4.min.js"></script>
<script src="//s3-eu-west-1.amazonaws.com/static.gapminderdev.org/vizabi/develop/vizabi.min.js"></script>
<script src="//s3-eu-west-1.amazonaws.com/static.gapminderdev.org/preview/master/assets/vendor/js/vizabi-ws-reader/vizabi-ws-reader.js"></script>
<script src="//s3-eu-west-1.amazonaws.com/static.gapminderdev.org/systema-globalis/master/ConfigBarRankChart.js"></script>
<script src="//s3-eu-west-1.amazonaws.com/static.gapminderdev.org/barrankchart.js"></script>

</head>
<body>
<div id="placeholder" width="600px" height="400px"></div>

<script>
var wsReader = WsReader.WsReader.getReader();
Vizabi.Reader.extend("waffle", wsReader);

ConfigBarRankChart.locale = {
  "id": "en",
  "filePath": "//s3-eu-west-1.amazonaws.com/static.gapminderdev.org/assets/translation/"
};

ConfigBarRankChart.data = {
  "reader": "waffle",
  "path": "https://waffle-server.gapminder.org/api/ddf/ql"
};

Vizabi("BarRankChart", document.getElementById("placeholder"), ConfigBarRankChart);
</script>

</body>
</html>