Forked from Variance Charts's Pen Grouped Bar Example.
A Pen by Jon Eyrick on CodePen.
| <html> | |
| <head> | |
| <title>Simple Sparkline using SVG Path and d3.js</title> | |
| <script src="http://mbostock.github.com/d3/d3.v2.js"></script> | |
| <style> | |
| /* tell the SVG path to be a thin blue line without any area fill */ | |
| path { | |
| stroke: steelblue; | |
| stroke-width: 1; | |
| fill: none; |
| goog.require('goog.Uri'); | |
| goog.require('goog.events'); | |
| goog.require('goog.json'); | |
| goog.require('goog.net.xpc.CrossPageChannel'); | |
| goog.global.initOuter = function(url) { | |
| goog.events.listen(window, 'load', function() { xpcdemo.initOuter(url); }); | |
| }; | |
| goog.global.initInner = function() { | |
| goog.events.listen(window, 'load', function() { xpcdemo.initInner(); }); |
Forked from Variance Charts's Pen Grouped Bar Example.
A Pen by Jon Eyrick on CodePen.