Skip to content

Instantly share code, notes, and snippets.

@kristw
Last active August 17, 2020 06:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kristw/38e2d6d28fe1a1155f540e94893b1090 to your computer and use it in GitHub Desktop.
Save kristw/38e2d6d28fe1a1155f540e94893b1090 to your computer and use it in GitHub Desktop.
blog example: echarts
option = {
xAxis: {
data: ['2017-10-24', '2017-10-25', '2017-10-26', '2017-10-27']
},
yAxis: {},
series: [{
type: 'candlestick',
data: [
[20, 30, 10, 35],
[40, 35, 30, 55],
[33, 38, 33, 40],
[40, 40, 32, 42]
]
}]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment