|
Components |
|
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
com.sas.graphics.components.DataElementColors
public class DataElementColors
This class encapsulates a set of colors that can be applied to a DataElementStyles
to define the color specification for the data elements. Typically a DataElementColors
will be applied to a GraphStyle
's DataElementStyles
or
a Graph
's DataElementStyles
.
(ex. myGraphStyle.getDataElementStyles().applyDataElementColors( myDataElementColors ); or
myGraph.getGraphModel().getDataElementStyles().applyDataElementColors( myDataElementColors );)
Each graph applies its DataElementStyles
in its own specific way so the
application of these colors is graph specific. Generally speaking, a specific graph
will not make use of all color properties defined by this class. This class is designed
to be a general purpose color proeprty definition set that can be applied to any graph.
There are two discrete color lists. One pertains to filled areas (such as bars or pie slices),
the other is a contrast color list which pertains to elements requiring colors that need to stand out
more such as line markers (FYI: the color lists are not required to be the same length).
Note: some charts overlay elements using the fill colors with elements using contrast colors so you
may need to define both.
There are also two 2-Color continuous range colors and two 3-Color
continuous range colors. Again the specific type of graph that these properties are
applied on will determine if and how these properties are used. For example the BarChart
will use the continuous two color fill colors if and only if a numeric AnalysisVariable is
assigned to its styleByVariable
property in the BarChartTableDataModel
(and it never uses the other continuous range colors).
The two color range defines a start and end color for a continuous data range.
Ex. defining start=yellow and end=blue, imparts that the middle range would be a blend
of the two (i.e. green).
The three color range defines a start, neutral and end color.
The neutral color will lie in the middle of the data range.
Ex. defining start=red, neutral=white and end=blue imparts that
red will transition into white followed by a transition into blue.
The outline color defines the data element outline color (bar, pie slice, marker, etc.).
To override the discrete fill color list:
DataElementColors dataElementColors = new DataElementColors(); dataElementColors.setDiscreteFillColors( new Color[] { new Color( 97, 115, 169), new Color(141, 166, 66), new Color(152, 52, 28), new Color(253, 200, 97), new Color(138, 164, 201), new Color(111, 117, 0), new Color(184, 127, 50), new Color(214, 198, 110), new Color( 94, 82, 139), new Color(103, 153, 32), new Color(200, 87, 60), new Color(127, 89, 52) });
DataElementColors
and apply it
onto a DataElementStyles
, the more typical scenario is that
you will simply create an instance of a ColorScheme
. A ColorScheme
will automatically create a DataElementColors
and will make the appropriate color
property assignments based upon the particular scheme type you choose when you created the
ColorScheme
. The when you apply the ColorScheme
unto a
GraphStyle
or a Graph
the DataElementColors
will
automatically be applied onto the associated DataElementStyles
.
This sounds more complex than it really is.
It probably worth noting that that a DataElementColors
is never assigned to
a graph as a property or model. It is a convenient generalised packaging of a set of
color properties that get applied to a DataElementStyles
.
GraphStyle
,
ColorScheme
Constructor Summary | |
---|---|
DataElementColors()
Default Constructor, uses the Terra Color Scheme |
|
DataElementColors(java.awt.Color[] fillColors,
java.awt.Color[] contrastColors,
java.awt.Color outline)
Constructor that takes two color lists and an outline color. |
Method Summary | |
---|---|
boolean |
equals(DataElementColors that)
|
java.awt.Color |
getActualColor()
Returns the color property used to identify "Actual" gantt bar. |
java.awt.Color |
getBaselineColor()
Returns the color property used to identify "Baseline" gantt bar. |
java.awt.Color |
getBreakTimeColor()
Returns the color applied to break time, usually utilaize by gantt charts. |
java.awt.Color |
getConnectingLineColor()
Get the connecting line color for data elements. |
ColorPosition[] |
getContinuousColorSpectrum()
Gets the color spectrum, a list of colors with associated positions along a normalized range of 0.0 to 1.0. |
java.awt.Color |
getContinuousContrastThreeColorEndColor()
Returns the ending color of a three color continuous range spectrum for the data elements. |
java.awt.Color |
getContinuousContrastThreeColorNeutralColor()
Returns the middle color of a three color continuous range spectrum for the data elements. |
java.awt.Color |
getContinuousContrastThreeColorStartColor()
Returns the beginning color of a three color continuous range spectrum for the data elements. |
java.awt.Color |
getContinuousContrastTwoColorEndColor()
Returns the ending color of a two color continuous range spectrum for the data elements. |
java.awt.Color |
getContinuousContrastTwoColorStartColor()
Returns the beginning color of a two color continuous range spectrum for the data elements. |
java.awt.Color |
getContinuousFillThreeColorEndColor()
Returns the ending color of a three color continuous range spectrum for the data elements. |
java.awt.Color |
getContinuousFillThreeColorNeutralColor()
Returns the middle color of a three color continuous range spectrum for the data elements. |
java.awt.Color |
getContinuousFillThreeColorStartColor()
Returns the beginning color of a three color continuous range spectrum for the data elements. |
java.awt.Color |
getContinuousFillTwoColorEndColor()
Returns the ending color of a two color continuous range spectrum for the data elements. |
java.awt.Color |
getContinuousFillTwoColorStartColor()
Returns the beginning color of a two color continuous range spectrum for the data elements. |
java.awt.Color |
getCriticalColor()
Returns the color property used to identify "Critical" gantt bar. |
java.awt.Color |
getCustom2Color()
Returns the color property used to identify "Custom Schedule 2" gantt bar. |
java.awt.Color |
getCustomSchedule1Color()
Returns the color property used to identify "Custom Schedule 1" gantt bar. |
java.awt.Color[] |
getDiscreteContrastColors()
Gets the list of colors to be associated with Contrast data elements in a graph. |
java.awt.Color[] |
getDiscreteFillColors()
Gets the list of colors to be associated with pie slice and bar data elements in a graph. |
java.awt.Color |
getErrorColor()
Gets the color to be associated with error data values in a graph. |
java.awt.Color |
getFinalColor()
Returns the color property used to identify "final" values. |
java.awt.Color |
getInitialColor()
Returns the color property used to identify "initial" values. |
java.awt.Color |
getMilestoneColor()
Returns the color property used to identify milestones. |
java.awt.Color |
getMissingColor()
Returns the color applied to missing values. |
java.awt.Color |
getNormalColor()
Returns the color property used to identify "Normal" portion of the gantt bar. |
java.awt.Color |
getOtherColor()
Gets the color to be associated with Other pie slice in a pie chart. |
java.awt.Color |
getOutlineColor()
Get the outline color for data elements. |
java.awt.Color |
getOutOfRangeColor()
Gets the color to be associated with Out Of Range data values in a graph. |
java.awt.Color |
getOverFlowColor()
Gets the color to be associated with Over Flow data values in a Spectrum Plot. |
java.awt.Color |
getResourceColor()
Returns the color property used to identify "Resource" gantt bar. |
java.awt.Color |
getSlackColor()
Returns the color property used to identify "Slack" portion of the gantt bar. |
java.awt.Color |
getTargetColor()
Returns the color applied to target indicators. |
java.awt.Color |
getThresholdColor()
Gets the color to be associated with data values above or below the set Threshold value. |
java.awt.Color |
getUnderFlowColor()
Gets the color to be associated with Under Flow data values in a Spectrum Plot. |
void |
setActualColor(java.awt.Color newColor)
Specifies the color to use for an "Actual" gantt bar. |
void |
setBaselineColor(java.awt.Color newColor)
Specifies the color to use for an "Baseline" gantt bar. |
void |
setBreakTimeColor(java.awt.Color newBreakTimeColor)
Sets the color applied to break time, usually utilized by gantt chart. |
void |
setConnectingLineColor(java.awt.Color newColor)
Set the data elements connecting line color If newColor is null, this setting is ignored. |
void |
setContinuousColorSpectrum(ColorPosition[] newColorSpectrum)
Sets a color spectrum defined as an array of color inflection points mapped to normalised (0.0 to 1.0 inclusive) range. |
void |
setContinuousContrastThreeColorEndColor(java.awt.Color newColor)
Sets the ending color of a three color continuous range spectrum for the data elements. |
void |
setContinuousContrastThreeColorNeutralColor(java.awt.Color newColor)
Sets the middle color of a three color continuous range spectrum for the data elements. |
void |
setContinuousContrastThreeColorStartColor(java.awt.Color newColor)
Sets the beginning color of a three color continuous range spectrum for the data elements. |
void |
setContinuousContrastTwoColorEndColor(java.awt.Color newColor)
Sets the ending color of a two color continuous range spectrum for the data elements. |
void |
setContinuousContrastTwoColorStartColor(java.awt.Color newColor)
Sets the beginning color of a two color continuous range spectrum for the data elements. |
void |
setContinuousFillThreeColorEndColor(java.awt.Color newColor)
Sets the ending color of a three color continuous range spectrum for the data elements. |
void |
setContinuousFillThreeColorNeutralColor(java.awt.Color newColor)
Sets the middle color of a three color continuous range spectrum for the data elements. |
void |
setContinuousFillThreeColorStartColor(java.awt.Color newColor)
Sets the beginning color of a three color continuous range spectrum for the data elements. |
void |
setContinuousFillTwoColorEndColor(java.awt.Color newColor)
Sets the ending color of a two color continuous range spectrum for the data elements. |
void |
setContinuousFillTwoColorStartColor(java.awt.Color newColor)
Sets the beginning color of a two color continuous range spectrum for the data elements. |
void |
setCriticalColor(java.awt.Color newColor)
Specifies the color to use for an "Critical" gantt bar. |
void |
setCustom2Color(java.awt.Color newColor)
Specifies the color to use for an "Custom Schedule 2 " gantt bar. |
void |
setCustomSchedule1Color(java.awt.Color newColor)
Specifies the color to use for an "Custom Schedule 1 " gantt bar. |
void |
setDiscreteContrastColors(java.awt.Color[] newColors)
Sets the colors to be used for Contrast data elements in a graph. |
void |
setDiscreteFillColors(java.awt.Color[] newColors)
Sets the list of colors to be associated with pie slice and bar data elements in a graph. |
void |
setErrorColor(java.awt.Color newColor)
Sets the color to be associated with error data values in a graph. |
void |
setFinalColor(java.awt.Color newColor)
Specifies the color to use for an "final" value. |
void |
setInitialColor(java.awt.Color newColor)
Specifies the color to use for an "initial" value. |
void |
setMilestoneColor(java.awt.Color newColor)
Specifies the color to use for a milestone data element. |
void |
setMissingColor(java.awt.Color newMissingColor)
Sets the color applied to missing values. |
void |
setNormalColor(java.awt.Color newColor)
Specifies the color to use for an "Normal" portion of the gantt bar. |
void |
setOtherColor(java.awt.Color newColor)
Sets the color to be associated with the Other pie slice in a pie chart. |
void |
setOutlineColor(java.awt.Color newColor)
Set the data elements outline color If newColor is null, this setting is ignored. |
void |
setOutOfRangeColor(java.awt.Color newColor)
Sets the color to be associated with Out Of Range data values in a graph. |
void |
setOverFlowColor(java.awt.Color newColor)
Sets the color to be associated with Over Flow data values in a Spectrum Plot. |
void |
setResourceColor(java.awt.Color newColor)
Specifies the color to use for an "Resource" gantt bar. |
void |
setSlackColor(java.awt.Color newColor)
Specifies the color to use for an "Slack" portion of the gantt bar. |
void |
setTargetColor(java.awt.Color newTargetColor)
Sets the color applied to target indicators. |
void |
setThresholdColor(java.awt.Color newColor)
Sets the color to be associated with data values that at or above or below the set Threshold value set in a BarChart graph. |
void |
setUnderFlowColor(java.awt.Color newColor)
Sets the color to be associated with Under Flow data values in a Spectrum Plot. |
Methods inherited from class com.sas.graphics.components.ModelBase |
---|
addPropertyChangeListener, equals, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, hashCode, removePropertyChangeListener, setContainedModel |
Constructor Detail |
---|
public DataElementColors()
public DataElementColors(java.awt.Color[] fillColors, java.awt.Color[] contrastColors, java.awt.Color outline)
fillColors
- data element Fill color set.contrastColors
- data element Contrast color set.outline
- data element outline color.setDiscreteFillColors(java.awt.Color[])
,
setDiscreteContrastColors(java.awt.Color[])
,
setOutlineColor(java.awt.Color)
Method Detail |
---|
public void setDiscreteFillColors(java.awt.Color[] newColors)
If newColors is null, this setting is ignored.
newColors
- data element Fill color set.getDiscreteFillColors()
,
setDiscreteContrastColors(java.awt.Color[])
,
setOutlineColor(java.awt.Color)
public java.awt.Color[] getDiscreteFillColors()
setDiscreteFillColors(java.awt.Color[])
,
getDiscreteContrastColors()
,
getOutlineColor()
public void setContinuousColorSpectrum(ColorPosition[] newColorSpectrum) throws java.lang.IllegalArgumentException
setContinuousColorSpectrum( new ColorPosition[] { new ColorPosition(Color.red, 0.0 ), new ColorPosition(Color.orange, 0.33 ), new ColorPosition(Color.yellow, 0.67 ), new ColorPosition(Color.green, 1.0 ) };
Special note: duplicate pairs are allowed once for a given value to facilitate the definition of solid color ranges or transition levels between graduating colors. The color of the value corresponding to the exact inflection point value will be mapped to the color of the range containing the inflection point as its starting point.
For example to define a color spectrum where the lower 1/4 is a constant red color, the next 1/4 is orange, the next 1/4 graduates from yellow to blue and the final 1/4 is green you should define the color spectrum as follows:
setContinuousColorSpectrum( new ColorPosition[] { new ColorPosition(Color.red, 0.0 ), new ColorPosition(Color.red, 0.25 ), new ColorPosition(Color.orange, 0.25 ), new ColorPosition(Color.orange, 0.5 ), new ColorPosition(Color.yellow, 0.5 ), new ColorPosition(Color.blue, 0.75 ), new ColorPosition(Color.green, 0.75 ), new ColorPosition(Color.green, 1.0 ) };
Using a normalised range allows for a color map that is independent from the actual data values. If the actaul data range spand from 35 to 165 then the data value corresponding to the 0.25 inflection point would be ((165-35)*0.25 + 35) = 67.5. So given the last definition the values between 35 and 67.5 not including 67.5 (i.e. [35,65) ) would be colored red while values between 67.5 and ((165-35)*0.5 + 35) (i.e. [67.5,100) ) wold be colored orange etc. Special note: the final range includes both its beginning and ending vlaues (i.e. [0.75,1.0] normalized or [132.5,165] using this example).
newColorSpectrum
- an array of color inflection points mapped to normalized (0.0 to 1.0 inclusive) range (Note: a null newColorSpectrum is ignored so specifying a null newColorSpectrum has no affect)
java.lang.IllegalArgumentException
- is thrown if the range does not begin with 0.0 or end with 1.0
java.lang.IllegalArgumentException
- is thrown if the inflection points within the range ar not specified in ascending ordergetContinuousColorSpectrum()
public ColorPosition[] getContinuousColorSpectrum()
setContinuousColorSpectrum(com.sas.graphics.components.ColorPosition[])
public void setDiscreteContrastColors(java.awt.Color[] newColors)
If newColors is null, this setting is ignored.
newColors
- Contrast data element color setgetDiscreteContrastColors()
,
setDiscreteFillColors(java.awt.Color[])
,
setOutlineColor(java.awt.Color)
public java.awt.Color[] getDiscreteContrastColors()
setDiscreteContrastColors(java.awt.Color[])
,
getDiscreteFillColors()
,
getOutlineColor()
public void setErrorColor(java.awt.Color newColor)
If newColor is null, this setting is ignored.
newColor
- data element Error color.getErrorColor()
public java.awt.Color getErrorColor()
setErrorColor(java.awt.Color)
public void setOtherColor(java.awt.Color newColor)
If newColor is null, this setting is ignored.
newColor
- Other pie slice color.getOtherColor()
public java.awt.Color getOtherColor()
setOtherColor(java.awt.Color)
public void setOutOfRangeColor(java.awt.Color newColor)
If newColor is null, this setting is ignored.
newColor
- data element Out Of Range color.getOutOfRangeColor()
public java.awt.Color getOutOfRangeColor()
setOutOfRangeColor(java.awt.Color)
public void setOverFlowColor(java.awt.Color newColor)
If newColor is null, this setting is ignored.
newColor
- data element Over Flow color.getOverFlowColor()
public java.awt.Color getOverFlowColor()
setOverFlowColor(java.awt.Color)
public void setUnderFlowColor(java.awt.Color newColor)
If newColor is null, this setting is ignored.
newColor
- data element Under Flow color.getUnderFlowColor()
public java.awt.Color getUnderFlowColor()
setUnderFlowColor(java.awt.Color)
public void setThresholdColor(java.awt.Color newColor)
If newColor is null, this setting is ignored.
newColor
- data element Threshold color.getThresholdColor()
,
BarChartModel.setResponseAxisLowerThreshold(double)
,
BarChartModel.setResponseAxisUpperThreshold(double)
,
BarChartModel.setResponse2AxisLowerThreshold(double)
,
BarChartModel.setResponse2AxisUpperThreshold(double)
public java.awt.Color getThresholdColor()
setThresholdColor(java.awt.Color)
public void setMilestoneColor(java.awt.Color newColor)
newColor
- data element Threshold color; null is ignored (equivilent to no-op).getMilestoneColor()
public java.awt.Color getMilestoneColor()
setMilestoneColor(java.awt.Color)
public void setInitialColor(java.awt.Color newColor)
newColor
- initial color; null is ignored (equivilent to no-op).getInitialColor()
public java.awt.Color getInitialColor()
setInitialColor(java.awt.Color)
public void setNormalColor(java.awt.Color newColor)
newColor
- Normal color; null is ignored (equivilent to no-op).getNormalColor()
public java.awt.Color getNormalColor()
getNormalColor()
public void setSlackColor(java.awt.Color newColor)
newColor
- Slack color; null is ignored (equivilent to no-op).getSlackColor()
public java.awt.Color getSlackColor()
getSlackColor()
public void setCriticalColor(java.awt.Color newColor)
newColor
- Critical color; null is ignored (equivilent to no-op).getCriticalColor()
public java.awt.Color getCriticalColor()
getCriticalColor()
public void setActualColor(java.awt.Color newColor)
newColor
- Actual color; null is ignored (equivilent to no-op).getActualColor()
public java.awt.Color getActualColor()
getActualColor()
public void setCustomSchedule1Color(java.awt.Color newColor)
newColor
- Custom Schedule 1 color; null is ignored (equivilent to no-op).getCustomSchedule1Color()
public java.awt.Color getCustomSchedule1Color()
setCustomSchedule1Color(java.awt.Color)
public void setCustom2Color(java.awt.Color newColor)
newColor
- Custom Schedule 2 color; null is ignored (equivilent to no-op).getCustom2Color()
public java.awt.Color getCustom2Color()
setCustom2Color(java.awt.Color)
public void setResourceColor(java.awt.Color newColor)
newColor
- Resource color; null is ignored (equivilent to no-op).getResourceColor()
public java.awt.Color getResourceColor()
getResourceColor()
public void setBaselineColor(java.awt.Color newColor)
newColor
- Baseline color; null is ignored (equivilent to no-op).getBaselineColor()
public java.awt.Color getBaselineColor()
getBaselineColor()
public void setFinalColor(java.awt.Color newColor)
newColor
- final color; null is ignored (equivilent to no-op).getFinalColor()
,
WaterfallChartModel.setFinalBarEnabled(boolean)
public java.awt.Color getFinalColor()
getFinalColor()
public void setTargetColor(java.awt.Color newTargetColor)
The default value is java.awt.Color.BLACK.
graph.applyGraphStyle(GraphStyle) must be called before this property setting will appear in a Graph.
newTargetColor
- the primary color used to target indicator.getTargetColor()
public java.awt.Color getBreakTimeColor()
setBreakTimeColor(java.awt.Color)
public void setBreakTimeColor(java.awt.Color newBreakTimeColor)
The default value is new Color(102,102,102).
graph.applyGraphStyle(GraphStyle) must be called before this property setting will appear in a Graph.
newBreakTimeColor
- the primary color used to break time bar sections.getBreakTimeColor()
public java.awt.Color getTargetColor()
setTargetColor(java.awt.Color)
public void setMissingColor(java.awt.Color newMissingColor)
The default value is java.awt.Color.lightGray.
graph.applyGraphStyle(GraphStyle) must be called before this property setting will appear in a Graph.
newMissingColor
- the primary color used to indicate missing values.getMissingColor()
public java.awt.Color getMissingColor()
setMissingColor(java.awt.Color)
public void setOutlineColor(java.awt.Color newColor)
newColor
- the outline color for data elementsgetOutlineColor()
public java.awt.Color getOutlineColor()
setOutlineColor(java.awt.Color)
public void setConnectingLineColor(java.awt.Color newColor)
newColor
- the connecting line color for data elementsgetConnectingLineColor()
public java.awt.Color getConnectingLineColor()
setConnectingLineColor(java.awt.Color)
public void setContinuousFillTwoColorStartColor(java.awt.Color newColor)
newColor
- Start color of a data element two color continuous range Fill color.getContinuousFillTwoColorStartColor()
,
setContinuousFillThreeColorStartColor(java.awt.Color)
public java.awt.Color getContinuousFillTwoColorStartColor()
setContinuousFillTwoColorStartColor(java.awt.Color)
,
getContinuousFillThreeColorStartColor()
public void setContinuousFillTwoColorEndColor(java.awt.Color newColor)
newColor
- End color of a data element two color continuous range Fill color.getContinuousFillTwoColorEndColor()
,
setContinuousFillThreeColorEndColor(java.awt.Color)
public java.awt.Color getContinuousFillTwoColorEndColor()
setContinuousFillTwoColorEndColor(java.awt.Color)
,
getContinuousFillThreeColorEndColor()
public void setContinuousFillThreeColorStartColor(java.awt.Color newColor)
newColor
- Start color of a data element three color continuous range Fill color.getContinuousFillThreeColorStartColor()
,
setContinuousFillThreeColorNeutralColor(java.awt.Color)
,
setContinuousFillThreeColorEndColor(java.awt.Color)
,
setContinuousFillTwoColorStartColor(java.awt.Color)
public java.awt.Color getContinuousFillThreeColorStartColor()
setContinuousFillThreeColorStartColor(java.awt.Color)
,
getContinuousFillThreeColorNeutralColor()
,
getContinuousFillThreeColorEndColor()
,
getContinuousFillTwoColorStartColor()
public void setContinuousFillThreeColorEndColor(java.awt.Color newColor)
newColor
- End color of a data element three color continuous range Fill color.getContinuousFillThreeColorEndColor()
,
setContinuousFillThreeColorStartColor(java.awt.Color)
,
setContinuousFillThreeColorNeutralColor(java.awt.Color)
,
setContinuousFillTwoColorEndColor(java.awt.Color)
public java.awt.Color getContinuousFillThreeColorEndColor()
setContinuousFillThreeColorEndColor(java.awt.Color)
,
getContinuousFillThreeColorStartColor()
,
getContinuousFillThreeColorNeutralColor()
,
getContinuousFillTwoColorEndColor()
public void setContinuousFillThreeColorNeutralColor(java.awt.Color newColor)
newColor
- Middle color of a data element three color continuous range Fill color.getContinuousFillThreeColorNeutralColor()
,
setContinuousFillThreeColorStartColor(java.awt.Color)
,
setContinuousFillThreeColorEndColor(java.awt.Color)
,
setContinuousFillTwoColorStartColor(java.awt.Color)
,
setContinuousFillTwoColorEndColor(java.awt.Color)
public java.awt.Color getContinuousFillThreeColorNeutralColor()
setContinuousFillThreeColorNeutralColor(java.awt.Color)
,
getContinuousFillThreeColorStartColor()
,
getContinuousFillThreeColorEndColor()
,
getContinuousFillTwoColorStartColor()
,
getContinuousFillTwoColorEndColor()
public void setContinuousContrastTwoColorStartColor(java.awt.Color newColor)
newColor
- Start color of a data element two color continuous range Contrast color.getContinuousContrastTwoColorStartColor()
,
setContinuousContrastThreeColorStartColor(java.awt.Color)
public java.awt.Color getContinuousContrastTwoColorStartColor()
setContinuousContrastTwoColorStartColor(java.awt.Color)
,
getContinuousContrastThreeColorStartColor()
public void setContinuousContrastTwoColorEndColor(java.awt.Color newColor)
newColor
- End color of a data element two color continuous range Contrast color.getContinuousContrastTwoColorEndColor()
,
setContinuousContrastThreeColorEndColor(java.awt.Color)
public java.awt.Color getContinuousContrastTwoColorEndColor()
setContinuousContrastTwoColorEndColor(java.awt.Color)
,
getContinuousContrastThreeColorEndColor()
public void setContinuousContrastThreeColorStartColor(java.awt.Color newColor)
newColor
- Start color of a data element three color continuous range Contrast color.getContinuousContrastThreeColorStartColor()
,
setContinuousContrastThreeColorNeutralColor(java.awt.Color)
,
setContinuousContrastThreeColorEndColor(java.awt.Color)
,
setContinuousContrastTwoColorStartColor(java.awt.Color)
public java.awt.Color getContinuousContrastThreeColorStartColor()
setContinuousContrastThreeColorStartColor(java.awt.Color)
,
getContinuousContrastThreeColorNeutralColor()
,
getContinuousContrastThreeColorEndColor()
,
getContinuousContrastTwoColorStartColor()
public void setContinuousContrastThreeColorEndColor(java.awt.Color newColor)
newColor
- End color of a data element three color continuous range Contrast color.getContinuousContrastThreeColorEndColor()
,
setContinuousContrastThreeColorStartColor(java.awt.Color)
,
setContinuousContrastThreeColorNeutralColor(java.awt.Color)
,
setContinuousContrastTwoColorEndColor(java.awt.Color)
public java.awt.Color getContinuousContrastThreeColorEndColor()
setContinuousContrastThreeColorEndColor(java.awt.Color)
,
getContinuousContrastThreeColorStartColor()
,
getContinuousContrastThreeColorNeutralColor()
,
getContinuousContrastTwoColorEndColor()
public void setContinuousContrastThreeColorNeutralColor(java.awt.Color newColor)
newColor
- Middle color of a data element three color continuous range Contrast color.getContinuousContrastThreeColorNeutralColor()
,
setContinuousContrastThreeColorStartColor(java.awt.Color)
,
setContinuousContrastThreeColorEndColor(java.awt.Color)
,
setContinuousContrastTwoColorStartColor(java.awt.Color)
,
setContinuousContrastTwoColorEndColor(java.awt.Color)
public java.awt.Color getContinuousContrastThreeColorNeutralColor()
setContinuousContrastThreeColorNeutralColor(java.awt.Color)
,
getContinuousContrastThreeColorStartColor()
,
getContinuousContrastThreeColorEndColor()
,
getContinuousContrastTwoColorStartColor()
,
getContinuousContrastTwoColorEndColor()
public boolean equals(DataElementColors that)
|
Components |
|
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |