I'm currently working on a project where I am using AngularJS and SVG to plot circles on a page. My goal is to have a tooltip appear when a user hovers over one of the circles. I came across an explanation on how to achieve this on this website, but unfortunately, it's not working for me. Below is the code I'm using:
<circle ng-repeat="node in slowQueriesCtrl.nodes"
ng-attr-cx="{{node.x}}"
ng-attr-cy="{{node.y}}"
ng-attr-r= "{{node.r}}"
tooltip="Hello World"
tooltip-append-to-body="true"
tooltip-placement="right"
stroke="green"
stroke-width="3"
fill="green">
</circle>
While I can see the circles displaying on the UI, the tooltips are not showing up. Any assistance or guidance on this issue would be highly appreciated.