Package org.jCharts.chartData.processors
Class StackedDataProcessor
- java.lang.Object
-
- org.jCharts.chartData.processors.StackedDataProcessor
-
abstract class StackedDataProcessor extends java.lang.Object
Notes: 1) Stacked data cannot have any negative values. I don't think i have ever seen a stacked bar chart with negative values just as a side observation. ---->There has been one request for this though...
-
-
Constructor Summary
Constructors Constructor Description StackedDataProcessor()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
processData(IAxisChartDataSet iAxisChartDataSet, AxisChartDataProcessor axisChartDataProcessor)
This method should do a single pass through the data set and calculate all needed values, such as: min, max, sum, etc...
-
-
-
Method Detail
-
processData
public static final void processData(IAxisChartDataSet iAxisChartDataSet, AxisChartDataProcessor axisChartDataProcessor)
This method should do a single pass through the data set and calculate all needed values, such as: min, max, sum, etc... so that we can do this in one pass through the data. Rather than once for each.
- Parameters:
iAxisChartDataSet
-axisChartDataProcessor
-
-
-