visible property

bool visible
inherited

the visibility of the element

Implementation

bool get visible=>_visible;
void visible=(bool value)
inherited

Implementation

set visible(bool value){
  _visible=value;
  _sendData('setDrawElementVisible',{'visible':value});
}