ai.aiAssistant.promptTextArea.roundedString
Specifies the border radius. Available options: "small"
, "medium"
, "large"
, "full"
, "none"
.
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "productName" },
{ field: "category" }
],
dataSource: [
{ productName: "Tea", category: "Beverages" },
{ productName: "Coffee", category: "Beverages" }
],
ai: {
aiAssistant: {
promptTextArea: {
rounded: "medium"
}
}
}
});
</script>
In this article