Class MarkerOptions
- java.lang.Object
-
- org.wicketstuff.jqplot.lib.elements.MarkerOptions
-
- All Implemented Interfaces:
Serializable
public class MarkerOptions extends Object implements Serializable
The default jqPlot marker renderer, rendering the points on the line.- Author:
- inaiat
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MarkerOptions()Instantiates a new marker options.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetColor()Gets the color.IntegergetLineWidth()Gets the line width.BooleangetShadow()Gets the shadow.StringgetShadowAlpha()Gets the shadow alpha.FloatgetShadowAngle()Gets the shadow angle.IntegergetShadowDepth()Gets the shadow depth.IntegergetShadowOffset()Gets the shadow offset.JqPlotResourcesgetShadowRenderer()Gets the shadow renderer.JqPlotResourcesgetShapeRenderer()Gets the shape renderer.BooleangetShow()Gets the show.FloatgetSize()Gets the size.StringgetStyle()Gets the style.MarkerOptionslineWidth(Integer lineWidth)Line width.voidsetColor(String color)Sets the color.voidsetLineWidth(Integer lineWidth)Sets the line width.voidsetShadow(Boolean shadow)Sets the shadow.voidsetShadowAlpha(String shadowAlpha)Sets the shadow alpha.voidsetShadowAngle(Float shadowAngle)Sets the shadow angle.voidsetShadowDepth(Integer shadowDepth)Sets the shadow depth.voidsetShadowOffset(Integer shadowOffset)Sets the shadow offset.voidsetShadowRenderer(JqPlotResources shadowRenderer)Sets the shadow renderer.voidsetShapeRenderer(JqPlotResources shapeRenderer)Sets the shape renderer.voidsetShow(Boolean show)Sets the show.voidsetSize(Float size)Sets the size.voidsetStyle(String style)Sets the style.MarkerOptionsshow(Boolean show)Show.MarkerOptionssize(Float size)Size.MarkerOptionsstyle(String style)Style.
-
-
-
Method Detail
-
style
public MarkerOptions style(String style)
Style.- Parameters:
style- the style- Returns:
- the marker options
-
size
public MarkerOptions size(Float size)
Size.- Parameters:
size- the size- Returns:
- the marker options
-
lineWidth
public MarkerOptions lineWidth(Integer lineWidth)
Line width.- Parameters:
lineWidth- the line width- Returns:
- the marker options
-
show
public MarkerOptions show(Boolean show)
Show.- Parameters:
show- the show- Returns:
- the marker options
-
getStyle
public String getStyle()
Gets the style.- Returns:
- style
-
setStyle
public void setStyle(String style)
Sets the style.- Parameters:
style- the new style
-
getShow
public Boolean getShow()
Gets the show.- Returns:
- the show
-
setShow
public void setShow(Boolean show)
Sets the show.- Parameters:
show- the new show
-
getLineWidth
public Integer getLineWidth()
Gets the line width.- Returns:
- the line width
-
setLineWidth
public void setLineWidth(Integer lineWidth)
Sets the line width.- Parameters:
lineWidth- the new line width
-
getSize
public Float getSize()
Gets the size.- Returns:
- the size
-
setSize
public void setSize(Float size)
Sets the size.- Parameters:
size- the new size
-
getColor
public String getColor()
Gets the color.- Returns:
- the color
-
setColor
public void setColor(String color)
Sets the color.- Parameters:
color- the new color
-
getShadow
public Boolean getShadow()
Gets the shadow.- Returns:
- the shadow
-
setShadow
public void setShadow(Boolean shadow)
Sets the shadow.- Parameters:
shadow- the new shadow
-
getShadowAngle
public Float getShadowAngle()
Gets the shadow angle.- Returns:
- the shadow angle
-
setShadowAngle
public void setShadowAngle(Float shadowAngle)
Sets the shadow angle.- Parameters:
shadowAngle- the new shadow angle
-
getShadowOffset
public Integer getShadowOffset()
Gets the shadow offset.- Returns:
- the shadow offset
-
setShadowOffset
public void setShadowOffset(Integer shadowOffset)
Sets the shadow offset.- Parameters:
shadowOffset- the new shadow offset
-
getShadowDepth
public Integer getShadowDepth()
Gets the shadow depth.- Returns:
- the shadow depth
-
setShadowDepth
public void setShadowDepth(Integer shadowDepth)
Sets the shadow depth.- Parameters:
shadowDepth- the new shadow depth
-
getShadowAlpha
public String getShadowAlpha()
Gets the shadow alpha.- Returns:
- the shadow alpha
-
setShadowAlpha
public void setShadowAlpha(String shadowAlpha)
Sets the shadow alpha.- Parameters:
shadowAlpha- the new shadow alpha
-
getShadowRenderer
public JqPlotResources getShadowRenderer()
Gets the shadow renderer.- Returns:
- the shadow renderer
-
setShadowRenderer
public void setShadowRenderer(JqPlotResources shadowRenderer)
Sets the shadow renderer.- Parameters:
shadowRenderer- the new shadow renderer
-
getShapeRenderer
public JqPlotResources getShapeRenderer()
Gets the shape renderer.- Returns:
- the shape renderer
-
setShapeRenderer
public void setShapeRenderer(JqPlotResources shapeRenderer)
Sets the shape renderer.- Parameters:
shapeRenderer- the new shape renderer
-
-