Add widgets to your dashboard
DoubleCloud Visualization supports two widget types: title and text.
Add a Title
-
Open your dashboard.
-
Click Add → Title.
-
In the popup window, specify the title.
-
Select the title size:
Large
,Medium
,Small
, orXSmall
. -
Keep the Display in contents box checked if you want to display the title in your dashboard's table of contents.
-
Click Add.
-
Choose the appropriate location for your title by dragging it around the dashboard.
-
Click Save in the upper-right corner.
Note
This configuration is a segment in the overall description of Visualization assets in the workbook. For the complete tutorial, see Use Visualization API.
To describe a title, use the DashElement DashTitle
configuration and send the following fields:
-
text
- the contents of the title asstring
. -
size
- the font size of the title. This is anenum
with the following values:xs
,s
,m
,l
. -
show_in_toc
- display this dashboard widget in the contents. This is aboolean
.
API example
name: "Visualization Demo Title"
dashtitle:
text: "This is your Demo Title"
size: m
show_in_toc: true
Add a Text
-
Open your dashboard.
-
Click Add → Text.
-
In the popup window, enter your text in the supported Markdown syntax.
-
Click Add.
-
Choose the appropriate location for your text by dragging it around the dashboard.
-
Click Save in the upper-right corner.
Note
This configuration is a segment in the overall description of Visualization assets in the workbook. For the complete tutorial, see Use Visualization API.
To describe a title, use the DashElement DashText
configuration and send the following fields:
text
- the contents of the title asstring
. You can send the string with Markdown syntax.
API example
name: "Visualization Demo Text"
dashtext:
text: "This is your **demo text** with `Markdown` decorations."