I have designing a progress bar, around which I need to show a gradient glow. I am using linear gradient something like this:
<linearGradient id="settingsProgressBarInnerGlow" x1="50%" y1="0%" x2="50%" y2="100%">
<stop stop-color="#ffffff" offset="0" stop-opacity="0"/>
<stop stop-color="#ffffff" offset="0.2" stop-opacity="0.1"/>
<stop stop-color="#E6F7FC" offset="0.5" stop-opacity="0.4"/>
<stop stop-color="#ffffff" offset="0.8" stop-opacity="0.1"/>
<stop stop-color="#ffffff" offset="1" stop-opacity="0"/>
</linearGradient>
But this is giving me gradient something like this.
I want the gradient all round the bar like this.
Can someone help me with best answers?