textFieldString
(default: "text")
The data item field which contains the tile title.
Example
<div id="treemap"></div>
<script>
$("#treemap").kendoTreeMap({
dataSource: [
{ description: "Technology Sector", value: 45 },
{ description: "Healthcare Sector", value: 35 },
{ description: "Finance Sector", value: 25 }
],
valueField: "value",
textField: "description"
});
</script>
In this article