Hello,

I am starting to use GraphET and looks really nice. While learning to script with it, I stumbled upon this script that does not place x-axis label in the correct place. In fact the x-axis label is superimposed on y-axis one. Here's how you can reproduce it:

tmpBrowser := GLMDashboard new.
tmpBrowser addPaneNamed: #first.
tmpBrowser transmit to: #first; andShow: [:a |
a graphET 
title: 'First Chart with ET';
chart: [:chart :mooseModel| 
chart verticalBarDiagram
models: (1 to: 3);
xAxisLabel: 'Test label';
yAxisLabel: 'Another';
regularAxis.
].
].
tmpBrowser openOn: 1