Vue UI Components Documentation
- Pivot Grid
- Pivot Designer
- Pivot Cell
- Pivot CellFormatting
- Pivot Cells
- Pivot Columns
- Pivot Field
- Pivot FilterField
- Pivot Item
- Pivot Rows
- Pivot Settings
- Pivot ValueField
- Pivot Point
Properties
Name | Type | Default |
---|---|---|
source | Object | null |
Gets or sets pivot source adapter used to supply data to the pivot grid.
|
||
localization | Object | null |
Gets or sets the localization object used to localize the text elements of the pivot grid.
|
||
scrollBarsEnabled | Boolean | true |
Gets or sets whether the scrollbars of the pivot grid are enabled or disabled.
|
||
selectionEnabled | Boolean | true |
Gets or sets whether selection in the pivot grid is enabled or disabled.
|
||
multipleSelectionEnabled | Boolean | true |
Gets or sets whether the multiple selection in the pivot grid is enabled or disabled.
|
||
treeStyleRows | Boolean | true |
Gets or sets the rows of the pivot grid are displayed as a tree structure or using classic OLAP style.
|
||
autoResize | Boolean | false |
Gets or sets if the size of pivot grid adjusts automatically to display the entire content.
|
||
itemsRenderer | Function | null |
Custom rendering function used to render the pivot rows and columns. The function should return a string which is valid HTML.
|
||
cellsRenderer | Function | null |
Custom rendering function used to render the pivot cells. The function should return a string which is valid HTML.
|
||
Events |
||
pivotitemexpanding | Event | |
This event is triggered when a pivot item is expanding. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
pivotitemexpanded | Event | |
This event is triggered after a pivot item is expanded.
Code examples
Bind to the
|
||
pivotitemcollapsing | Event | |
This event is triggered when a pivot item is collapsing. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
pivotitemcollapsed | Event | |
This event is triggered after a pivot item is collapsed.
Code examples
Bind to the
|
||
sortchanging | Event | |
This event is triggered the sorting is about to change. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
sortchanged | Event | |
This event is triggered after the sorting order has changed.
Code examples
Bind to the
|
||
sortremoving | Event | |
This event is triggered the sorting is about to be removed. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
sortremoved | Event | |
This event is triggered after the sorting has been removed.
Code examples
Bind to the
|
||
pivotitemselectionchanged | Event | |
This event is triggered after the selection of a pivot item has changed.
Code examples
Bind to the
|
||
pivotcellmousedown | Event | |
This event is triggered on mousedown over a pivot grid cell. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
pivotcellmouseup | Event | |
This event is triggered on mouseup over a pivot grid cell. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
pivotcellclick | Event | |
This event is triggered on click over a pivot grid cell. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
pivotcelldblclick | Event | |
This event is triggered on double click over a pivot grid cell. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
pivotitemmousedown | Event | |
This event is triggered on mousedown over a pivot grid item. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
pivotitemmouseup | Event | |
This event is triggered on mouseup over a pivot grid item. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
pivotitemclick | Event | |
This event is triggered on click over a pivot grid item. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
pivotitemdblclick | Event | |
This event is triggered on double click over a pivot grid item. You may use the event's cancel flag to stop further processing.
Code examples
Bind to the
|
||
Methods |
||
Name | Arguments | Return Type |
getInstance | Object | |
Returns the instance of the pivot grid component
|
||
refresh | None | |
Refreshes the content of the pivot grid component
|
||
getPivotRows | Object | |
Return the pivot rows of the pivot grid
|
||
getPivotColumns | Object | |
Return the pivot columns of the pivot grid
|
||
getPivotCells | Object | |
Return the pivot cells of the pivot grid
|
Properties
Name | Type | Default |
---|---|---|
type | String | pivotGrid |
Gets or sets the type of the pivot designer - pivotGrid or pivotChart.
|
||
target | Object | null |
Gets or sets the instance of the widget component controlled by the pivot designer component.
|
||
Methods |
||
Name | Arguments | Return Type |
refresh | None | |
Refreshes the content of the pivot designer component.
|
Properties
Name | Type | Default |
---|---|---|
pivotRow | Object | null |
The row of the pivot cell.
|
||
pivotColumn | Object | null |
The column of the pivot cell.
|
Properties
Name | Type | Default |
---|---|---|
prefix | String | null |
Optional text that appears at the start of the formatted string.
|
||
sufix | String | null |
Optional text that appears at the end of the formatted string.
|
||
decimalSeparator | String | . |
Separator for the decimal point in the cell's value.
|
||
thousandsSeparator | String | , |
Separator for the thousands in the cell's value.
|
||
decimalPlaces | Number | 2 |
Number of decimal places for the cell's value.
|
||
negativeWithBrackets | Boolean | false |
Determines if negative numbers will be displayed in brackets () or with a negative sign - .
|
Properties
Name | Type | Default |
---|---|---|
Methods |
||
Name | Arguments | Return Type |
hitTest | point | Object |
Returns the pivot cell at the corresponding position if exists
|
||
clear | None | |
Clears all pivot cells
|
||
setCellValue | pivotRow, pivotColumn, value | None |
Sets the value of a pivot cell
|
||
getCellValue | pivotRow, pivotColumn | Object |
Gets the value of a pivot cell
|
||
drillThroughCell | pivotRow, pivotColumn | Array |
Drills through a pivot cells and returns the respective source data records
|
||
selectCell | pivotRow, pivotColumn | None |
Selects a pivot cell
|
||
unselectCell | pivotRow, pivotColumn | None |
Unselects a pivot cell
|
||
clearSelection | None | |
Clears the selection of all selected pivot cells
|
||
isCellSelected | pivotRow, pivotColumn | Boolean |
Checks if a pivot cell is selected
|
||
getSelectedCellsCount | Number | |
Returns the number of selected cells
|
||
getSelectedCells | Array | |
Returns an array of all selected cells
|
||
getNextCell | pivotCell, position | Object |
Returns the cell left, right, above or below a specific pivot cell
|
Properties
Name | Type | Default |
---|---|---|
resizable | Boolean | true |
Gets or sets if the collection of pivot items is resizable.
|
||
sortable | Boolean | true |
Gets or sets if the collection of pivot items is sortable.
|
||
showExpandCollapseButtons | Boolean | true |
Gets or sets if expand/collapse buttons are visible.
|
||
parentPivotGrid | Object | null |
Returns a reference to the parent pivot grid instance.
|
||
items | Array | [] |
Returns an array of all child pivot items.
|
||
valueItems | Array | [] |
Returns an array of all child pivot value items.
|
||
isHidden | Boolean | false |
Returns true if the pivot items collection is hidden.
|
||
Methods |
||
Name | Arguments | Return Type |
show | None | |
Makes the pivot items collection visible
|
||
hide | None | |
Hides the pivot items collection
|
||
refresh | None | |
Refreshes the content of the pivot items collection
|
||
getHierarchyDepth | Number | |
Returns the depth of the collection
|
||
autoResize | autoResizeMode | None |
Auto resizes the pivot items collection.
autoResizeMode: "default", "fitAll", "fitItemContent"
|
||
getSortItem | Object | |
Returns the sort item of the collection
|
||
getSortOrder | Object | |
Returns the sort order of the collection
|
||
sortBy | pivotItem, | None |
Sorts the items collection
|
||
removeSort | None | |
Removes the sort order of the collection
|
||
selectItem | pivotItem | None |
Selects a pivot item
|
||
unselectItem | pivotItem | None |
Clears the selection of a pivot item
|
||
clearSelection | None | |
Clears the selection of all items in the collection
|
||
getSelectedItems | Array | |
Returns all selected items in an array
|
Properties
Name | Type | Default |
---|---|---|
dataField | String | null |
The dataField in the data source used for this pivot field.
|
||
text | String | null |
The text which will appear in the pivot designer when using this field.
|
||
align | String | null |
Text alignment when the value of this field is displayed on the pivot rows or pivot columns.("left", "center", "right")
|
||
className | String | null |
Name of style to use when displaying this field on the pivot rows or columns.
|
||
classNameSelected | String | null |
Name of style to use when displaying this field on the pivot rows or columns and column or row is selected.
|
Properties
Name | Type | Default |
---|---|---|
dataField | String | null |
The dataField in the data source used for this pivot filter field.
|
||
text | String | null |
The text which will appear in the pivot designer when using this field.
|
||
filterFunction | Function | null |
Implementation of the filtering function used to skip/filter records from the data source. The function should return true if the record should be filtered, otherwise false.
|
Properties
Name | Type | Default |
---|---|---|
isExpanded | Boolean | false |
Returns true if the pivot item is expanded.
|
||
isHidden | Boolean | false |
Returns true if the pivot item is hidden.
|
||
isSelected | Boolean | false |
Returns true if the pivot item is hidden.
|
||
parentItem | Object | null |
Returns a reference to the parent item.
|
||
hierarchy | Object | null |
Returns a reference to the parent rows or columns hierarchy.
|
||
parentPivotGrid | Object | null |
Returns a reference to the parent pivot grid instance.
|
||
items | Array | [] |
Returns an array of all child pivot items.
|
||
valueItems | Array | [] |
Returns an array of all child pivot value items.
|
||
Methods |
||
Name | Arguments | Return Type |
getWidth | Number | |
Gets the width of the pivot item
|
||
getDisplayWidth | Number | |
Gets the displayed width of the pivot item
|
||
autoResize | None | |
Auto resizes the pivot item
|
||
getHeight | Number | |
Gets the height of the pivot item
|
||
getDisplayHeight | Number | |
Gets the displayed height of the pivot item
|
||
setHeight | height | None |
Sets the height of the pivot item
|
||
expand | None | |
Expands the pivot item so all sub-items will be visible
|
||
collapse | None | |
Collapses the pivot item so all sub-items will be invisible
|
Properties
Name | Type | Default |
---|---|---|
resizable | Boolean | true |
Gets or sets if the collection of pivot items is resizable.
|
||
sortable | Boolean | true |
Gets or sets if the collection of pivot items is sortable.
|
||
showExpandCollapseButtons | Boolean | true |
Gets or sets if expand/collapse buttons are visible.
|
||
parentPivotGrid | Object | null |
Returns a reference to the parent pivot grid instance.
|
||
items | Array | [] |
Returns an array of all child pivot items.
|
||
valueItems | Array | [] |
Returns an array of all child pivot value items.
|
||
isHidden | Boolean | false |
Returns true if the pivot items collection is hidden.
|
||
Methods |
||
Name | Arguments | Return Type |
show | None | |
Makes the pivot items collection visible
|
||
hide | None | |
Hides the pivot items collection
|
||
refresh | None | |
Refreshes the content of the pivot items collection
|
||
getHierarchyDepth | Number | |
Returns the depth of the collection
|
||
autoResize | autoResizeMode | None |
Auto resizes the pivot items collection.
autoResizeMode: "default", "fitAll", "fitItemContent"
|
||
getSortItem | Object | |
Returns the sort item of the collection
|
||
getSortOrder | Object | |
Returns the sort order of the collection
|
||
sortBy | pivotItem, sortOrder | None |
Sorts the items collection
|
||
removeSort | None | |
Removes the sort order of the collection
|
||
selectItem | pivotItem | None |
Selects a pivot item
|
||
unselectItem | pivotItem | None |
Clears the selection of a pivot item
|
||
clearSelection | None | |
Clears the selection of all items in the collection
|
||
getSelectedItems | Array | |
Returns all selected items in an array
|
Properties
Name | Type | Default |
---|---|---|
pivotValuesOnRows | Boolean | false |
Determines whether the pivot values will be displayed on rows or columns.
|
||
rows | Boolean | [] |
A list of data fields which will be used to build the pivot rows.
|
||
columns | Boolean | [] |
A list of data fields which will be used to build the pivot columns.
|
||
values | Boolean | [] |
A list of data fields which will be used to build the pivot values.
|
||
filters | Boolean | [] |
A list of filters to apply on the source records while building the pivot table.
|
||
theme | String | '' |
Sets the widget's theme. Include the theme's CSS file after jqx.base.css.
|
Properties
Name | Type | Default |
---|---|---|
dataField | String | undefined |
The dataField in the data source used for this pivot field.
|
||
function | String | Function | undefined |
The data aggregation function to use when calculating the cells values. You can either use the name of one of the built in functions like 'sum', 'count', 'min', 'max', 'product', 'average' or provide the implementation of your own function.
|
||
text | String | undefined |
The text which will appear in the pivot designer when using this field.
|
||
align | String | undefined |
Text alignment when the value of this field is displayed on the pivot rows or pivot columns.
|
||
className | String | undefined |
Name of style to use when displaying this field on the pivot rows or columns.
|
||
classNameSelected | String | undefined |
Name of style to use when displaying this field on the pivot rows or columns and column or row is selected.
|
||
cellsClassName | String | undefined |
Name of style to use when displaying the cells of this pivot value field.
|
||
cellsClassNameSelected | String | undefined |
Name of style to use when displaying this cells this pivot value field when the cells are selected.
|
||
formatSettings | Object | {} |
|
Properties
Name | Type | Default |
---|---|---|
x | Number | null |
X coordinate
|
||
y | Number | null |
Y coordinate
|