Download software to create charts in flash format
Design and animation examples for flash area chart
|
variant 1 of flash area chart |
variant 2 of flash area chart |
| |
|
|
variant 3 of flash area chart |
|
Dynamic flash chart created with Animated Chart software Pro edition
|
The source code of the data.php script:
<? echo "<?xml version='1.0' encoding='UTF-8' standalone='yes'?>" ?>
<Project>
<Data>
<? $count=10;
$min = date("i")+floor(date("s")/6);
?>
<ColCount>3</ColCount>
<RowCount><? echo $count+1; ?></RowCount>
<Item0><? for($i=1;$i<=$count;$i++){
$val = "min$i";
echo "|$val";
}
?></Item0>
<Item1>HELLO<? for($i=1;$i<=$count;$i++){
$val = 10 + 15*sin(($min+$i)*50)*((($min+$i)/7)-floor(($min+$i)/7));
echo "|$val";
}
?></Item1>
<Item2>HELLO<? for($i=1;$i<=$count;$i++){
$val = -10 + 15*cos(($min+$i)*50)*((($min+$i)/7)-floor(($min+$i)/7));
echo "|$val";
}
?></Item2>
</Data>
</Project> |
The output result of the data.php script:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Project>
<Data>
<ColCount>3</ColCount>
<RowCount>11</RowCount>
<Item0>|min1|min2|min3|min4|min5|min6|min7|min8|min9|min10</Item0>
<Item1>HELLO|12.05|14.28|16.23|17.48|17.66|16.51|10|10.00|8.87|6.74</Item1>
<Item2>HELLO|-10.60|-10.09|-8.45|-5.82|-2.51|1.08|-10|-7.85|-5.86|-4.45</Item2>
</Data>
</Project> |
|
Some questions about Animated Chart Pro edition
1. Can you tell me how to use dynamic data with Animated Charts Pro? I am particularly interested in connecting to SQL.
Answer. You should write a script (for example, in ASP) forming the xml file.
Make all needed SQL queries for selecting data and put them to the xml file.
2. I have just purchased and Installed Animated Chart Pro and have
a definite problem trying to access live data sources.
The software only seems to allow me the same data sources
as the standard edition.
I have double checked to make sure I installed the correct file
from the link supplied on the email and the title bar
does say \"Animated Chart Pro\"
Answer. The Flash technology supports loading data from an external file, for
example, the xml format, and Animated Chart uses the same method.
You should do the following in the Animated Chart Pro:
1. Create and customize a chart with any data.
2. "Items" toolbar: choose the "Chart" item.
3. "Inspector" toolbar: set a path to the xml file in the "External Data File" field.
3. The Animated Chart Pro allows live data refreshing ... In some instances I just want it to load an xml file once and not have it refresh after that. How do I stop it refreshing? Setting the 'REFRESH DATA RATE' to zero does not stop it.
Answer. You should set refresh data rate to "infinity" with a big number (for
example, 2 years in secs). |