* Paint the label over the center of the tracker handle (commonly known as thumb)
*/
private void paintHorizontalLabel(Graphics g, int value) {
Rectangle bounds = getBounds();
Polygon poly = painter.getSteeringWheelHandle((int)Math.rint(bounds.getWidth()), castValue(value));
poly.translate(bounds.x, bounds.y);
Rectangle rect = poly.getBounds();
Label label = new Label(metric);
label.setText(getItem(value));
label.setFont(getFont());
paintLabelAt(g, label, rect);