cellHeight
Description
Optional. Defines the height of a cell in pixelsUsage
cellHeight?: number;
Example
The default value is 38px.
<script setup>
import { getData } from "./common/data";
import { Gantt } from "@svar-ui/vue-gantt";
const data = getData();
</script>
<template>
<Gantt :tasks="data.tasks" :cellHeight="32" />
</template>