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>