public class IlvGrid
extends java.lang.Object
#setDrawOrder
method, which lets you specify whether the grid must be drawn above or below
the chart representations.
chartGrid {
class : "ilog.views.chart.IlvGrid";
drawOrder : "2";
majorLineVisible : "false";
majorPaint : "#000000";
majorStroke : "@#stroke";
minorLineVisible : "false";
minorPaint : "#000000";
minorStroke : "@#stroke";
visible : "false";
}
Modifier and Type | Property and Description |
---|---|
java.lang.String |
class
Creates a new grid that displays only major grid lines, with the default color. |
int |
drawOrder
Sets the drawing order of this grid. |
boolean |
majorLineVisible
Toggles the visibility of major grid lines. |
Paint |
majorPaint
Sets the paint used to draw major grid lines. |
Stroke |
majorStroke
Sets the stroke used to draw major grid lines. |
boolean |
minorLineVisible
Toggles the visibility of minor grid lines. |
Paint |
minorPaint
Sets the paint used to draw minor grid lines. |
Stroke |
minorStroke
Sets the stroke used to draw minor grid lines. |
boolean |
visible
Toggles the visibility of both major an minor grid lines. |
public java.lang.String class
IlvChart.DRAW_BELOW
.
class : "ilog.views.chart.IlvGrid";
public int drawOrder
IlvChart#DRAW_BELOW
.
drawOrder : "2";
public boolean majorLineVisible
majorLineVisible : "false";
public Paint majorPaint
majorPaint : "#000000";
public Stroke majorStroke
majorStroke : "@#stroke";
BasicStroke
for an example of implementing a majorStroke.public boolean minorLineVisible
minorLineVisible : "false";
public Paint minorPaint
minorPaint : "#000000";
public Stroke minorStroke
minorStroke : "@#stroke";
BasicStroke
for an example of implementing a minorStroke.public boolean visible
visible : "false";
© Copyright 2024 Rogue Wave Software, Inc., a Perforce company.. All Rights Reserved.