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


oracle.dss.dataView
Interface UIParetoLine

All Known Implementing Classes:
ParetoLine

public interface UIParetoLine

Represents the pareto line in a pareto graph. The pareto line shows the cumulative percentage of the bars in a pareto graph, with relation to the total of all the bars. The line always ends with 100 percent. This interface is implemented internally and is used by the BI Beans user interface panels. Application developers should not implement this interface.


Method Summary
 java.awt.Color getColor()
          Retrieves the fill color of the line.
 int getMarkerShape()
          Retrieves the shape of the markers along this UIParetoLine.
 int getWidth()
          Retrieves the width of this UIParetoLine.
 void setColor(java.awt.Color color)
          Specifies the fill color for the line.
 void setMarkerShape(int shape)
          Specifies the shape for the markers along this UIParetoLine.
 void setWidth(int width)
          Specifies the width of this UIParetoLine, in pixels.

 

Method Detail

setColor

public void setColor(java.awt.Color color)
Specifies the fill color for the line.
Parameters:
color - The fill color for the line.

getColor

public java.awt.Color getColor()
Retrieves the fill color of the line.
Returns:
The fill color for the line.

setWidth

public void setWidth(int width)
Specifies the width of this UIParetoLine, in pixels.
Parameters:
color - The width of the line.

getWidth

public int getWidth()
Retrieves the width of this UIParetoLine.
Returns:
The width of the line, in pixels.

setMarkerShape

public void setMarkerShape(int shape)
Specifies the shape for the markers along this UIParetoLine.
Parameters:
shape - A constant that identifies the shape to use. Valid constants are listed in the See Also section.
See Also:
BaseGraphComponent.MS_NONE, BaseGraphComponent.MS_CIRCLE, BaseGraphComponent.MS_DIAMOND, BaseGraphComponent.MS_PLUS, BaseGraphComponent.MS_SQUARE, BaseGraphComponent.MS_TRIANGLE_DOWN, BaseGraphComponent.MS_TRIANGLE_UP

getMarkerShape

public int getMarkerShape()
Retrieves the shape of the markers along this UIParetoLine.
Returns:
A constant that identifies the shape of the markers on this UIParetoLine. Possible constants are listed in the See Also section.
See Also:
BaseGraphComponent.MS_NONE, BaseGraphComponent.MS_CIRCLE, BaseGraphComponent.MS_DIAMOND, BaseGraphComponent.MS_PLUS, BaseGraphComponent.MS_SQUARE, BaseGraphComponent.MS_TRIANGLE_DOWN, BaseGraphComponent.MS_TRIANGLE_UP

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


Copyright © 2003, Oracle. All Rights Reserved.