New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

Tooltips not updated with AJAX in Webkit browsers

RadChart has been deprecated since Q3 2014 and is no longer recommended for use, as it does not support modern browsers. We strongly recommend using RadHtmlChart, Telerik's modern client-side charting component. To transition from RadChart to RadHtmlChart, refer to the following migration articles:

Explore the RadHtmlChart documentation and online demos to determine how it fits your development needs.

The Webkit based browsers (Safari, Chrome) do not update correctly image maps with ASP.NET AJAX. As RadChart takes advantage of image maps to implement its tooltips, it suffers the same issue when updated with AJAX (ASP.NET AJAX or RadAjax). To fix this you will need to add a small client script to rename the corresponding map and set the chart image to use it:

XML
<script type="text/javascript">
   function pageLoad()
   {
	   var img = document.getElementById("<%=RadChart1.ClientID %>").getElementsByTagName("img")[0];
	   var map;
	   if (img)
		   map = document.getElementById(img.useMap.substring(1));
	   if (img && map)
	   {
		   img.useMap = '';
		   map.name = (new Date()).getTime();
		   map.id = map.name;
		   img.useMap = '#' + map.name;
	   }
   }
</script> 	
Not finding the help you need?
Contact Support