data_node class
Displays and edits of a data node.
Methods¶
__init__() ¶
__init__(
data_node=None,
show_data=True,
show_properties=True,
show_history=True,
active=True,
expandable=True,
expanded=True,
show_config=False,
show_owner=True,
show_owner_label=False,
show_custom_properties=True,
show_edit_date=False,
show_expiration_date=False,
chart_config=None,
scenario=None,
id=None,
class_name=None,
) -> None
Create a new data_node
element.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
Union[DataNode,list[DataNode]]
|
The data node to display and edit. |
None
|
|
bool
|
If False, the data node value tab is not visible. |
True
|
|
bool
|
If False, the data node properties tab is not visible. |
True
|
|
bool
|
If False, the data node history tab is not visible. |
True
|
|
bool
|
Indicates if this component is active. |
True
|
|
bool
|
If True, the data node viewer can be expanded. |
True
|
|
bool
|
If True, when a valid data node is selected, the data node viewer is expanded and its content is displayed. |
True
|
|
bool
|
If False, the data node configuration label is not visible. |
False
|
|
bool
|
If False, the data node owner label is not visible. |
True
|
|
bool
|
If True, the data node owner label is added to the data node label at the top of the block. |
False
|
|
bool
|
If False, the custom properties for this data node properties are not visible in the Properties tab. |
True
|
|
bool
|
If False, the data node edition date is not visible. |
False
|
|
bool
|
If False, the data node expiration date is not visible. |
False
|
|
dict
|
Chart configs by data node configuration id. |
None
|
|
Scenario
|
A variable bound to this property is set to the selected |
None
|
|
str
|
The identifier that will be assigned to the rendered HTML component. |
None
|
|
str
|
The list of CSS class names associated with the generated HTML Element. |
None
|