Type Alias NxStackedPivotCell

type NxStackedPivotCell = {
    qAttrDims?: NxAttributeDimValues;
    qAttrExps?: NxAttributeExpressionValues;
    qCanCollapse?: boolean;
    qCanExpand?: boolean;
    qDown?: number;
    qElemNo?: number;
    qMaxPos?: number;
    qMinNeg?: number;
    qRow?: number;
    qSubNodes?: NxStackedPivotCell[];
    qText?: string;
    qType?: NxDimCellType;
    qUp?: number;
    qValue?: number;
}
Index

Properties

Attribute dimensions values.

Attribute expressions values.

qCanCollapse?: boolean

If set to true, it means that the cell can be collapsed. This parameter is not returned if it is set to false.

qCanExpand?: boolean

If set to true, it means that the cell can be expanded. This parameter is not returned if it is set to false.

qDown?: number

Number of elements that are part of the next tail.

qElemNo?: number

Rank number of the value. If set to -1, it means that the value is not an element number.

qMaxPos?: number

Total of the positive values in the current group of cells.

qMinNeg?: number

Total of the negative values in the current group of cells.

qRow?: number

Row index in the data matrix. The indexing starts from 0.

qSubNodes?: NxStackedPivotCell[]

Information about sub nodes (or sub cells). The array is empty [ ] when there are no sub nodes.

qText?: string

Some text.

Type of the cell.

One of:

  • V or NX_DIM_CELL_VALUE
  • E or NX_DIM_CELL_EMPTY
  • N or NX_DIM_CELL_NORMAL
  • T or NX_DIM_CELL_TOTAL
  • O or NX_DIM_CELL_OTHER
  • A or NX_DIM_CELL_AGGR
  • P or NX_DIM_CELL_PSEUDO
  • R or NX_DIM_CELL_ROOT
  • U or NX_DIM_CELL_NULL
  • G or NX_DIM_CELL_GENERATED
qUp?: number

Number of elements that are part of the previous tail.

qValue?: number

Value of the cell. Is set to NaN , if the value is not a number.