01 <?xml version="1.0" encoding="UTF-8"?>
02 <anychart>
03   <charts>
04     <chart>
05       <styles>
06         <tooltip_style name="Vista">
07           <background enabled="true">
08             <fill type="Gradient" opacity="1">
09               <gradient angle="90">
10                 <key position="0" color="#FFFFFF" opacity="1" />
11                 <key position="0.5" color="#F3F4F8" opacity="1" />
12                 <key position="1" color="#E4E5F0" opacity="1" />
13               </gradient>
14             </fill>
15             <border type="Solid" color="#767676" thickness="2" opacity="0.8" />
16             <corners type="Rounded" all="5" />
17             <effects>
18               <bevel enabled="true" highlight_opacity="0.2" shadow_opacity="0.2" />
19             </effects>
20             <inside_margin all="16" top="8" bottom="8" />
21           </background>
22           <font color="#373737" bold="false" italic="false">
23             <effects>
24               <drop_shadow enabled="true" distance="1" blur_x="2" blur_y="2" opacity="0.1" />
25             </effects>
26           </font>
27           <format><![CDATA[Tooltip is a small windows (often yellow)
28 that pops up beside the mouse pointer
29 to describe what that item does.
30 ]]></format>
31         </tooltip_style>
32         <tooltip_style name="Heritage1" parent="Vista">
33           <background>
34             <border color="Red" />
35           </background>
36         </tooltip_style>
37         <tooltip_style name="Heritage2" parent="Vista">
38           <background>
39             <border color="RGB(0,255,0)" />
40           </background>
41         </tooltip_style>
42         <tooltip_style name="Heritage3" parent="Vista">
43           <background>
44             <border color="Yellow" />
45           </background>
46         </tooltip_style>
47       </styles>
48       <data_plot_settings>
49         <bar_series>
50           <tooltip_settings enabled="true" style="Vista" />
51         </bar_series>
52       </data_plot_settings>
53       <chart_settings>
54         <title enabled="False" />
55       </chart_settings>
56       <data>
57         <series>
58           <point name="A" y="10" />
59           <point name="B" y="20">
60             <tooltip style="Heritage1" />
61           </point>
62           <point name="C" y="30">
63             <tooltip style="Heritage2" />
64           </point>
65           <point name="D" y="10">
66             <tooltip style="Heritage3" />
67           </point>
68         </series>
69       </data>
70     </chart>
71   </charts>
72 </anychart>