infoboard (gauge); label - line break
- February 1, 2021
- 1 reply
- 3103 views
Hi everyone,
i want to make kind of a infoboard (see attached picture), where i see the step names of my sequence and below an additional info-text.
I started to make a gauge with this image

and added the step-names of my sequence to this gauge by this code:
var labelId = "gauge_steps";
$scope.$on('newStep', function(evt, arg) {
$scope.setWidgetProp( labelId, "text", arg);
});
This works fine and my stepnames are shown in the top-left of my gauge-image.
Now i want to add some additional info text under the stepnames. I was thinking about just placing a 3D-label and controlling the text with the steps of my sequence.
How do I make a line break in a label to add more infotext and how do I align the text to the left?
The reason I added so much information for this simple question was, because I am also wondering if there is another (more elegant) way to make such an "infoboard".
Thanks for any kind of help!

