Is there a way to incorporate tooltips for each bar in a barchart that is created using SVG path elements? Can the bootstrap tooltip be utilized for this purpose...? Below is the SVG path code:
<path class="foreground bar" clip-path="url(#clip 0)" d="M36,100V68h20V100M108,100V29h20V100M180,100V71h20V100M252,100V-4h20V100M324,100V87h20V100"/>
The barchart generated using SVG can be found in the following fiddle: http://jsfiddle.net/mfAc4/6/ ... How do I go about adding tooltips to each individual bar?
Any advice or recommendations would be greatly valued.