ai.aiAssistant.views.buttonIconString
The icon name of the toolbar button rendered for the view.
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "productName" },
{ field: "category" }
],
dataSource: [
{ productName: "Tea", category: "Beverages" },
{ productName: "Coffee", category: "Beverages" }
],
ai: {
aiAssistant: {
views: [
{
type: "custom",
name: "charts",
buttonText: "Charts",
buttonIcon: "chart-line"
}
]
}
}
});
</script>
In this article