-
Notifications
You must be signed in to change notification settings - Fork 4
Basic Usage
the-maux edited this page Jan 14, 2021
·
1 revision
First thing that you need to do after a successful installation is to create an
empty config that will provide a base for your customizations Dashboard
You can create exemple dashboard with
shell>$ python src/manage.py runserver [<host>] [<port>]
where host
and port
parameters are optional
(by default these are 0.0.0.0
and 8080
)
You can now point your web browser to http://localhost:8080
- [chartboard dir]/src/chartboard/app/Config/
- by variable environment TIPBOARD_DIRECTORY
If 2 files are present in the directory, auto flip will be on
If there is only one file in the directory the dashboard flip mode will be off
src/chartboard/app/Config/dev_layout
src/chartboard/app/Config/layout_config
There are many exemples of dashboard config in github repository
Dashboard config file respect yaml syntax with two section:
- details (relative to dashboard, ex: title or color_mode)
- layout (definition of all tiles present in dashboard)
![]() |
---|
details: page_title: One tile dashboard color_mode: black layout: - row: - col: - tile_template: line_chart tile_id: line_chartjs_ex title: line tile's |
- change: text color, gridlines color, background, etc
![]() |
---|
details: page_title: white dashboard color_mode: white layout: - row: - col: - tile_template: polararea_chart tile_id: polararea_ex title: polar-area |
![]() |
---|
details: page_title: flip dashboard color_mode: black layout: - row: - col flip-time-2: |
![]() |
---|
details: page_title: Chartboard exemple color_mode: black layout: - row weight-3: |
- 🏠 Home
- 🚸 Basic Usage
- 🎆 Exemples
-
Chartboard Usage
- 🐍 Local Build
- 🌩️ Cloud deploy
- 📂 Configuration
- 🔌 API
- ⛔ Windows
-
📊 Tiles Usage