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