Add widgets to your dashboard

DoubleCloud Visualization supports two widget types: title and text.

Add a Title

  1. Open your dashboard.

  2. Click AddTitle.

  3. In the popup window, specify the title.

  4. Select the title size: Large, Medium, Small, or XSmall.

  5. Keep the Display in contents box checked if you want to display the title in your dashboard's table of contents.

  6. Click Add.

  7. Choose the appropriate location for your title by dragging it around the dashboard.

  8. 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 as string.

  • size - the font size of the title. This is an enum with the following values: xs, s, m, l.

  • show_in_toc - display this dashboard widget in the contents. This is a boolean.

API example
name: "Visualization Demo Title"
dashtitle:
   text: "This is your Demo Title"
   size: m
   show_in_toc: true

Add a Text

  1. Open your dashboard.

  2. Click AddText.

  3. In the popup window, enter your text in the supported Markdown syntax.

  4. Click Add.

  5. Choose the appropriate location for your text by dragging it around the dashboard.

  6. 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 as string. You can send the string with Markdown syntax.
API example
name: "Visualization Demo Text"
dashtext:
   text: "This is your **demo text** with `Markdown` decorations."

See also