This topic describes the chart styles and configuration items of the title widget.
Chart Style
A common title widget is a type of text widget. It allows you to customize the content, position, color, and hyperlink of the title. You can add multiple common title widows in a visualization application to display the titles of each module in the visualization application and the visualization application.
Settings Panel
- Search for Configurations: In the right-side panel of Canvas Editor, click the Settings tab, and click Search for Configurations in the upper-right corner. Enter the required configuration item in the search box, and click the search icon to quickly locate the configuration item. Fuzzy match is supported. For more information, see Search for asset configurations.
- Size: indicates the size of a widget, including its pixel width and height. You can click the
icon to proportionally adjust the width and height of a widget. After you click this icon again, you can adjust the width and height as needed.
- Position: the position of a widget, which is indicated by pixel X and Y coordinates. X-coordinate indicates the pixel distance between the upper-left corner of the widget and the left border of the canvas. Y-coordinate indicates the pixel distance between the upper-left corner of the widget and the upper border of the canvas.
- Rotation Angle: the angle of a rotation that uses the center point of a widget as the rotation point. The unit is degrees (°). You can use one of the following methods to control the rotation angle of a widget:
- Directly enter the degrees in the Rotation Angle spin box or click the plus sign (+) or minus sign (-) to increase or decrease the value in the Rotation Angle spin box.
- Drag the black dot in the
icon.
- Click the
icon to horizontally flip a widget.
- Click the
icon to vertically flip a widget.
- Opacity: the opacity of a widget. Valid values: 0 and 1. If this parameter is set to 0, the widget is hidden. If this parameter is set to 1, the widget is completely displayed. Default value: 1.
Title Name: the name of the title. You can obtain the title from the data panel.
NoteThe priority for obtaining the title name is Data > Style.
The Title Name field in the Configuration panel is displayed only after you clear the
value
field in the Data panel.
Text Style
Parameter
Description
Font
The font family of the title text. Default value: Microsoft Black.
Font size
The font size of the title text.
The color of the font.
The color of the title text. For more information, see color picker instructions.
Font weight
The font weight of the title text.
Alignment: the alignment of the title text. Valid values: Left, Right, and Center.
Text Arrangement: the arrangement of the title text. Valid values: Horizontal and Vertical.
Text Spacing: the distance between titles. Unit: pixels.
Background Style: the background style of the title. You can click the
icon to specify the background style.
Parameter
Description
Background color
The color of the title background box. For more information, see the color picker description.
Fillet
The rounded corner size of the title background box. Unit: px. When the value is 0, there is no rounded corner, and the background box is square. The larger the setting value, the larger the radian value of the rounded corner.
Background Border
The background border style of the title, including the line thickness, line color, and line style. Valid values: Solid, Dashed, and Dotted.
Ellipsis: If you turn on the switch, the overflow part is displayed as an ellipsis. If you turn off the switch, the overflow part at the beginning and end of the title cannot be displayed in the title box.
Figure 1. Open ellipsis example style
Figure 2. Turn off ellipsis example style
Hyperlink Settings: You can click the title to go to the specified hyperlink.
Parameter
Description
Hyperlink
The URL link address can also be configured in the data. The configuration in the data is preferred.
Whether to open a new window
Turn on the switch. On the Preview or Publish page, click the title to go to the new page to display the link content. If you turn off the switch, you are redirected only to the current page.
Data Panel

Configuration field description
Parameter | Description |
| (Optional) The content of the title. After the configuration, the content configuration items the title name is overwritten. If it is empty, the content configuration items the title name is read and displayed. |
| Optional. The URL of the hyperlink to which the title is redirected. After you configure this parameter, the URL of the hyperlink configuration items is overwritten. |
Parameter | Description |
Controlled Mode | If you turn on the switch, data is not requested when a widget is initialized. Data requests are triggered only based on callback IDs or the method configured in Blueprint Editor. If you turn off the switch, data requests are automatically triggered. By default, the switch is turned off. |
Auto Data Request | After you select the Auto Data Request check box, you can enable dynamic polling, and manually specify the polling interval. If you do not select this check box, data is not automatically requested. You must manually refresh the page to request data or use Blueprint Editor or callback ID events to trigger data requests. |
Data Source | In the right-side panel of Canvas Editor, click the Data tab. Click Set next to Static Data. In the Configure Datasource panel, select a data source from the Data Source Type drop-down list. Enter code for data query in the code editor, click Preview Data Response to preview the response of the data source, and then view the response. For more information, see Configure asset data. |
Data Filter | If you select the Data Filter check box, you can convert the data structure, filter data, and perform simple calculations. If you click the plus sign (+) next to Add Filter, you can configure the script for the data filter in the editor that appears. For more information, see Use the data filter. |
Data Response Result | The response to a data request. If the data source changes, you can click the ![]() |
Interaction Panel
This widget does not support interaction events.
Configure interactions in Blueprint Editor
- In Canvas Editor, right-click a widget in the Layer panel and select Add to Blueprint Editor.
- Click the
icon in the upper-left corner of the page.
In Blueprint Editor, click the Title widget in the Import Nodes pane. You can view the title widget on the canvas, as shown in the following figure.
Event
Event
Description
When the data interface request is completed
The event is triggered with the processed JSON data after a data interface request is responded and processed by a filter. For more information about specific data examples, see the Data Response Result section of the Data tab in the right-side configuration panel of the canvas editor.
When a data interface request fails
The event that is returned when a data interface request fails (the request may be due to network problems or interface errors) and is processed by the filter. The event also throws the processed JSON data. For more information about specific data examples, see the Data Response Result section of the Data tab in the right-side configuration panel of the canvas editor.
Policy Action
Policy Action
Description
Request Data Interface
This action is performed to request the server data again. The data sent by an upstream data processing node or layer node is used as a parameter. For example, if the API data source is
https://api.test
and the data transferred to the request data interface is{ id: '1'}
, the final request interface ishttps://api.test?id=1
.Import data
After data of a widget is processed in accordance with its drawing format, the widget is imported for redrawing. You do not need to request server data again. For more information about specific data examples, see the Data Response Result section of the Data tab in the right-side configuration panel of the canvas editor.
Update component configurations
Style configurations of widgets are dynamically updated. Before this action is executed, you must click the widget in Canvas Editor, click the Settings tab in the right-side panel, and click Copy Configurations to... to obtain widget configurations. After that, change the style field for the data processing node in Blueprint Editor.
Display
Displays the widget. The following example shows the reference data.
return { "animationType": "", "animationDuration": 1000, "animationEasing": "linear" };
Hide
The following example shows how to hide a widget.
return { "animationType": "", "animationDuration": 1000, "animationEasing": "linear" };
Switch to the implicit state
Specifies whether to show or hide a widget. The following example shows the reference data.
return { "animationIn": { "animationType": "", "animationDuration": 1000, "animationEasing": "linear" }, "animationOut": { "animationType": "", "animationDuration": 1000, "animationEasing": "linear" } };
Move
Move a widget to a specified location. The following example shows the reference data.
return { // The positioning type. to indicates absolute positioning, whereas by indicates relative positioning. The default value is to. "positionType": "to", // The location, which is indicated by the x and y coordinates. "attr": { "x": 0, "y": 0 }, // The animation type. "animation": { "enable": false, // The duration in which animation is displayed. "animationDuration": 1000, // The animation curve, which can be set to linear|easeInOutQuad|easeInOutExpo. "animationEasing": "linear" } };