Skip to content

Instantly share code, notes, and snippets.

@jesuino
Created May 13, 2022 17:38
Show Gist options
  • Save jesuino/d1b982822b156ad46608fd7c4b245e10 to your computer and use it in GitHub Desktop.
Save jesuino/d1b982822b156ad46608fd7c4b245e10 to your computer and use it in GitHub Desktop.
datasets:
- uuid: bitcoin
expression: $.prices
url: https://api.coingecko.com/api/v3/coins/bitcoin/market_chart?vs_currency=USD&days=10&interval=hourly
columns:
- id: Year
type: label
- id: Price
type: number
pages:
- components:
- settings:
dataSetLookup:
uuid: bitcoin
component: echarts
external:
width: 100%
height: 400px
echarts:
title:
text: Bitcoin
option: >-
{
"toolbox": {
"feature": {
"dataZoom": {},
"magicType": {
"type": ["line", "bar", "stack"]
},
"saveAsImage": {}
}
},
"series": [
{
"type": "line",
"markLine": {
"data": [
{ "type": "max" },
{ "type": "min" },
{ "type": "average" }
]
}
}
]
}
- settings:
component: table
external:
width: 100%
dataSetLookup:
uuid: bitcoin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment