Currently, I am facing an issue with my tooltip appearing under the header nav-bar instead of flipping to another placement like 'left-bottom' when it reaches the header. Is there a way to manually set boundaries for tooltips in ng-bootstrap? Unlike vanilla Bootstrap API, ng-bootstrap API does not seem to have a built-in boundary option.
If you want to learn more about Bootstrap api: visit here
To explore ng-bootstrap api further: check this out
This is how my current code structure looks:
<div triggers="{{ triggers }}" placement="{{ placement }}" ngbTooltip="{{ content }}"></div>
I am considering implementing something like this, but I am open to suggestions:
<div triggers="{{ triggers }}" placement="{{ placement }}" ngbTooltip="{{ content }}" boundary="{{ top: 60px }}"></div>
For reference, my project is currently using these versions:
ng-bootstrap version 8.0.0
Angular version 10.0.5