Is there a way to wrap text in a Bullet Tooltip without it extending off the screen? When I have long comments (500+ characters) in a field, the tooltip box becomes very large and goes beyond the boundaries of the screen.
const xyBullet = xySeries.bullets.push(new am4charts.CircleBullet());
xyBullet.tooltipText = '[bold]Comments[/]: {Comments}';
In AmCharts 3, I could control the width of the tooltip using BalloonText and setting maxWidth. However, in AmCharts 4, I attempted the following:
xyBullet.tooltip.maxWidth = 300;
Unfortunately, this approach did not resolve the issue.