Hi Jeff,
We have checked your reported query. We can set Row height to spreadsheet by using the setRowHeight method. In the setRowHeight method we have passed two arguments to the method. First is the value of height you need to set, and second argument is the rowIndex in which the value has to be set. Please check the below code snippet.
|
<template>
<div>
<ejs-button id="customBtn" v-on:click.native="btnClick">
Set Row Height</ejs-button
>
<ejs-spreadsheet ref="spreadsheet" id="spreadsheet"></ejs-spreadsheet>
</div>
</template>
<script>
export default {
methods: {
btnClick: function () {
var spreadsheet = this.$refs.spreadsheet;
spreadsheet.setRowHeight(36 , 2);
},
},
};
</script>
|
For your reference, we have prepared a sample based on your requirement. Please check the below link.
Please check the below link to know more details about setRowHeight method.
Please check the above links and get back to us, if you need further assistance.
Regards,
Gayathri K