Helperline Feature - deactivate edge helper lines and only activate center helper lines #1250
-
After a lot of testing with the new helper line feature (which is really great) I came to a point where I recognize that for complex BPMN models it is easier align elements to the center-line only and not the additional edge helper lines? Is there any way to deactivate the edge helper lines? |
Beta Was this translation helpful? Give feedback.
Answered by
martin-fleck-at
Feb 15, 2024
Replies: 1 comment 1 reply
-
Yeah, showing all lines may be overkill for certain use cases, so we made the helper line types configurable through the container.bind<IHelperLineOptions>(TYPES.IHelperLineOptions).toConstantValue({
elementLines: [HelperLineType.Center, HelperLineType.Middle], // only show center and middle lines
viewportLines: [] // do not show alignment lines for viewport
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rsoika
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yeah, showing all lines may be overkill for certain use cases, so we made the helper line types configurable through the
IHelperLineOptions
. You probably need something like this.