Parameters can be used as a placeholder inside a text string : the placeholder is replaced dynamically by the Parameter’s value.
Syntax
${parametername}
will be replaced in-place by the values of the Parameter called “parametername”.
Example :
The high limit is ${parametername} minutes.
will get replaced at runtime by :
The high limit is 123 minutes.
Multiple values
Parameters that return multiple values will return them separated with commas.
So that you can write :
The date interval is ${multiDateParameter} for this Dashboard.
and it may get replaced at runtime by :
The date interval is 2020-08-26T14:50:35,2020-08-26T15:50:35 for this Dashboard.
Usage
Label Parameters can be used to replace static text in :
- the Label widget
- any widget Header
Last modified:
Aug 26, 2020
Post your comment on this topic.