Created
April 13, 2015 18:50
-
-
Save nikolaswise/d61cf194c282fabae7d4 to your computer and use it in GitHub Desktop.
sample line graphs with angular dimple
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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