Created
December 15, 2016 20:40
-
-
Save drhanlau/7014c6407070f3a61fd0348c73ad82af to your computer and use it in GitHub Desktop.
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
options = { | |
chart: { | |
type: 'line', | |
height: 250, | |
}, | |
title: { | |
text: 'Market Data: Nasdaq 100' | |
}, | |
subtitle: { | |
text: 'May 11, 2016' | |
}, | |
xAxis: { | |
categories: ['9:30 am', '10:00 am', '10:30 am', '11:00 am', '11:30 am', '12:00 pm', | |
'12:30 pm', '1:00 pm', '1:30 pm', '2:00 pm', '2:30 pm', | |
'3:00 pm', '3:30 pm', '4:00 pm' | |
], | |
labels: { | |
step: 3 | |
} | |
}, | |
legend: { | |
enabled: false | |
}, | |
series: [{ | |
name: 'Nasdaq', | |
color: '#4572A7', | |
data: [2606.01, 2622.08, 2636.03, 2637.78, 2639.15, 2637.09, | |
2633.38, 2632.23, 2632.33, 2632.59, 2630.34, 2626.89, 2624.59, 2615.98 | |
] | |
}] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment