<chart>

	<!-- This file defines the bar chart that shows the actual-to-budget variance for each department -->

	<!-- Define the chart type -->	
	<chart-type>BarChart</chart-type>

	<!-- Specify the title of the chart -->
	<title></title>

	<!-- Specify the location of the title -->
	<title-position>TOP</title-position>

	<!-- Specify the font of the title -->
	<title-font>
		<font-family>Ariel</font-family>
		<size>14</size>
		<is-bold>true</is-bold>
		<is-italic>false</is-italic>
	</title-font>
    <range-title></range-title>
	<domain-label-rotation>0</domain-label-rotation>
	<domain-label-rotation-dir></domain-label-rotation-dir>
	<domain-title></domain-title>
	<chart-background type="color">#FFFFFF</chart-background>
	<plot-background type="color">#EEEEEE</plot-background>
		<!-- Specify the orientation of the bars -->
	<orientation>horizontal</orientation>

	<!-- Specify the 3D-ness of the bars -->
	<is-3D>false</is-3D>

	<!-- Specify if the bars are stacked -->
	<is-stacked>false</is-stacked>

	<!-- Specify if the chart has a border and the border color -->
	<border-visible>false</border-visible>
	<border-paint>#808080</border-paint>

	<!-- Specify is the chart legend should be shown -->
	<include-legend>false</include-legend>

	<!-- Specify the color palette for the chart -->
	<color-palette>
		<color>#ee7733</color>
		<color>#9EAA36</color>
		<color>#BF0000</color>
		<color>#FCCF12</color>
		<color>#772200</color>
		<color>#ddcc88</color>
		<color>#123D82</color>
		<color>#4A0866</color>
		<color>#445500</color>
		<color>#FFAA00</color>
		<color>#1E8AD3</color>
		<color>#AA6611</color>
		<color>#772200</color>
	</color-palette>

	<!-- Specify where the data for the chart comes from -->
	<data>
		<!-- Specify the path to the action sequence that provides the data -->
		<data-solution>samples/steel-wheels</data-solution>
		<data-path>homeDashboard</data-path>
		<data-action>topnmdxquery.xaction</data-action>

		<!-- Specify the output of the action sequence that contains the data -->
		<data-output>swresult</data-output>
		
		<!-- Specify whether to get the chart series from the rows or columns -->
		<data-orientation>columns</data-orientation>
	</data>	
		
</chart>