Package cnuphys.splot.style
Interface IStyled
- All Known Implementing Classes:
- Styled
public interface IStyled
- 
Method SummaryModifier and TypeMethodDescriptionGet the color used for auxiliary lines.Get the style used for drawing fits.floatGet the line width for drawing auxiliary lines.Get the color used for symbol borders.Get the color used for fill the interior area.Get the color used for fits.Get the style used for drawing fits.floatGet the line width for drawing fits.intGet the symbol size (full width) in pixels.Get the symbol used for drawing points.voidsetAuxLineColor(Color auxColor) Set the color used for auxiliary lines.voidsetAuxLineStyle(LineStyle lineStyle) Set the style used for drawing auxiliary lines.voidsetAuxLineWidth(float lineWidth) Set the line width for drawing auxiliary lines.voidsetBorderColor(Color borderColor) Set the color used for symbol borders.voidsetFillColor(Color fillColor) Set the color used for fill the interior area.voidsetFitLineColor(Color fitColor) Set the color used for the fit drawing.voidsetFitLineStyle(LineStyle lineStyle) Set the style used for drawing fits.voidsetFitLineWidth(float lineWidth) Set the line width for drawing fit lines.voidsetSymbolSize(int symbolSize) Set symbol size (full width) in pixels.voidsetSymbolType(SymbolType symbolType) Set the symbol used for drawing points.
- 
Method Details- 
getFillColorColor getFillColor()Get the color used for fill the interior area.- Returns:
- the fill color.
 
- 
setFillColorSet the color used for fill the interior area.- Parameters:
- fillColor- the fill color.
 
- 
getBorderColorColor getBorderColor()Get the color used for symbol borders.- Returns:
- the symbol border color.
 
- 
setBorderColorSet the color used for symbol borders.- Parameters:
- borderColor- the border color.
 
- 
getFitLineColorColor getFitLineColor()Get the color used for fits.- Returns:
- the fit line color.
 
- 
getAuxLineColorColor getAuxLineColor()Get the color used for auxiliary lines.- Returns:
- the auxiliary line color.
 
- 
setFitLineColorSet the color used for the fit drawing.- Parameters:
- fitColor- the fit color.
 
- 
setAuxLineColorSet the color used for auxiliary lines.- Parameters:
- auxColor- the auxiliary line color.
 
- 
getFitLineStyleLineStyle getFitLineStyle()Get the style used for drawing fits.- Returns:
- the line style for fits.
 
- 
getAuxLineStyleLineStyle getAuxLineStyle()Get the style used for drawing fits.- Returns:
- the line style for fits.
 
- 
setFitLineStyleSet the style used for drawing fits.- Parameters:
- lineStyle- the fit line style.
 
- 
setAuxLineStyleSet the style used for drawing auxiliary lines.- Parameters:
- lineStyle- the auxiliary line style.
 
- 
getSymbolTypeSymbolType getSymbolType()Get the symbol used for drawing points.- Returns:
- the symbol used for drawing points.
 
- 
setSymbolTypeSet the symbol used for drawing points.- Parameters:
- symbolType- the symbol used for drawing points.
 
- 
getFitLineWidthfloat getFitLineWidth()Get the line width for drawing fits.- Returns:
- the fit line width in pixels.
 
- 
getAuxLineWidthfloat getAuxLineWidth()Get the line width for drawing auxiliary lines.- Returns:
- the auxiliary line width in pixels.
 
- 
setFitLineWidthvoid setFitLineWidth(float lineWidth) Set the line width for drawing fit lines.- Parameters:
- lineWidth- the line width in pixels.
 
- 
setAuxLineWidthvoid setAuxLineWidth(float lineWidth) Set the line width for drawing auxiliary lines.- Parameters:
- lineWidth- the auxiliary line width in pixels.
 
- 
getSymbolSizeint getSymbolSize()Get the symbol size (full width) in pixels.- Returns:
- the symbol size (full width) in pixels.
 
- 
setSymbolSizevoid setSymbolSize(int symbolSize) Set symbol size (full width) in pixels.- Parameters:
- symbolSize- symbol size (full width) in pixels.
 
 
-