<?xml version="1.0"?>
<mugl>
  <legend base="0 1" anchor="0 1" rows="1" border="0">
    <icon border="0"/>
  </legend>
    <horizontalaxis id="year" min="1950" max="2000"> 
      <pan min="1880" max="2010"/>
    </horizontalaxis>
    <verticalaxis   id="T" min="-1"   max="1">
      <labels format="%.1f"/>
    </verticalaxis>
    <plot>
      <legend label="Arctic Sea Ice Extent"/>
      <horizontalaxis ref="year"><variable ref="yearI"/></horizontalaxis>
      <verticalaxis ref="T"><variable ref="I"/></verticalaxis>
      <renderer type="bar">
        <option name="linecolor" value="black"/>
        <option name="linethickness" value="1"/>
        <option name="fillcolor" value="red"/>
        <option name="downfillcolor" value="blue"/>
        <option name="barwidth"  value="1.0"/>
        <option name="baroffset" value="0.5"/>
        <option name="barbase"   value="0.0"/>
      </renderer>
    </plot>
    <plot>
      <legend label="Temperature Anomaly"/>
      <horizontalaxis ref="year"><variable ref="year"/></horizontalaxis>
      <verticalaxis ref="T"><variable ref="T"/></verticalaxis>
      <renderer type="line">
        <option name="linecolor" value="black"/>
      </renderer>
    </plot>
    <data>
      <variables>
        <variable id="year"/>
        <variable id="T"/>
      </variables>
      <csv location="YearlyTempAnomaly.csv"/>
    </data>
    <data>
      <variables>
        <variable id="yearI"/>
        <variable id="I"/>
      </variables>
      <csv location="YearlyArticIce.csv"/>
    </data>
</mugl>