I have created a chart using jquery and I placed the div tag in the update panel. And whenever the panel is updating the chart is disappeared. My code
$(document).ready(function () {
$("#test-circle").circliful({
animation: 1,
animationStep: 5,
animateInView: true,
foregroundBorderWidth: 15,
backgroundBorderWidth: 15,
percent: document.getElementById("<% =lbl.ClientID%>").innerHTML,
text: document.getElementById("<% =lbl.ClientID%>").innerHTML+'%',
textSize: 28,
textStyle: 'font-size: 12px;',
textColor: '#fff',
});
});
Now, what should I want to do???