Class SimpleSeriesRenderer
- Direct Known Subclasses:
XYSeriesRenderer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the number format for displaying chart values.intgetColor()Returns the series color.intReturns the gradient start color.doubleReturns the gradient start value.intReturns the gradient stop color.doubleReturns the gradient stop value.Returns the stroke style.booleanReturns if the bounding points of the first and last visible ones should be displayed.booleanReturns the gradient is enabled value.booleanReturns if the item is displayed highlighted.booleanReturns if the legend item for this renderer should be visible.voidsetChartValuesFormat(NumberFormat format) Sets the number format for displaying chart values.voidsetColor(int color) Sets the series color.voidsetDisplayBoundingPoints(boolean display) Sets if the bounding points of the first and last visible ones should be displayed.voidsetGradientEnabled(boolean enabled) Sets the gradient enabled value.voidsetGradientStart(double start, int color) Sets the gradient start value and color.voidsetGradientStop(double start, int color) Sets the gradient stop value and color.voidsetHighlighted(boolean highlighted) Sets if the item for this renderer should be highlighted.voidsetShowLegendItem(boolean showLegend) Sets if the legend item for this renderer should be visible.voidsetStroke(BasicStroke stroke) Sets the stroke style.
-
Constructor Details
-
SimpleSeriesRenderer
public SimpleSeriesRenderer()
-
-
Method Details
-
getColor
public int getColor()Returns the series color.
Returns
the series color
-
setColor
public void setColor(int color) Sets the series color.
Parameters
color: the series color
-
getStroke
Returns the stroke style.
Returns
the stroke style
-
setStroke
Sets the stroke style.
Parameters
stroke: the stroke style
-
isGradientEnabled
public boolean isGradientEnabled()Returns the gradient is enabled value.
Returns
the gradient enabled
-
setGradientEnabled
public void setGradientEnabled(boolean enabled) Sets the gradient enabled value.
Parameters
enabled: the gradient enabled
-
getGradientStartValue
public double getGradientStartValue()Returns the gradient start value.
Returns
the gradient start value
-
getGradientStartColor
public int getGradientStartColor()Returns the gradient start color.
Returns
the gradient start color
-
setGradientStart
public void setGradientStart(double start, int color) Sets the gradient start value and color.
Parameters
-
start: the gradient start value -
color: the gradient start color
-
-
getGradientStopValue
public double getGradientStopValue()Returns the gradient stop value.
Returns
the gradient stop value
-
getGradientStopColor
public int getGradientStopColor()Returns the gradient stop color.
Returns
the gradient stop color
-
setGradientStop
public void setGradientStop(double start, int color) Sets the gradient stop value and color.
Parameters
-
start: the gradient stop value -
color: the gradient stop color
-
-
isShowLegendItem
public boolean isShowLegendItem()Returns if the legend item for this renderer should be visible.
Returns
the visibility flag for the legend item for this renderer
-
setShowLegendItem
public void setShowLegendItem(boolean showLegend) Sets if the legend item for this renderer should be visible.
Parameters
showLegend: the visibility flag for the legend item for this renderer
-
isHighlighted
public boolean isHighlighted()Returns if the item is displayed highlighted.
Returns
the highlighted flag for the item for this renderer
-
setHighlighted
public void setHighlighted(boolean highlighted) Sets if the item for this renderer should be highlighted. Pie chart is supported for now.
Parameters
highlighted: the highlighted flag for the item for this renderer
-
isDisplayBoundingPoints
public boolean isDisplayBoundingPoints()Returns if the bounding points of the first and last visible ones should be displayed.
Returns
the bounding points display
-
setDisplayBoundingPoints
public void setDisplayBoundingPoints(boolean display) Sets if the bounding points of the first and last visible ones should be displayed.
Parameters
display: the bounding points display
-
getChartValuesFormat
Returns the number format for displaying chart values.
Returns
the number format for chart values
-
setChartValuesFormat
Sets the number format for displaying chart values.
Parameters
format: the number format for chart values
-