Created
February 23, 2016 14:43
-
-
Save rmkane/03e006b27f6a23aea434 to your computer and use it in GitHub Desktop.
ZingChart - External Data Loading
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
| Apple | 25 | 34 | |
|---|---|---|---|
| Pear | -16 | 10 | |
| Lemon | 22 | -5 | |
| Orange | 41 | 21 |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://cdn.zingchart.com/zingchart.min.js"></script> | |
| <script> | |
| zingchart.MODULESDIR = "zingchart/modules/"; | |
| </script> | |
| <style></style> | |
| </head> | |
| <body> | |
| <div id='myChart'></div> | |
| <script> | |
| var myConfig = { | |
| "type": "line", | |
| "csv": { | |
| "url": "fruit.csv" | |
| } | |
| }; | |
| zingchart.render({ | |
| id: 'myChart', | |
| data: myConfig, | |
| height: 400, | |
| width: "100%" | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment