Package org.primefaces.model.chart
Class CartesianChartModel
- java.lang.Object
-
- org.primefaces.model.chart.ChartModel
-
- org.primefaces.model.chart.CartesianChartModel
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BarChartModel,BubbleChartModel,LineChartModel,OhlcChartModel
public class CartesianChartModel extends ChartModel
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CartesianChartModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddSeries(ChartSeries chartSeries)voidclear()protected voidcreateAxes()Map<AxisType,Axis>getAxes()AxisgetAxis(AxisType type)StringgetDatatipEditor()StringgetDatatipFormat()List<ChartSeries>getSeries()booleanisAnimate()booleanisShowDatatip()booleanisShowPointLabels()booleanisZoom()voidsetAnimate(boolean animate)voidsetDatatipEditor(String datatipEditor)voidsetDatatipFormat(String datatipFormat)voidsetShowDatatip(boolean showDatatip)voidsetShowPointLabels(boolean showPointLabels)voidsetZoom(boolean zoom)-
Methods inherited from class org.primefaces.model.chart.ChartModel
getDataRenderMode, getExtender, getLegendCols, getLegendLabel, getLegendPlacement, getLegendPosition, getLegendRows, getNegativeSeriesColors, getSeriesColors, getTitle, isLegendEscapeHtml, isMouseoverHighlight, isResetAxesOnResize, isShadow, setDataRenderMode, setExtender, setLegendCols, setLegendEscapeHtml, setLegendLabel, setLegendPlacement, setLegendPosition, setLegendRows, setMouseoverHighlight, setNegativeSeriesColors, setResetAxesOnResize, setSeriesColors, setShadow, setTitle
-
-
-
-
Method Detail
-
createAxes
protected void createAxes()
-
getSeries
public List<ChartSeries> getSeries()
-
addSeries
public void addSeries(ChartSeries chartSeries)
-
clear
public void clear()
-
isZoom
public boolean isZoom()
-
setZoom
public void setZoom(boolean zoom)
-
isAnimate
public boolean isAnimate()
-
setAnimate
public void setAnimate(boolean animate)
-
isShowDatatip
public boolean isShowDatatip()
-
setShowDatatip
public void setShowDatatip(boolean showDatatip)
-
getDatatipFormat
public String getDatatipFormat()
-
setDatatipFormat
public void setDatatipFormat(String datatipFormat)
-
isShowPointLabels
public boolean isShowPointLabels()
-
setShowPointLabels
public void setShowPointLabels(boolean showPointLabels)
-
getDatatipEditor
public String getDatatipEditor()
-
setDatatipEditor
public void setDatatipEditor(String datatipEditor)
-
-