Modify the Label from markupsNode

Hi to everyone! A quick one for today:

Is possible to edit the blue text?

To my current work I don’t want to show the height: 2.000 mm

Thanks to all :slight_smile:

You can do that in the ‘Measurement’ collapsible pane of the Markups module’s widget.

Hi @chir.set . Can you provide an example? Or more detailed explanation?
(I want to do that using Python code)
Thanks for the quick answer

This should be straightforward:

cylinder = getNode("SH")
heightMeasurement = cylinder.GetMeasurement("height")
heightMeasurement.SetEnabled(False)