Created
February 8, 2018 12:18
-
-
Save samarthagarwal/4b1e9841d81463d1caffedede4696a3b to your computer and use it in GitHub Desktop.
ACWA-09
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
| var myChart = Highcharts.chart("container", { | |
| chart: { | |
| type: "spline" | |
| }, | |
| title: { | |
| text: "Crypto - Rates" | |
| }, | |
| yAxis: { | |
| title: { | |
| text: "Currency Rates" | |
| } | |
| }, | |
| series: [ | |
| { | |
| name: "Bitcoin", | |
| data: dataset1 | |
| }, | |
| { | |
| name: "Ether", | |
| data: dataset2, | |
| dashStyle: "dot" | |
| } | |
| ] | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment