GridSerializer.EnablePivotedGridPane method

Configures the grid to display a second pane on right pane. This pane can be a fixed multiple of rows for each row in the left pane.

Namespace:  Microsoft.SharePoint.JSGrid
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Sub EnablePivotedGridPane ( _
    pivotedColumns As IEnumerable(Of PivotedGridColumn) _
)
'Usage
Dim instance As GridSerializer
Dim pivotedColumns As IEnumerable(Of PivotedGridColumn)

instance.EnablePivotedGridPane(pivotedColumns)
public void EnablePivotedGridPane(
    IEnumerable<PivotedGridColumn> pivotedColumns
)

Parameters

Remarks

If all passed-in columns don’t specify the same number of fields, a Exception is thrown.

//add pivoted view
gds.EnablePivotedGridPane(utils.GetPivotedGridColumns(data));
'add pivoted view
gds.EnablePivotedGridPane(utils.GetPivotedGridColumns(data))

See also

Reference

GridSerializer class

GridSerializer members

Microsoft.SharePoint.JSGrid namespace