Skip to content

Instantly share code, notes, and snippets.

@samarthagarwal
Created February 8, 2018 12:18
Show Gist options
  • Select an option

  • Save samarthagarwal/4b1e9841d81463d1caffedede4696a3b to your computer and use it in GitHub Desktop.

Select an option

Save samarthagarwal/4b1e9841d81463d1caffedede4696a3b to your computer and use it in GitHub Desktop.
ACWA-09
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