Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1.4.0)

E12063-05

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 getLineStyle()
          Retrieves the line style of the pareto 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 setLineStyle(int style)
          Set the line style of the pareto 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

void setColor(java.awt.Color color)
Specifies the fill color for the line.

Parameters:
color - The fill color for the line.

getColor

java.awt.Color getColor()
Retrieves the fill color of the line.

Returns:
The fill color for the line.

setWidth

void setWidth(int width)
Specifies the width of this UIParetoLine, in pixels.

Parameters:
color - The width of the line.

getWidth

int getWidth()
Retrieves the width of this UIParetoLine.

Returns:
The width of the line, in pixels.

setLineStyle

void setLineStyle(int style)
Set the line style of the pareto line.

Parameters:
style - The style of the pareto line.

getLineStyle

int getLineStyle()
Retrieves the line style of the pareto line.

Returns:
The style of the pareto line.

setMarkerShape

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

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 Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1.4.0)

E12063-05

Copyright © 1997, 2011, Oracle. All rights reserved.