Wiki source code of Chart
Last modified by Andrey Che on 2018/12/10 14:09
Hide last authors
1.1 | 1 | {{box cssClass="floatinginfobox"}} | |
2 | {{toc start="2" /}} | ||
3 | {{/box}} | ||
4 | |||
5 | **Chart Macro** displays graphical charts generated from miscellaneous data sources. [[Learn more>>http://extensions.xwiki.org/xwiki/bin/view/Extension/Chart+Macro]] | ||
6 | |||
7 | == Pie Chart == | ||
8 | |||
9 | === Example 1 === | ||
10 | {{example}} | ||
11 | {{chart type="pie" source="inline" params="range:B2-D5;series:columns;" title="Pie Chart" width="320" height="240"}} | ||
12 | |=|=X|=Y|=Z | ||
13 | |Q1|1.2|3.4|1.3 | ||
14 | |Q2|4.5|3.4|2.3 | ||
15 | |Q3|1.2|4.5|9.0 | ||
16 | |Q4|3.4|1.2|1.2 | ||
17 | {{/chart}} | ||
18 | {{/example}} | ||
19 | |||
20 | === Example 2 === | ||
21 | {{example}} | ||
22 | {{chart type="pie" source="inline" params="range:B2-D5;series:columns;colors:d9534f,f0ad4e,337ab7,5cb85c;backgroundColor:FFFFFF;" title="Pie Chart"}} | ||
23 | |=|=X|=Y|=Z | ||
24 | |Chrome|32|56|7 | ||
25 | |Firefox|45|12|9 | ||
26 | |Safari|12|45|0 | ||
27 | |IE|6|46|2 | ||
28 | {{/chart}} | ||
29 | {{/example}} | ||
30 | |||
31 | == Bar Chart == | ||
32 | |||
33 | {{example}} | ||
34 | {{chart type="bar" source="inline" params="range:B2-D5;series:columns;colors:C3E3F7,1D9FF5,015891,012A45;backgroundColor:FFFFFF;" title="Bar Chart"}} | ||
35 | |=|=New Visitors|=Returning Visitors|=All Visitors | ||
36 | |January|1.2|3.4|1.3 | ||
37 | |February|4.5|3.4|2.3 | ||
38 | |March|1.2|4.5|9.0 | ||
39 | |April|3.4|1.2|1.2 | ||
40 | {{/chart}} | ||
41 | |||
42 | {{/example}} | ||
43 | |||
44 | == Time Series Chart == | ||
45 | |||
46 | {{example}} | ||
47 | {{chart type="xy_line_and_shape" params="range:B2-C19;dataset:timetable_xy;domain_axis_type:date;domain_axis_date_format:MMM-yyyy;date_format:yyyy-MM;time_period:month;range_axis_lower:100;range_axis_upper:190" title="Time Series Chart"}} | ||
48 | |=|=Series1|=Series2 | ||
49 | |2001-2|181.8|129.6 | ||
50 | |2001-3|167.3|123.2 | ||
51 | |2001-4|153.8|117.2 | ||
52 | |2001-5|167.6|124.1 | ||
53 | |2001-6|158.8|122.6 | ||
54 | |2001-7|148.3|119.2 | ||
55 | |2001-8|153.9|116.5 | ||
56 | |2001-9|142.7|112.7 | ||
57 | |2001-10|123.2|101.5 | ||
58 | |2001-11|131.8|106.1 | ||
59 | |2001-12|139.6|110.3 | ||
60 | |2002-1|142.9|111.7 | ||
61 | |2002-2|138.7|111.0 | ||
62 | |2002-3|137.3|109.6 | ||
63 | |2002-4|143.9|113.2 | ||
64 | |2002-5|139.8|111.6 | ||
65 | |2002-6|137.0|108.8 | ||
66 | |2002-7|132.8|101.6 | ||
67 | {{/chart}} | ||
68 | {{/example}} |