Spaces:
Runtime error
Runtime error
File size: 391 Bytes
ef2f056 a7916dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# Copied from https://github.com/andfanilo/streamlit-echarts
from streamlit_echarts import st_echarts
options = {
"xAxis": {
"type": "category",
"data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
},
"yAxis": {"type": "value"},
"series": [
{"data": [820, 932, 901, 934, 1290, 1330, 1320], "type": "line"}
],
}
st_echarts(options=options)
|