Last active
August 17, 2020 06:28
-
-
Save kristw/38e2d6d28fe1a1155f540e94893b1090 to your computer and use it in GitHub Desktop.
blog example: echarts
This file contains 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
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