cols Number
(default: 20)
The visible width of the text control, in average character widths.
Example - specify width
<textarea id="description"></textarea>
<script>
$("#description").kendoTextArea({
rows:20,
cols:30,
resizable: "vertical"
})
</script>