m_total.setPreferredSize(new Dimension(500,20));
m_total.setHorizontalAlignment(SwingConstants.RIGHT);
m_total.setVerticalAlignment(SwingConstants.BOTTOM);
ToolTipControl ttc = new ToolTipControl("label");
Control hoverc = new ControlAdapter() {
public void itemEntered(VisualItem item, MouseEvent evt) {
if ( item.isInGroup(group) ) {
m_total.setText(item.getString("label"));
item.setFillColor(item.getStrokeColor());