clickable property
if true the element will be clickable and listen to mouse event. Default true.
Implementation
bool get clickable=>_clickable;
Implementation
set clickable(bool value){
_clickable=value;
_sendData('setDrawElementClickable', {'clickable':value});
}