Spaces:
Running
Running
File size: 455 Bytes
c777272 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import plotly.express as px
from vizro.models.types import capture
stocks = px.data.stocks()
@capture("graph")
def sparkline(data_frame, **kwargs):
fig = px.line(data_frame, **kwargs)
fig.update_xaxes(ticks="", showgrid=False, title="")
fig.update_yaxes(visible=False)
fig.update_layout(showlegend=False)
return fig
fig = sparkline(stocks, x="date", y=["GOOG", "AMZN", "AAPL"], labels={"variable": "stock"}, facet_row="variable")
|