I want to have a md-tooltip on SVG elements. I have tried to following structures:
<svg>
...
<g>
<path></path>
<md-tooltip></md-tooltip>
</g>
...
</svg>
and
<svg>
...
<g>
<path>
<md-tooltip></md-tooltip>
</path>
</g>
...
</svg>
However, both dont seem to work. For the first one, I can see that the md-tooltip is appended to the body of the page, which seems to be the way the directive works, so that is fine, however, it is nowhere to be seen.
solution in Adding md-tooltip to a SVG chart? does not seem to work..