Skip to content

Instantly share code, notes, and snippets.

@nikolaswise
Created April 13, 2015 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nikolaswise/d61cf194c282fabae7d4 to your computer and use it in GitHub Desktop.
Save nikolaswise/d61cf194c282fabae7d4 to your computer and use it in GitHub Desktop.
sample line graphs with angular dimple
[
{
"x": 0,
"y": 12,
"for": "Foo"
},
{
"x": 1,
"y": 24,
"for": "Foo"
},
{
"x": 0,
"y": 3,
"for": "Bar"
},
{
"x": 1,
"y": 9,
"for": "Bar"
}
]
<graph data="graphData">
<x field="x" order-by="x"></x>
<y field="y"></y>
<graph-legend></graph-legend>
<line field="for" value="Foo"></line>
<line field="for" value="Bar"></line>
</graph>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment