How can I have a graph series being updated in real time using AJAX ?
Although I have no any answer until now I am suspecting that the code below is related to the behaviour I am trying to make
<?php echo KoolScripting::Start();?>
<updatepanel id="chart_panel">
<content>
<?php
if(count($_series_items)>0)
{
echo $chart->Render();
}
?>
</content>
<loading image="<?php echo $KoolControlsFolder;?>/KoolAjax/loading/5.gif"/>
</updatepanel>
<?php echo KoolScripting::End();?>
I have never used KoolScripting nor updatepanel and content tags. Can somebody tell me how it works ? I have already seen the Chart example on the Demo area.
Are theese tags present on the html document ? How the browser deal with them ?