toolTip property

dynamic get toolTip

This Adornment or HTMLInfo is shown when the mouse (pointer) stays motionless in the background. The default value is null, which means no tooltip is shown.

Here is a simple example:

 diagram.toolTip =
   $(go.Adornment, "Auto",
     $(go.Shape, { fill: "#CCFFCC" }),
     $(go.TextBlock, { margin: 4 },
       "This diagram lets you control the world.")
   );

Implementation

_i2.dynamic get toolTip => _i4.getProperty(
      this,
      'toolTip',
    );
set toolTip (dynamic value)

Implementation

set toolTip(_i2.dynamic value) {
  _i4.setProperty(
    this,
    'toolTip',
    value,
  );
}