![]() |
Sergey Kornilov admin 2/9/2011 |
In PHPRunner you can use 'Autoupdate' feature. The minimum interval is 1 minute (though you can change that in source code). |
S
|
SirMoby author 2/11/2011 |
In PHPRunner you can use 'Autoupdate' feature. The minimum interval is 1 minute (though you can change that in source code). More info: http://xlinesoft.com/phprunner/docs/chart_appearance.htm
|
![]() |
Sergey Kornilov admin 2/11/2011 |
Check include/xtempl.php file. function xt_showchart($params) { $width=700; $height=530; if(array_key_exists("custom1",$params)) $width=$params["custom1"]; if(array_key_exists("custom2",$params)) $height=$params["custom2"]; *$refresh=GetTableData($params["table"],".ChartRefreshTime",10)60000;**
|
S
|
SirMoby author 2/12/2011 |
Check include/xtempl.php file. If you replace 60000 with 1000 it will interpret interval value as seconds.
|