Kendo.Mvc.UI.Fluent.PivotGridV2Builder
Defines the fluent API for configuring the Kendo UI PivotGridV2
Methods
DataSource(System.Action<Kendo.Mvc.UI.Fluent.PivotDataSourceV2Builder<T>>)
Sets the data source configuration of the grid.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.PivotDataSourceV2Builder>
The lambda which configures the data source
Configurator(System.String)
Use it to set the Id of the PivotConfigurator.
Parameters
configurator System.String
The configurator
AutoBind(System.Boolean)
If set to false the widget will not bind to the data source during initialization. In this case data binding will occur when the change event of the data source is fired. By default the widget will bind to the data source specified in the configuration.
Parameters
value System.Boolean
The value for AutoBind
Pdf(System.Action<Kendo.Mvc.UI.Fluent.PivotGridV2PdfSettingsBuilder<T>>)
Configures the Kendo UI PivotGridV2 PDF export settings.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.PivotGridV2PdfSettingsBuilder>
The configurator for the pdf setting.
ColumnWidth(System.Double)
The width of the table columns. Value is treated as pixels.
Parameters
value System.Double
The value for ColumnWidth
Height(System.Double)
The height of the PivotGridV2. Numeric values are treated as pixels.
Parameters
value System.Double
The value for Height
ColumnHeaderTemplate(System.String)
The template which renders the content of the column header cell. By default it renders the caption of the tuple member.The fields which can be used in the template are: member - the member of the corresponding column header cell or tuple - the tuple of the corresponding column header cell. For information about the tuple structure check this link.
Parameters
value System.String
The value for ColumnHeaderTemplate
ColumnHeaderTemplateId(System.String)
The template which renders the content of the column header cell. By default it renders the caption of the tuple member.The fields which can be used in the template are: member - the member of the corresponding column header cell or tuple - the tuple of the corresponding column header cell. For information about the tuple structure check this link.
Parameters
templateId System.String
The ID of the template element for ColumnHeaderTemplate
DataCellTemplate(System.String)
The template which renders the content of the data cell. By default renders the formatted value (fmtValue) of the data item.The fields which can be used in the template are: columnTuple - the tuple of the corresponding column header cell; rowTuple - the tuple of the corresponding row header cell; measure - the value of the data cell measure or dataItem - the data item itself. For information about the tuple structure check this link. About the data item structure review this help topic.
Parameters
value System.String
The value for DataCellTemplate
DataCellTemplateId(System.String)
The template which renders the content of the data cell. By default renders the formatted value (fmtValue) of the data item.The fields which can be used in the template are: columnTuple - the tuple of the corresponding column header cell; rowTuple - the tuple of the corresponding row header cell; measure - the value of the data cell measure or dataItem - the data item itself. For information about the tuple structure check this link. About the data item structure review this help topic.
Parameters
templateId System.String
The ID of the template element for DataCellTemplate
RowHeaderTemplate(System.String)
The template which renders the content of the row header cell. By default it renders the caption of the tuple member.The fields which can be used in the template are: member - the member of the corresponding row header cell or tuple - the tuple of the corresponding row header cell. For information about the tuple structure check this link.
Parameters
value System.String
The value for RowHeaderTemplate
RowHeaderTemplateId(System.String)
The template which renders the content of the row header cell. By default it renders the caption of the tuple member.The fields which can be used in the template are: member - the member of the corresponding row header cell or tuple - the tuple of the corresponding row header cell. For information about the tuple structure check this link.
Parameters
templateId System.String
The ID of the template element for RowHeaderTemplate
Events(System.Action<Kendo.Mvc.UI.Fluent.PivotGridV2EventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.PivotGridV2EventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().PivotGridV2()
.Name("PivotGridV2")
.Events(events => events
.DataBinding("onDataBinding")
)
)