Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


oracle.dss.graph
Class Series

oracle.dss.graph.BaseGraphComponent
  |
  +--oracle.dss.graph.Series

public class Series
extends BaseGraphComponent

The series component of the graph. A series usually represents a dimension member such as "Shoes" or "Boston".


Fields inherited from class oracle.dss.graph.BaseGraphComponent
AL_BOTH, AL_LEFT, AL_RIGHT, AP_ALWAYS, AP_NEVER, AR_HORIZ_ROTATE_270, AR_HORIZ_ROTATE_90, AR_NO_ROTATE, DY2_AUTO_ASSIGN, DY2_FALSE, DY2_TRUE, FS_BOLD, FS_BOLD_ITALIC_UNDERLINE, FS_BOLD_UNDERLINE, FS_ITALIC, FS_ITALIC_BOLD, FS_ITALIC_UNDERLINE, FS_PLAIN, FS_UNDERLINE, FT_COLOR, FT_EXPONENTIAL, FT_GRADIENT, FT_LINEAR, FT_LOGARITHMIC, FT_NONE, FT_TEXTURE, GD_DIAGONAL_135, GD_DIAGONAL_45, GD_DOWN, GD_DOWN_LEFT, GD_DOWN_RIGHT, GD_LEFT, GD_RADIAL, GD_RADIAL_BOTTOM_LEFT, GD_RADIAL_BOTTOM_RIGHT, GD_RADIAL_TOP_LEFT, GD_RADIAL_TOP_RIGHT, GD_RIGHT, GD_UP, GD_UP_LEFT, GD_UP_RIGHT, GS_EXTENDED, GS_GRID, GS_IN, GS_OUT, GS_SPAN, LAP_BOTTOM, LAP_LEFT, LAP_RIGHT, LAP_TOP, LD_PERCENT, LD_TEXT, LD_TEXT_PERCENT, LD_VALUE, LEGENDMARKERSLIMIT, LO_AUTOMATIC, LO_HORIZONTAL, LO_VERTICAL, LP_INSIDE, LP_NO_LABELS, LP_OUTSIDE_WITH_FEELER, LP_OUTSIDE_WITHOUT_FEELER, LTP_ABOVE, LTP_BELOW, LTP_ON_LEFT, LTP_ON_MARKER, LTP_ON_RIGHT, MS_AUTOMATIC, MS_CIRCLE, MS_DIAMOND, MS_NONE, MS_PLUS, MS_SQUARE, MS_TRIANGLE_DOWN, MS_TRIANGLE_UP, MT_AREA, MT_BAR, MT_DEFAULT, MT_MARKER, MTP_CENTER, MTP_CUSTOM, MTP_INSIDE_MAX, MTP_INSIDE_MIN, MTP_ON_MAXEDGE, MTP_OUTSIDE_MAX, QUADRANTLINEVALUELIMIT, TDM_STRETCHED, TDM_TILED, TLS_AUTOMATIC, TLS_MANUAL, TLS_NOSKIP, TR_HORIZ, TR_HORIZ_ROTATE_270, TR_HORIZ_ROTATE_90, VF_STOCK_VOLUME, VF_X1, VF_Y1, VF_Y2, VF_Z

 

Method Summary
 java.awt.Color getBorderColor(int series)
          Retrieves the border color for the markers of the series.
 java.awt.Color getColor(int series)
          Retrieves the fill color for the markers of the series.
 int getDefaultAssignedToY2()
          Retrieves the default axis assignment for series.
 java.awt.Color getDefaultBorderColor()
          Retrieves the default border color for the markers of all series.
 java.awt.Color getDefaultColor()
          Retrieves the default fill color for the markers of series.
 int getDefaultFitlineType()
          Retrieves the default type of fitline for all series.
 int getDefaultLineWidth()
          Retrieves the default width for the data lines of series.
 int getDefaultMarkerShape()
          Retrieves the default shape for the data makers of series.
 int getDefaultMarkerType()
          Retrieves the default type of markers used for series.
 int getFitlineType(int series)
          Retrieves the type of fitline that you want to use for this series, such as exponential, or logarithmic.
 int getLineWidth(int series)
          Retrieves the width for the data lines that belong to the specified series.
 int getMarkerShape(int series)
          Retrieves the shape for the data markers that belong to the series.
 int getMarkerType(int series)
          Retrieves the type of markers used for the series.
 int getPieSliceExplode(int series)
          Retrieves the distance that separates an exploded slice from the rest of the pie in a pie graph or from the rest of the ring in a ring graph.
 SFX getSFX(int series)
          Retrieves the SFX object for the series.
 boolean isAssignedToY2(int series)
          Indicates whether the series of data is plotted against the Y2-axis.
 boolean isBorderTransparent(int series)
          Indicates whether the borders for the markers of the series are transparent.
 boolean isBorderUsingDefaults()
          Indicates whether the marker borders of all of the series in the graph are using the default color and transparency values.
 boolean isDefaultBorderTransparent()
          Indicates whether the borders for the markers of all series are transparent by default.
 boolean isTransparent(int series)
          Indicates whether the fill color for the markers of the series is transparent.
 void setAssignedToY2(boolean yesNo, int series)
          Specifies whether the series of data is plotted against the Y2-axis.
 void setBorderColor(java.awt.Color newColor, int series)
          Specifies the border color for the markers of the series.
 void setBorderTransparent(boolean yesNo, int series)
          Specifies whether the borders for the markers of the series are transparent.
 void setBorderUsingDefaults(boolean yesNo)
          Specifies whether the marker borders of all of the series in the graph are using the default color and transparency values.
 void setColor(java.awt.Color newColor, int series)
          Specifies the fill color for the markers of the series.
 void setDefaultAssignedToY2(int assignedToY2)
          Specifies the default axis assignment for series.
 void setDefaultBorderColor(java.awt.Color newColor)
          Specifies the default border color for the markers of all series.
 void setDefaultBorderTransparent(boolean yesNo)
          Specifies whether the borders for the markers of all series are transparent by default.
 void setDefaultColor(java.awt.Color color)
          Specifies the default fill color for the markers of series.
 void setDefaultFitlineType(int type)
          Specifies the default type of fitline to use for series.
 void setDefaultLineWidth(int lineWidth)
          Specifies the default width for the data lines of series.
 void setDefaultMarkerShape(int markerShape)
          Specifies the default shape for the data markers of series.
 void setDefaultMarkerType(int markerType)
          Specifies the default marker type for series.
 void setFitlineType(int type, int series)
          Specifies the type of fitline you want to use for this series, such as exponential, or logarithmic.
 void setLineWidth(int width, int series)
          Specifies the width for the data lines that belong to the specified series.
 void setMarkerShape(int shape, int series)
          Specifies the shape for the data makers that belong to the series.
 void setMarkerType(int type, int series)
          Specifies the type of markers used for the series.
 void setPieSliceExplode(int explode, int series)
          Specifies how far the slices for the series are exploded.
 void setTransparent(boolean yesNo, int series)
          Specifies whether the fill color for the markers of the series is transparent.

 

Methods inherited from class oracle.dss.graph.BaseGraphComponent
selectObject

 

Method Detail

getSFX

public SFX getSFX(int series)
           throws SeriesOutOfRangeException
Retrieves the SFX object for the series. The SFX object allows you to retrieve and specify attributes for special effects.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
The SFX object for the series.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

isAssignedToY2

public boolean isAssignedToY2(int series)
                       throws SeriesOutOfRangeException
Indicates whether the series of data is plotted against the Y2-axis.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
true if the series of data is plotted against the Y2-axis, false if it is plotted against the Y1-axis.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

setAssignedToY2

public void setAssignedToY2(boolean yesNo,
                            int series)
                     throws SeriesOutOfRangeException
Specifies whether the series of data is plotted against the Y2-axis.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
yesNo - true to plot the series of data against the Y2-axis, false to plot it against the Y1-axis.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

getBorderColor

public java.awt.Color getBorderColor(int series)
                              throws SeriesOutOfRangeException
Retrieves the border color for the markers of the series. To use the border color that this method returns, set the setBorderUsingDefaults method to false.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
The border color for the markers of the series.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

setBorderColor

public void setBorderColor(java.awt.Color newColor,
                           int series)
                    throws SeriesOutOfRangeException
Specifies the border color for the markers of the series. To use the border color that is set in this method, set the setBorderUsingDefaults method to false.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
newColor - The border color for the markers of the series.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

isBorderTransparent

public boolean isBorderTransparent(int series)
                            throws SeriesOutOfRangeException
Indicates whether the borders for the markers of the series are transparent. To make the markers of the series transparent, set both the setBorderTransparent and the setTransparent methods to true. When an attribute or an object is transparent, it is not visible, but you can select it. To use the value that this method returns, set the setBorderUsingDefaults method to false.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
true if the borders are transparent, false if the borders are visible.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

setBorderTransparent

public void setBorderTransparent(boolean yesNo,
                                 int series)
                          throws SeriesOutOfRangeException
Specifies whether the borders for the markers of the series are transparent. To make the markers of the series transparent, set both the setBorderTransparent and the setTransparent methods to true. When an attribute or an object is transparent, it is not visible, but you can select it. To use the boolean parameter value that is set in this method, set the setBorderUsingDefaults method to false.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
yesNo - true to make the borders transparent, false to make the borders visible.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

getColor

public java.awt.Color getColor(int series)
                        throws SeriesOutOfRangeException
Retrieves the fill color for the markers of the series.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
The fill color for the markers of the series.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

setColor

public void setColor(java.awt.Color newColor,
                     int series)
              throws SeriesOutOfRangeException
Specifies the fill color for the markers of the series.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
newColor - The fill color for the markers of the series.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

getDefaultBorderColor

public java.awt.Color getDefaultBorderColor()
Retrieves the default border color for the markers of all series. To use the border color that this object returns, set the setBorderUsingDefaults method to true.
Returns:
The default border color for the markers of all series.

setDefaultBorderColor

public void setDefaultBorderColor(java.awt.Color newColor)
Specifies the default border color for the markers of all series. To use the border color that this object sets, set the setBorderUsingDefaults method to true.
Parameters:
newColor - The default border color for the markers of all series.

isDefaultBorderTransparent

public boolean isDefaultBorderTransparent()
Indicates whether the borders for the markers of all series are transparent by default. When an attribute or an object is transparent, it is not visible, but you can select it. To use the value that this method returns, set the setBorderUsingDefaults method to true.
Returns:
true if the borders for the markers of all series are transparent by default, false if the graph uses the value that is set in the setBorderTransparent method for each series.

setDefaultBorderTransparent

public void setDefaultBorderTransparent(boolean yesNo)
Specifies whether the borders for the markers of all series are transparent by default. When an attribute or an object is transparent, it is not visible, but you can select it. To use the parameter value that is set in this method, set the setBorderUsingDefaults method to true.
Parameters:
yesNo - true to make the borders for the markers of all series transparent by default, false to make the graph use the value that is set in the setBorderTransparent method for each series.

setFitlineType

public void setFitlineType(int type,
                           int series)
                    throws SeriesOutOfRangeException
Specifies the type of fitline you want to use for this series, such as exponential, or logarithmic.
Parameters:
type - A constant that represents the type of fitline that you want to use for this series. Valid constants are listed in the See Also section.
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.
See Also:
BaseGraphComponent.FT_LINEAR, BaseGraphComponent.FT_EXPONENTIAL, BaseGraphComponent.FT_LOGARITHMIC, BaseGraphComponent.FT_NONE

getFitlineType

public int getFitlineType(int series)
                   throws SeriesOutOfRangeException
Retrieves the type of fitline that you want to use for this series, such as exponential, or logarithmic.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
A constant that represents the type of fitline that you want to use for this series. Valid constants are listed in the See Also section.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.
See Also:
BaseGraphComponent.FT_LINEAR, BaseGraphComponent.FT_EXPONENTIAL, BaseGraphComponent.FT_LOGARITHMIC, BaseGraphComponent.FT_NONE

getLineWidth

public int getLineWidth(int series)
                 throws SeriesOutOfRangeException
Retrieves the width for the data lines that belong to the specified series. All of the data lines are the same width.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
The width for the data lines that belong to the series.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

setLineWidth

public void setLineWidth(int width,
                         int series)
                  throws SeriesOutOfRangeException
Specifies the width for the data lines that belong to the specified series. All of the data lines are the same width.

The value that you set in this method takes effect only when the DepthRadius attribute of the graph is set to zero.

Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
width - The width for the data lines that belong to the series.
Throws:
SeriesOutOfRangeException - If series is less than zero or is greater than or equal to the value of the SeriesObjectCount attribute of the graph.
See Also:
Graph.setDepthRadius(int)

getMarkerShape

public int getMarkerShape(int series)
                   throws SeriesOutOfRangeException
Retrieves the shape for the data markers that belong to the series. The MarkerShape property applies only to data markers that appear in line, point, scatter, and bubble graphs. It does not affect the shape of bars or slices.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
A constant that represents the shape for the data markers that belong to the series. Constants are listed in the See Also section.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.
See Also:
BaseGraphComponent.MS_AUTOMATIC, BaseGraphComponent.MS_NONE, BaseGraphComponent.MS_CIRCLE, BaseGraphComponent.MS_DIAMOND, BaseGraphComponent.MS_PLUS, BaseGraphComponent.MS_SQUARE, BaseGraphComponent.MS_TRIANGLE_DOWN, BaseGraphComponent.MS_TRIANGLE_UP

setMarkerShape

public void setMarkerShape(int shape,
                           int series)
                    throws SeriesOutOfRangeException
Specifies the shape for the data makers that belong to the series. The MarkerShape property applies only to data markers that appear in line, point, scatter, and bubble graphs. It does not affect the shape of bars or slices.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
shape - A constant that represents the shape for the data markers that belong to this series. Valid constants are listed in the See Also section.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.
See Also:
BaseGraphComponent.MS_AUTOMATIC, BaseGraphComponent.MS_NONE, BaseGraphComponent.MS_CIRCLE, BaseGraphComponent.MS_DIAMOND, BaseGraphComponent.MS_PLUS, BaseGraphComponent.MS_SQUARE, BaseGraphComponent.MS_TRIANGLE_DOWN, BaseGraphComponent.MS_TRIANGLE_UP

getMarkerType

public int getMarkerType(int series)
                  throws SeriesOutOfRangeException
Retrieves the type of markers used for the series. Markers that belong to the same series are the same type.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
The type of markers used for the series. Valid constants are listed in the See Also section.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.
See Also:
BaseGraphComponent.MT_AREA, BaseGraphComponent.MT_BAR, BaseGraphComponent.MT_MARKER, BaseGraphComponent.MT_DEFAULT

setMarkerType

public void setMarkerType(int type,
                          int series)
                   throws SeriesOutOfRangeException
Specifies the type of markers used for the series. Markers that belong to the same series are the same type.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
type - The type of markers used for the series. Valid constants are listed in the See Also section.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.
See Also:
BaseGraphComponent.MT_AREA, BaseGraphComponent.MT_BAR, BaseGraphComponent.MT_MARKER, BaseGraphComponent.MT_DEFAULT

getPieSliceExplode

public int getPieSliceExplode(int series)
                       throws SeriesOutOfRangeException
Retrieves the distance that separates an exploded slice from the rest of the pie in a pie graph or from the rest of the ring in a ring graph. Exploded slices are pulled apart from the rest of the pie or ring that they belong to. The values range from 0 to 100.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
How far the slices for the series are exploded.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

setPieSliceExplode

public void setPieSliceExplode(int explode,
                               int series)
                        throws SeriesOutOfRangeException
Specifies how far the slices for the series are exploded. Exploded slices are pulled apart from the rest of the pie that they belong to. The values range from 0 to 100.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
explode - How far the slices for the series are exploded.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

isTransparent

public boolean isTransparent(int series)
                      throws SeriesOutOfRangeException
Indicates whether the fill color for the markers of the series is transparent. To make the markers of this series transparent, set both the setBorderTransparent and the setTransparent methods to true. When an attribute or an object is transparent, it is not visible, but you can select it.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
Returns:
true if the fill color for the markers of the series is transparent, false if the fill color for the markers of this series is visible.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

setTransparent

public void setTransparent(boolean yesNo,
                           int series)
                    throws SeriesOutOfRangeException
Specifies whether the fill color for the markers of the series is transparent. To make the markers of this series transparent, set both the setBorderTransparent and the setTransparent methods to true. When an attribute or an object is transparent, it is not visible, but you can select it.
Parameters:
series - The index of the series. The values range from 0 to the value of graph.getSeriesObjectCount minus 1.
yesNo - true to make the fill color for the markers of the series transparent, false to make the fill color for the markers of this series visible.
Throws:
SeriesOutOfRangeException - If series is less than zero, or greater than or equal to the value of the SeriesObjectCount property of the graph.

isBorderUsingDefaults

public boolean isBorderUsingDefaults()
Indicates whether the marker borders of all of the series in the graph are using the default color and transparency values. The default border color and transparency values are set in the setDefaultBorderColor method and the setDefaultBorderTransparent method.
Returns:
true if they use the default values, false if they use the values that are set in the setBorderColor method and the setBorderTransparent method.

setBorderUsingDefaults

public void setBorderUsingDefaults(boolean yesNo)
Specifies whether the marker borders of all of the series in the graph are using the default color and transparency values. The default border color and transparency values are set in the setDefaultBorderColor method and the setDefaultBorderTransparent method.
Parameters:
yesNo - true to make them use the default values, false to make them use the values that are set in the setBorderColor method and the setBorderTransparent method.

setDefaultColor

public void setDefaultColor(java.awt.Color color)
Specifies the default fill color for the markers of series.
Parameters:
color - The default fill color for the markers of series. If color is null, then the graph assigns its own default colors to series, repeating colors as necessary.
See Also:
setColor(java.awt.Color, int)

getDefaultColor

public java.awt.Color getDefaultColor()
Retrieves the default fill color for the markers of series.
Returns:
The default fill color for the markers of series. If color is null, then the graph assigns its own default colors to series, repeating colors as necessary.
See Also:
getColor(int)

setDefaultMarkerType

public void setDefaultMarkerType(int markerType)
Specifies the default marker type for series. Markers in a single series have the same type. This method specifies a default type for all series.
Parameters:
markerType - The default type of markers used for series.
See Also:
BaseGraphComponent.MT_AREA, BaseGraphComponent.MT_BAR, BaseGraphComponent.MT_DEFAULT, BaseGraphComponent.MT_MARKER

getDefaultMarkerType

public int getDefaultMarkerType()
Retrieves the default type of markers used for series. Markers in a single series have the same type. This method specifies a default type for series.
Returns:
The default type of markers used for series.
See Also:
BaseGraphComponent.MT_AREA, BaseGraphComponent.MT_BAR, BaseGraphComponent.MT_DEFAULT, BaseGraphComponent.MT_MARKER

setDefaultMarkerShape

public void setDefaultMarkerShape(int markerShape)
Specifies the default shape for the data markers of series.
Parameters:
markerShape - A constant that represents the default shape for the data markers of series. Valid constants are listed in the See Also section. If marker shape is automatic, then the graph assigns its default shapes, repeating shapes if necessary.
See Also:
BaseGraphComponent.MS_CIRCLE, BaseGraphComponent.MS_DIAMOND, BaseGraphComponent.MS_NONE, BaseGraphComponent.MS_PLUS, BaseGraphComponent.MS_SQUARE, BaseGraphComponent.MS_TRIANGLE_DOWN, BaseGraphComponent.MS_TRIANGLE_UP, BaseGraphComponent.MS_AUTOMATIC

getDefaultMarkerShape

public int getDefaultMarkerShape()
Retrieves the default shape for the data makers of series.
Returns:
A constant that represents the default shape for the data markers of series. Valid constants are listed in the See Also section. If the marker shape is automatic, then the graph assigns its default shapes, repeating shapes if necessary.
See Also:
BaseGraphComponent.MS_CIRCLE, BaseGraphComponent.MS_DIAMOND, BaseGraphComponent.MS_NONE, BaseGraphComponent.MS_PLUS, BaseGraphComponent.MS_SQUARE, BaseGraphComponent.MS_TRIANGLE_DOWN, BaseGraphComponent.MS_TRIANGLE_UP, BaseGraphComponent.MS_AUTOMATIC

setDefaultLineWidth

public void setDefaultLineWidth(int lineWidth)
Specifies the default width for the data lines of series. All of the data lines are the same width.

The value that you set in this method takes effect only when the DepthRadius attribute of the graph is set to zero.

Parameters:
lineWidth - The default width for the data lines of series.
See Also:
Graph.setDepthRadius(int)

getDefaultLineWidth

public int getDefaultLineWidth()
Retrieves the default width for the data lines of series. All of the data lines are the same width.
Returns:
The default width for the data lines of series.

setDefaultAssignedToY2

public void setDefaultAssignedToY2(int assignedToY2)
Specifies the default axis assignment for series.
Parameters:
assignedToY2 - A constant that represents the default axis assignment. Valid constants are listed in the See Also section.
See Also:
BaseGraphComponent.DY2_TRUE, BaseGraphComponent.DY2_FALSE, BaseGraphComponent.DY2_AUTO_ASSIGN

getDefaultAssignedToY2

public int getDefaultAssignedToY2()
Retrieves the default axis assignment for series.
Returns:
A constant that represents the default axis assignment. Valid constants are listed in the See Also section.
See Also:
BaseGraphComponent.DY2_TRUE, BaseGraphComponent.DY2_FALSE, BaseGraphComponent.DY2_AUTO_ASSIGN

setDefaultFitlineType

public void setDefaultFitlineType(int type)
Specifies the default type of fitline to use for series. The graph supports linear, exponential, and logarithmic fitlines.
Parameters:
type - A constant that represents the default type of fitline for series. Valid constants are listed in the See Also section.
See Also:
BaseGraphComponent.FT_EXPONENTIAL, BaseGraphComponent.FT_LOGARITHMIC, BaseGraphComponent.FT_LINEAR, BaseGraphComponent.FT_NONE

getDefaultFitlineType

public int getDefaultFitlineType()
Retrieves the default type of fitline for all series. The graph supports linear, exponential, and logarithmic fitlines.
Returns:
A constant that represents the default type of fitline for series. Valid constants are listed in the See Also section.
See Also:
BaseGraphComponent.FT_EXPONENTIAL, BaseGraphComponent.FT_LOGARITHMIC, BaseGraphComponent.FT_LINEAR, BaseGraphComponent.FT_NONE

Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


Copyright © 2003, Oracle. All Rights Reserved.