public interface IAggregationInfo
Modifier and Type | Field and Description |
---|---|
static int |
AVG |
static int |
COUNT |
static int |
COUNTDISTINCT |
static int |
FIRST |
static int |
LAST |
static int |
MAX |
static int |
MAX_OPS |
static int |
MIN |
static int |
STDDEV |
static int |
SUM |
static int |
SUMSQUARE |
static int |
VARIANCE |
Modifier and Type | Method and Description |
---|---|
int |
getAggregateOperator()
Returns the primary aggregate operator used for drill-down.
|
int |
getSecondaryAggregateOperator()
Returns the secondary aggregate operator used for drill-down.
|
boolean |
isAggregatedChart()
This function is used to find out if the current chart is a histogram or not.
|
void |
setAggregatedChart(boolean state)
This function is used to set/unset the histogram option in a chart.
|
void |
setAggregateOperator(int aggOp)
Sets the primary aggregate operator to use when displaying summary charts.
|
void |
setSecondaryAggregateOperator(int aggOp)
Sets the secondary AggregateOperator to use when displaying summary charts.
|
static final int MIN
static final int MAX
static final int AVG
static final int SUM
static final int COUNT
static final int FIRST
static final int LAST
static final int SUMSQUARE
static final int VARIANCE
static final int STDDEV
static final int COUNTDISTINCT
static final int MAX_OPS
boolean isAggregatedChart()
void setAggregatedChart(boolean state)
histState
- Set it to true if a histogram plot is required.void setAggregateOperator(int aggOp)
aggOp
- The input primary aggregate operator, one of:
IDrillDown.SUM IDrillDown.AVG IDrillDown.MIN IDrillDown.MAX IDrillDown.COUNT
int getAggregateOperator()
void setSecondaryAggregateOperator(int aggOp)
aggOp
- The input secondary aggregate operator.IDrillDown.setAggregateOperator(int)
int getSecondaryAggregateOperator()