visible
Specifies the visibility of the component. This property can be used to dynamically hide elements in a Viewsheet.
Type
Boolean true: display the component
false: hide the component
Example
if (Gauge1.value > 200) {
Text1.text = 'Too high!';
Text1.visible = true;
}
else if (Gauge1.value < 50) {
Text1.text = 'Too low!';
Text1.visible = true;
}
else {
Text1.visible = false;
}
See Also
General Tab, in Dashboard Design, for more information on visibility.
| << title | © 1996-2013 InetSoft Technology Corporation (v11.4) | wrapping >> |