X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/output/Ext.grid.PivotAxis.html diff --git a/docs/output/Ext.grid.PivotAxis.html b/docs/output/Ext.grid.PivotAxis.html deleted file mode 100644 index ad6cf96e..00000000 --- a/docs/output/Ext.grid.PivotAxis.html +++ /dev/null @@ -1,829 +0,0 @@ -
Properties Methods Events Config Options Direct Link
Observable
-  Component
-    PivotAxis

Class Ext.grid.PivotAxis

Package:Ext.grid
Defined In:PivotAxis.js
Class:PivotAxis
Extends:Component

PivotAxis is a class that supports a Ext.grid.PivotGrid. Each PivotGrid contains two PivotAxis instances - the left -axis and the top axis. Each PivotAxis defines an ordered set of dimensions, each of which should correspond to a field in a -Store's Record (see Ext.grid.PivotGrid documentation for further explanation).

-

Developers should have little interaction with the PivotAxis instances directly as most of their management is performed by -the PivotGrid. An exception is the dynamic reconfiguration of axes at run time - to achieve this we use PivotAxis's -setDimensions function and refresh the grid:

-
var pivotGrid = new Ext.grid.PivotGrid({
-    //some PivotGrid config here
-});
-
-//change the left axis dimensions
-pivotGrid.leftAxis.setDimensions([
-    {
-        dataIndex: 'person',
-        direction: 'DESC',
-        width    : 100
-    },
-    {
-        dataIndex: 'product',
-        direction: 'ASC',
-        width    : 80
-    }
-]);
-
-pivotGrid.view.refresh(true);
-This clears the previous dimensions on the axis and redraws the grid with the new dimensions.

Config Options

Config OptionsDefined By
 allowDomMove : Boolean
Whether the component can move the Dom node when rendering (defaults to true).
Component
 data : Mixed
The initial set of data to apply to the tpl to -update the content area of the Component.
Component
 disabled : Boolean
Render this component disabled (default is false).
Component
 disabledClass : String
CSS class added to the component when it is disabled (defaults to 'x-item-disabled').
Component
 hidden : Boolean
Render this component hidden (default is false). If true, the -hide method will be called internally.
Component
 orientation : String
One of 'vertical' or 'horizontal'. Defaults to horizontal
PivotAxis

Public Properties

PropertyDefined By
 disabled : Boolean
True if this component is disabled. Read-only.
Component
 hidden : Boolean
True if this component is hidden. Read-only.
Component
 initialConfig : Object
This Component's initial configuration specification. Read-only.
Component
 rendered : Boolean
True if this component has been rendered. Read-only.
Component

Public Methods

MethodDefined By

Public Events

EventDefined By
\ No newline at end of file