Index   <<First   <Prev   Next>   End>>
sample3 : How to read CSV file and make a 2D time-series plotting Graph window?
Sorry. Document is not written for the sample XML file Now!
XML elements: plotter
Download Source:sample3.zip,sample3.tgz Download Demo:sample3.wmv

XML source code

1: <?xml version="1.0" encoding="UTF-8"?>
2:
3:
4: <!DOCTYPE test SYSTEM "GonVisTool.dtd">
5:
6: <test>
7:
8: <tableFile file="sample.csv">
9: <placeName id="data1" name="data1" />
10: <placeName id="data2" name="data2" />
11: </tableFile>
12:
13: <plotter title="2D time-series Plot"
14: xLabel="Time"
15: yLabel="Number of Tokens"
16: legendPosition="0.7 0.8"
17: backColor="1 1 1"
18: axesColor="0 0 0"
19: lineWidth="1"
20: pointSize="3"
21: >
22: <plotSeries event="data1" label="Data1" color="1 0 0" />
23: <plotSeries event="data2" label="Data2" color="0 0 1" />
24: </plotter>
25: </test>
26:
27:
28: