File with the input data (type CSV)

   File with input data can contain the description of one or several charts.
   Statements with chart description can be placed in any order. Only the order of statements D1 and D2 is important. It defines the order of the chart names in the legend, the order of stacked charts, the order of bar chart allocation and overlapping of area charts.
   If input file consist description of one chart, program generates output file at reading of end of input file. If input file consist description of more than one chart, program generates output file at reading of AREA statement (starting with second).
   If in the first AREA statement parameter output file is not coded, this parameter must be omitted in all other AREA statements. In this case program generates one output file with a few charts.
   If in the first AREA statement parameter output file is coded, this parameter must be necessarily coded in all other AREA statements. In this case program will generate so much output files, how many AREA statements are present in input file.
   
EXAMPLES
   
One input file - one chart in the output file

area; 0; 0; 100; 200; white
border...
plot...
X...
Y1...
D1...
D1...
D1...

One input file - three charts in one output file

area; 0; 0; 100; 200; white
border...
plot...
X...
Y1...
D1...
D1...
D1...
area; 110; 0; 100; 200; white
border...
plot...
X...
Y1...
D1...
D1...
D1...
area; 220; 0; 100; 200; white
border...
plot...
X...
Y1...
D1...
D1...
D1...

One input file - three output files with one chart in everyone

area; 0; 0; 100; 200; white; chart1;; M:\output\chart1.htm
border...
plot...
X...
Y1...
D1...
D1...
D1...
area; 0; 0; 100; 200; white; chart2;; M:\output\chart2.htm
border...
plot...
X...
Y1...
D1...
D1...
D1...
area; 0; 0; 100; 200; white; chart3;; M:\output\chart3.htm
border...
plot...
X...
Y1...
D1...
D1...
D1...