public void setForeground(Color fg) { super.setForeground(fg); if (label != null) { label.setForeground(fg); draw.setForeground(fg); } }
public void setBackground(Color bg) { super.setBackground(bg); if (label != null) { label.setBackground(bg); draw.setBackground(bg); } }
public void setScale(boolean doScale) { draw.setScale(doScale); }
public double getValue() { return (draw.getValue()); }
public void setValue(double v) { draw.setValue(v); }
public void setLevelForeground(Color lfg) { draw.setLevelForeground(lfg); }
public void setLevelBackground(Color lbg) { draw.setLevelBackground(lbg); }