|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | PROPERTY | DETAIL: PROPERTY | |||||||
ilog.views.chart.IlvStyle
public class IlvStyle
Defines a rendering style that controls the drawings appearance.
Note: Most setters on this class create a new, modified
IlvStyle instance and don't modify the original instance.
These setters are:
setStrokeOn(boolean), setFillOn(boolean),
setStroke(Stroke, Paint), setStroke(Stroke),
setStrokePaint(Paint), setFillPaint(Paint).
But other setters modify the original instance destructively, like
bean property setters generally do. setAbsolutePaint(boolean)
is such a setter.
CSS example:
ilvStyle {
class : "ilog.views.chart.IlvStyle(stroke,strokePaint,fillPaint)";
absolutePaint : "false";
fillPaint : "#000000";
stroke : "@#stroke";
strokePaint : "#000000";
}
| Property Summary | |
|---|---|
boolean |
absolutePaint
When set to false, the style adapts the
TexturePaint or GradientPaint to the bounds of
a shape before it is drawn. |
java.lang.String |
class
Creates a stroked and filled style. |
Paint |
fillPaint
Changes the fill paint of this style. |
Stroke |
stroke
Changes the stroke of this style. |
Paint |
strokePaint
Changes the stroke paint of this style. |
| Property Detail |
|---|
public java.lang.String class
class : "ilog.views.chart.IlvStyle(stroke,strokePaint,fillPaint)";
public boolean absolutePaint
false, the style adapts the
TexturePaint or GradientPaint to the bounds of
a shape before it is drawn. The default value is true.
absolutePaint : "false";
public Paint fillPaint
fillPaint : "#000000";
public Stroke stroke
stroke : "@#stroke";BasicStroke for an example of implementing a stroke.
public Paint strokePaint
strokePaint : "#000000";
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | PROPERTY | DETAIL: PROPERTY | |||||||