Don't render Textblock when binding is an empty string or null

The large font is a binded “title” and the green box is a binded “label”.

Sometimes the label is not set so I don’t want to render that green Textblock at all.

image

{ visible: false },  // default is not visible
new go.Binding("visible", "theStringProp", s => !!s)

Perfect, thank you!