Site total embeddable widget
Use this customizable chartbeat widget to show the total number of visitors on your site with a classic chartbeat gauge. Note: The widget uses <canvas> and is not supported by versions of IE older than IE 9.
<script src='http://static.chartbeat.com/js/sitewidgets/sitetotal.js' type='text/javascript'></script>
<script type='text/javascript'>
(function() {
var config = {
'api': 'http://yourdomain.com/path/to/proxy/api',
'color': '#anyHexValue', // Optional
'disableStyles': false, // Optional
'element': 'id-of-div-to-write-to',
'label': 'Any custom label to appear at the top', // Optional
'width': 230, // Optional
'refreshInterval': 3000 // Optional, milliseconds
};
new SiteTotal(config);
})();
</script>