1 | <chart>
|
---|
2 | <!-- Define the chart type -->
|
---|
3 | <chart-type>LineChart</chart-type>
|
---|
4 |
|
---|
5 | <!-- Specify the title of the chart -->
|
---|
6 | <title></title>
|
---|
7 | <title-font>
|
---|
8 | <font-family>Arial</font-family>
|
---|
9 | <size>18</size>
|
---|
10 | <is-bold>true</is-bold>
|
---|
11 | </title-font>
|
---|
12 |
|
---|
13 | <!-- Line Chart properties -->
|
---|
14 | <line-width>2.0</line-width>
|
---|
15 | <dot-style>normal</dot-style> <!-- values: dot, normal, hollow -->
|
---|
16 | <dot-width>3</dot-width>
|
---|
17 |
|
---|
18 | <!-- General Chart Propeties -->
|
---|
19 | <chart-background type="color">#FFFFFF</chart-background>
|
---|
20 | <plot-background type="color">#FFFFFF</plot-background>
|
---|
21 |
|
---|
22 | <!-- X-Axis properties (domain) -->
|
---|
23 | <domain-title>Time</domain-title>
|
---|
24 | <domain-title-font>
|
---|
25 | <font-family>Arial</font-family>
|
---|
26 | <size>14</size>
|
---|
27 | <is-bold>true</is-bold>
|
---|
28 | </domain-title-font>
|
---|
29 | <domain-color>#000000</domain-color> <!-- color of x-axis -->
|
---|
30 | <domain-grid-color>#CCCCCC</domain-grid-color> <!-- color of vertical grid lines -->
|
---|
31 | <domain-stroke>1</domain-stroke> <!-- thickness of x-axis -->
|
---|
32 |
|
---|
33 | <!-- Y-Axis properties (range) -->
|
---|
34 | <range-title>Value</range-title>
|
---|
35 | <range-title-font>
|
---|
36 | <font-family>Arial</font-family>
|
---|
37 | <size>14</size>
|
---|
38 | <is-bold>true</is-bold>
|
---|
39 | </range-title-font>
|
---|
40 | <range-minimum>0</range-minimum> <!-- defines minimum starting point for y-axis range -->
|
---|
41 | <range-maximum>100</range-maximum> <!-- defines maximum ending point for y-axis range -->
|
---|
42 | <range-color>#000000</range-color> <!-- color of y-axis -->
|
---|
43 | <range-grid-color>#CCCCCC</range-grid-color> <!-- color of horizontal grid lines -->
|
---|
44 | <range-stroke>1</range-stroke> <!-- thickness of y-axis -->
|
---|
45 | <range-steps>8</range-steps> <!-- specify number of ticks, defaults to auto-calculated number -->
|
---|
46 |
|
---|
47 | <!-- Specify the color palette for the chart series-->
|
---|
48 | <color-palette>
|
---|
49 | <color>#387179</color>
|
---|
50 | <color>#626638</color>
|
---|
51 | <color>#A8979A</color>
|
---|
52 | <color>#B09A6B</color>
|
---|
53 | <color>#772200</color>
|
---|
54 | <color>#C52F0D</color>
|
---|
55 | <color>#123D82</color>
|
---|
56 | <color>#4A0866</color>
|
---|
57 | <color>#445500</color>
|
---|
58 | <color>#FFAA00</color>
|
---|
59 | <color>#1E8AD3</color>
|
---|
60 | <color>#AA6611</color>
|
---|
61 | <color>#772200</color>
|
---|
62 | </color-palette>
|
---|
63 |
|
---|
64 | </chart>
|
---|
65 |
|
---|