01 |
<?xml version="1.0" encoding="UTF-8"?> |
02 |
<anychart> |
03 |
<settings> |
04 |
<animation enabled="True" /> |
05 |
</settings> |
06 |
<charts> |
07 |
<chart plot_type="Scatter"> |
08 |
<chart_settings> |
09 |
<title> |
10 |
<text><![CDATA[Scatter Plot: Combination of Line, Spline, Bubble and Marker Charts]]></text> |
11 |
</title> |
12 |
</chart_settings> |
13 |
<data_plot_settings> |
14 |
<marker_series> |
15 |
<marker_style> |
16 |
<marker type="Star5" size="14" /> |
17 |
<states> |
18 |
<hover> |
19 |
<marker size="20" /> |
20 |
</hover> |
21 |
</states> |
22 |
</marker_style> |
23 |
<tooltip_settings enabled="true"> |
24 |
<format><![CDATA[ |
25 |
Series: {%SeriesName} |
26 |
X: {%XValue} |
27 |
Y: {%YValue} |
28 |
]]></format> |
29 |
</tooltip_settings> |
30 |
</marker_series> |
31 |
<bubble_series> |
32 |
<tooltip_settings enabled="true"> |
33 |
<format><![CDATA[ |
34 |
Series: {%SeriesName} |
35 |
X: {%XValue} |
36 |
Y: {%YValue} |
37 |
Bubble Size: {%BubbleSize} |
38 |
]]></format> |
39 |
</tooltip_settings> |
40 |
<bubble_style> |
41 |
<fill opacity="0.8" /> |
42 |
<states> |
43 |
<hover> |
44 |
<border thickness="2" /> |
45 |
<fill color="LightColor(%Color)" /> |
46 |
</hover> |
47 |
</states> |
48 |
</bubble_style> |
49 |
</bubble_series> |
50 |
<line_series> |
51 |
<tooltip_settings enabled="true"> |
52 |
<format><![CDATA[ |
53 |
Series: {%SeriesName} |
54 |
X: {%XValue} |
55 |
Y: {%YValue} |
56 |
]]></format> |
57 |
</tooltip_settings> |
58 |
</line_series> |
59 |
</data_plot_settings> |
60 |
<data> |
61 |
<series name="Sample Bubble" type="Bubble"> |
62 |
<point x="10.1" y="1864.4" size="3" /> |
63 |
<point x="45.7" y="1334.2" size="3.5" /> |
64 |
<point x="23.5" y="1556.6" size="3.1" /> |
65 |
<point x="66.4" y="1687.7" size="3.2" /> |
66 |
<point x="122.1" y="1112.2" size="4.01" /> |
67 |
<point x="76.2" y="1975.8" size="3.56" /> |
68 |
<point x="54.7" y="1786.9" size="3.12" /> |
69 |
<point x="45.9" y="1377.3" size="3.44" /> |
70 |
<point x="98.4" y="1299.1" size="3.76" /> |
71 |
<point x="65.6" y="1855.7" size="3.99" /> |
72 |
</series> |
73 |
<series name="Sample Marker" type="Marker"> |
74 |
<point x="70.1" y="964.4" /> |
75 |
<point x="25.7" y="834.2" /> |
76 |
<point x="53.5" y="1256.6" /> |
77 |
<point x="66.4" y="1317.7" /> |
78 |
<point x="72.1" y="1112.2" /> |
79 |
<point x="46.2" y="1875.8" /> |
80 |
<point x="94.7" y="1786.9" /> |
81 |
<point x="69.9" y="1377.3" /> |
82 |
<point x="23.4" y="1299.1" /> |
83 |
<point x="85.6" y="1855.7" /> |
84 |
</series> |
85 |
<series name="Sample Spline" type="Spline"> |
86 |
<point x="5" y="700" /> |
87 |
<point x="70" y="400" /> |
88 |
<point x="110" y="2100" /> |
89 |
<point x="138" y="1976" /> |
90 |
</series> |
91 |
<series name="Sample Line" type="Line"> |
92 |
<point x="5" y="1100" /> |
93 |
<point x="138" y="800" /> |
94 |
</series> |
95 |
</data> |
96 |
</chart> |
97 |
</charts> |
98 |
</anychart> |