JIDE 3.5.15

com.jidesoft.chart
Interface Frontable

All Known Implementing Classes:
DifferenceMarker, IntervalMarker, Legend, LineMarker, RectangularRegionMarker, SingleImageLazyChartRenderer

public interface Frontable

Drawables can be painted behind the chart models of a Chart or in front of them. If a Drawable object implements this interface then it can also specify whether it should be behind or at the front.

See Also:
Drawable

Method Summary
 boolean isAtFront()
          Whether the object is to drawn at the front (i.e.
 void setAtFront(boolean atFront)
          Specify whether the object should be drawn at the front: setAtFront(true) is like a toFront() request, but conforms to the JavaBean property pattern.
 

Method Detail

isAtFront

boolean isAtFront()
Whether the object is to drawn at the front (i.e. in front of ChartModels)

Returns:
true if the object is to be drawn at the front; false if to be drawn at the back

setAtFront

void setAtFront(boolean atFront)
Specify whether the object should be drawn at the front: setAtFront(true) is like a toFront() request, but conforms to the JavaBean property pattern. Similarly, to send an object to the back, call setAtFront(false).

Parameters:
atFront - whether the object is to be shown in front of ChartModels.

JIDE 3.5.15