Charts
Data apps have been conceived for visualization, so you can use a lot of interactive chart components, like the line_chart()
. Let’s create one:
data = [1, 2, 3, 4, 5, 6]
line_chart_graph = app.line_chart(title='Linechart', value=data)
app.place(line_chart_graph)
You can explore the component on the API Reference in line_chart()
.