<?xml version="1.0" encoding="UTF-8"?>
<anychart>
<templates path="templates.xml"/>
	<charts>
		<!-- Set plot_type to display chart as Doughnut-->
		<chart plot_type="Doughnut" template="Template Background">
			<data>
				<!-- One data series to show pubs revenue -->			
				<series>
					<point name = "Nevada Cocktail Lounge" y="4.173"/>		
					<point name = "Washington Highway Pub" y="3.77"/>			
					<point name = "Florida Beer Restaurant" y="3.5"/>
					<point name = "Texas SteakHouse" y="4.14"/>
					<point name = "Georgia Ale House" y="1.675"/>						
				</series>
			</data>
			<data_plot_settings>
				<pie_series style="Aqua">
					<!-- Enable tooltips and set them to show revenue, percentage and pub name -->
					<tooltip_settings enabled="true">
						<format>{%Name} / ${%YValue}{numDecimals:2} mil. / {%YPercentOfSeries}{numDecimals:2}%</format>					
					</tooltip_settings>			
					<!-- Enable labels and set them to show percentage -->							
					<label_settings enabled="true" mode="inside">
						<position anchor="Center" valign="Center" halign="Center"/>
						<background enabled="false"/>
						<font color="White">
							<effects enabled="True">
								<drop_shadow enabled="True"/>
							</effects>
						</font>
						<format>{%YPercentOfSeries}</format>
					</label_settings>
				</pie_series>		
			</data_plot_settings>	
			<chart_settings>
				<!-- Set chart title text -->
				<title><text>Pubs Revenue Ratio</text></title>
				<!-- enable legend to show data points -->
				<legend enabled="True" ignore_auto_item="True">
					<title enabled="false"/>
					<items>
						<item source="Points"/>
					</items>
				</legend>
				
			</chart_settings>
		</chart>
	</charts>
</anychart>
