Index   <<First   <Prev   Next>   End>>
sample10 : How to read time series data on CSV file and assign each time value in the data to the text color of an object?
Sorry. Document is not written for the sample XML file Now!
XML elements: animeSingleObject,animeSingleColor
Download Source:sample10.zip,sample10.tgz Download Demo:sample10.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: </tableFile>
11:
12: <animation title="Sample" backColor="0 0 0">
13: <animeSingleObject position="0 0 0">
14: <animeText height="10" color="1 1 1" >
15: Hello World!
16: </animeText>
17: <animeSingleColor event="data1"
18: baseColor="255 255 0"
19: color="0 1 0"
20: threshold="50"
21: saturation="100"
22: />
23: </animeSingleObject>
24: </animation>
25:
26: <plotter title="2D time-series Plot"
27: xLabel="Time"
28: yLabel="Number of Tokens"
29: legendPosition="0.7 0.8"
30: backColor="1 1 1"
31: axesColor="0 0 0"
32: lineWidth="1"
33: pointSize="3"
34: >
35: <plotSeries event="data1" label="Data1" color="1 0 0" />
36: </plotter>
37:
38: </test>
39:
40:
41: