Skip to content

Instantly share code, notes, and snippets.

@stichbury
Created May 9, 2024 11:17
Show Gist options
  • Save stichbury/ea866b14fe7ef05e896eb2a1ed55aa86 to your computer and use it in GitHub Desktop.
Save stichbury/ea866b14fe7ef05e896eb2a1ed55aa86 to your computer and use it in GitHub Desktop.
Start to set up the Vizro dashboard
from vizro import Vizro
import vizro.models as vm
import vizro.plotly.express as px
first_page = vm.Page(
title="Documentation traffic dashboard",
layout=vm.Layout(
grid=[
[0, 2],
[1, 2],
],
),
components=[
# TO DO
],
)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment