promptTextArea.labelObject

Specifies the label configuration for the textarea.

Example

<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    promptTextArea: {
        label: {
            content: "Enter your prompt",
            floating: true
        }
    }
});
</script>