Data File specification

The Data File contains the data for chart building. The Data File may be a static file or dynamically builded by script (PHP, ASP, Perl, etc.), located on web-server. The structure of a file reminds the table.

Data File structure:

&tTText=Chart Title
&tBText=Chart Bottom Comment
&tLText=Left Comment
&tRText=Right Comment
&title=                ;Column Name(1); ...  Column Name(M);
&data1=Series Name(1);       Value(11); ...       Value(1M);
...
&dataN=Series Name(N);       Value(N1); ...       Value(NM);

Data File example:

&tTText=Chart Title
&tBText=Chart Bottom Comment
&tLText=Left Comment
&tRText=Right Comment
&title=       ;     January; February; March; April;
&data1=Series1;           4;        6;     7;     8;
&data2=Series2;           5;       10;     8;     9;
&data3=Series3;        10.5;        7;   9.2;     5;
&data4=Series4;           2;        5;     3;     1;

Chart example:

Note: The data file must be created in Windows format. Line-end symbol: (#13#10) (\r\n).

See also
Style file specification
Samples

Back to Contents