com.nchart3d.NChart.NChartAxisGrid Class Reference

The NChartAxisGrid class provides storage for grid lines associated with the particular chart's axis. More...

Inheritance diagram for com.nchart3d.NChart.NChartAxisGrid:
com.nchart3d.NChart.NChartObject

Public Member Functions

float getThickness ()
 Thickness of grid lines. More...
 
void setThickness (float thickness)
 For details see getThickness().
 
int getColor ()
 Color of grid lines. More...
 
void setColor (int color)
 For details see getColor().
 
NChartLineDash getLineDash ()
 Dash of the grid lines. More...
 
void setLineDash (NChartLineDash lineDash)
 For details see getLineDash().
 
NChartAxisGridLines getMajorGridLines ()
 Grid lines of the major ticks.
 
NChartAxisGridLines getMinorGridLines ()
 Grid lines of the minor ticks.
 
NChartAxisGridLines getTinyGridLines ()
 Grid lines of the tiny ticks.
 
NChartBrush[] getInterlacedBackground ()
 Array of brushes for interlaced background. More...
 
void setInterlacedBackground (NChartBrush[] interlacedBackground)
 For details see getInterlacedBackground().
 
- Public Member Functions inherited from com.nchart3d.NChart.NChartObject
boolean isVisible ()
 Flag that determines if the object is visible or not. More...
 
void setVisible (boolean visible)
 For details see isVisible().
 
NChart getChart ()
 Chart the object belongs to. More...
 

Detailed Description

The NChartAxisGrid class provides storage for grid lines associated with the particular chart's axis.

Member Function Documentation

int com.nchart3d.NChart.NChartAxisGrid.getColor ( )
inline

Color of grid lines.

If you set a color value to this property, this value is set to all grid lines (majorGridLines, minorGridLines and tinyGridLines). If you read a value of this property, color of majorGridLines is returned.

NChartBrush [] com.nchart3d.NChart.NChartAxisGrid.getInterlacedBackground ( )
inline

Array of brushes for interlaced background.

If null, no interlaced background is displayed. The default value is null. Interlaced background means that the space between axis grid lines is filled with the colors that are consecutively taken from this array. The array is looped, so if there are less elements then spaces between grid lines, the sequence of colors is multiplied. The elements of the array should be objects NChartSolidColorBrush. Only NChartSolidColorBrush is supported, all other brushes (or other objects will be skipped).

NChartLineDash com.nchart3d.NChart.NChartAxisGrid.getLineDash ( )
inline

Dash of the grid lines.

If you set a dash value to this property, this value is set to all grid lines (majorGridLines, minorGridLines and tinyGridLines). If you read a value of this property, thickness of majorGridLines is returned.

float com.nchart3d.NChart.NChartAxisGrid.getThickness ( )
inline

Thickness of grid lines.

If you set a thickness value to this property, this value is set to all grid lines (majorGridLines, minorGridLines and tinyGridLines). If you read a value of this property, thickness of majorGridLines is returned.