Kendo.Mvc.UI.Fluent.TreeMapBuilder
Defines the fluent API for configuring the Kendo UI TreeMap
Methods
DataSource(System.Action<Kendo.Mvc.UI.Fluent.HierarchicalDataSourceBuilder<System.Object>>)
Configure the DataSource of the component
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.HierarchicalDataSourceBuilder>
The action that configures the M:Kendo.Mvc.UI.Fluent.TreeMapBuilder.DataSource(System.Action{Kendo.Mvc.UI.Fluent.HierarchicalDataSourceBuilder{System.Object}}).
Example (ASPX)
<%= Html.Kendo().TreeMap()
.Name("treeMap")
.DataSource(dataSource => dataSource
.Read(read => read
.Action("Action", "TreeMap")
)
)
%>
Colors(System.Action<Kendo.Mvc.UI.Fluent.TreeMapColorRangeFactory>)
The default colors for the treemap tiles. When all colors are used, new colors are pulled from the start again.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.TreeMapColorRangeFactory>
The add action.
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
Theme(System.String)
The theme of the TreeMap.
Parameters
value System.String
The value for Theme
ValueField(System.String)
The data item field which contains the tile value.
Parameters
value System.String
The value for ValueField
ColorField(System.String)
The data item field which contains the tile color.
Parameters
value System.String
The value for ColorField
TextField(System.String)
The data item field which contains the tile title.
Parameters
value System.String
The value for TextField
Template(System.String)
The template which renders the treeMap tile content.The fields which can be used in the template are: dataItem - the original data item used to construct the point. or text - the original tile text..
Parameters
value System.String
The value for Template
TemplateId(System.String)
The template which renders the treeMap tile content.The fields which can be used in the template are: dataItem - the original data item used to construct the point. or text - the original tile text..
Parameters
templateId System.String
The ID of the template element for Template
Colors(System.String[])
The default colors for the TreeMap items (tiles). Can be set to array of specific colors or array of color ranges. For more information on the widget behavior, see the Colors section on the TreeMap Overview page.
Parameters
value System.String[]
The value for Colors
Type(Kendo.Mvc.UI.TreeMapType)
The layout type for the Treemap.
Parameters
value Kendo.Mvc.UI.TreeMapType
The value for Type
Events(System.Action<Kendo.Mvc.UI.Fluent.TreeMapEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.TreeMapEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().TreeMap()
.Name("TreeMap")
.Events(events => events
.ItemCreated("onItemCreated")
)
)