This topic is locked
[SOLVED]

 anychary autoupdate less < 1m

9/2/2011 9:22:53 AM
PHPRunner General questions
B
bobdansei author

How to make AnyChart auto-update from 10 to 10s?

Sergey Kornilov admin 9/2/2011

Not sure I understand. What's 10 and 10s?

C
cgphp 9/2/2011

AnyChart? Here it is the reference site: http://www.anychart.com
If you need to update a content every 10 seconds, you can use a code like this:



function update_chart(){
$('#carth_id').load('get_new_values.php');

}

setInterval( "update_chart()", 10000 );
B
bobdansei author 9/2/2011



AnyChart? Here it is the reference site: http://www.anychart.com
If you need to update a content every 10 seconds, you can use a code like this:



function update_chart(){
$('#carth_id').load('get_new_values.php');

}

setInterval( "update_chart()", 10000 );



TNSK GREAT!!!!