Package org.wicketstuff.jqplot.lib.chart
Class LineSeriesChart<I extends Number,V extends Number>
- java.lang.Object
-
- org.wicketstuff.jqplot.lib.chart.AbstractChart<LineSeriesData<I,V>,String>
-
- org.wicketstuff.jqplot.lib.chart.LineSeriesChart<I,V>
-
- Type Parameters:
I- type of index of serieV- type of value of serie
- All Implemented Interfaces:
Serializable,Chart<LineSeriesData<I,V>>
public class LineSeriesChart<I extends Number,V extends Number> extends AbstractChart<LineSeriesData<I,V>,String>
Simple implementation of Line Series Chart. This class can/should be extended.- Author:
- inaiat
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LineSeriesChart(String title)LineSeriesChart(String title, String labelX, String labelY)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddValue(Collection<LineSeriesItem<I,V>> value)voidaddValues(Collection<LineSeriesItem<I,V>>... values)ChartConfiguration<String>getChartConfiguration()Return chart configurationLineSeriesData<I,V>getChartData()Return chart data.-
Methods inherited from class org.wicketstuff.jqplot.lib.chart.AbstractChart
addIntervalColors, addIntervals, addSerie, addSeries, addSeriesColors, addSeriesColors, getAxes, getAxesDefaults, getCanvasOverlay, getGridPadding, getSeries, getSeriesColors, getSeriesDefaults, getTitle, getXAxis, getYAxis, setAxes, setAxesDefaults, setBarMargin, setBubbleAlpha, setCaptureRightClick, setDataLabels, setFill, setFillZero, setGridPadding, setHighlightAlpha, setHighlightMouseDown, setLabelX, setLabelY, setLegend, setLineWidth, setSeries, setSeriesColors, setSeriesDefaults, setShadow, setShadowAlpha, setShowDataLabels, setShowLabels, setSimpleTitle, setSliceMargin, setStackSeries, setTitle
-
-
-
-
Method Detail
-
getChartData
public LineSeriesData<I,V> getChartData()
Description copied from interface:ChartReturn chart data.- Returns:
ChartData
-
addValue
public void addValue(Collection<LineSeriesItem<I,V>> value)
-
addValues
public void addValues(Collection<LineSeriesItem<I,V>>... values)
-
getChartConfiguration
public ChartConfiguration<String> getChartConfiguration()
Description copied from interface:ChartReturn chart configuration- Specified by:
getChartConfigurationin interfaceChart<I extends Number>- Specified by:
getChartConfigurationin classAbstractChart<LineSeriesData<I extends Number,V extends Number>,String>- Returns:
- chartConfiguration
-
-