<?xml version="1.0"?>
<mugl>
	<plotarea marginleft="50" marginbottom="45"/>
    <horizontalaxis id="xaxis" min="1" max="10">
    	<title>Location Identifier</title>
    </horizontalaxis> 
    <verticalaxis   id="yaxis" min="0"   max="400">
      <title position="-50 0" anchor="0 1" angle="90">Popluation Density (in thousands)</title>
      <pan min="0" max="500"/>
      <zoom anchor="0"/>
      <grid visible="true"/>
    </verticalaxis>
    <plot>
      <horizontalaxis ref="xaxis"/>
      <verticalaxis ref="yaxis">
      	<variable ref="population"/>
      	<variable ref="error"/>
      </verticalaxis>
      <renderer type="barerror">
        <option name="linecolor" value="black"/>
        <option name="fillcolor" value="0x2B60DE"/>
        <option name="barwidth"  value="0.9"/>
        <option name="baroffset" value="0.5"/>
        <option name="fillopacity" value="0.4"/>
      </renderer>
    </plot>

    <data>
      <variables>
        <variable id="counter" column="0" type="number"/>
        <variable id="population" column="1"/>
        <variable id="error" column="2"/>
      </variables>
      <csv location="randomdata.csv"/>
    </data>
</mugl>