Bar Plot Style

This example shows how to customize the plot style by using the "bar" renderer, with green bars and black outlines.

Here is the MUGL for this example:

<?xml version="1.0"?>
<mugl>
  <horizontalaxis min="0" max="10"/>
  <verticalaxis   min="0" max="10"/>
  <plot>
    <renderer type="bar">
      <option name="fillcolor"  value="green"/>
      <option name="linecolor" value="black"/>
      <option name="barwidth" value="1"/>
      <option name="baroffset" value="0"/>
    </renderer>
  </plot>
  <data>
    <values>
      0, 3
      1, 2
      2, 4
      3, 5
      4, 3
      5, 6
      6, 7
      7, 8
      8, 5
    </values>
  </data>
</mugl>
Note: this web site is for the old, Flash-based, version of Multigraph. Starting in December 2012, there is a new JavaScript/HTML5 version of Multigraph, which is distributed from the site multigraph.github.io. Future projects should use the new JavaScript/HTML5 version of Multigraph rather than the Flash version described here.