Tip: How to use ajax to get extra info for tooltip

We need extra info to show when moving cursor to point.

Javascipts:

	formatter: function() {
		var rV = null;
		$.ajax({
		  dataType: "json",
		  url: ‘getDetail.php?tester=‘+this.series.name,
		  async: false, // this will stall the tooltip
		  success: function(data){
			rV = data.tester;
		  }
		});
		return rV;
	 }

PHP:

<?php
header("Content-type: text/json");

$items[‘tester‘]=$tester.‘ABCDEFG‘;
print json_encode($items);
?>

  

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。