Charts/visualizations

Glean insights from your data, visually.

Create beautiful visualizations using our in-app Plotly support. Plotly support works just as you're used to in Python, displaying your chart straight to the spreadsheet.

Getting started

Building charts in Quadratic is centered around Python charting libraries, starting with Plotly. Building charts in Plotly is broken down into 3 simple steps:

1. Create and display a chart

Line charts

# import plotly
import plotly.express as px

# replace this df with your data
df = px.data.gapminder().query("country=='Canada'")

# create your chart type, for more chart types: https://plotly.com/python/
fig = px.line(df, x="year", y="lifeExp", title='Life expectancy in Canada')

# make chart prettier
fig.update_layout(
    plot_bgcolor="White",
)

# display chart 
fig.show()

Bar charts

Histograms

Scatter plots

Heatmaps

More chart types

For more chart types, explore the Plotly docs: https://plotly.com/python/

2. Styling

For more styling, explore the Plotly styling docs: https://plotly.com/python/styling-plotly-express/

3. Chart controls

Resize by dragging the edges of the chart.

Last updated

Was this helpful?