Skip to main content

cellHeight

Description

Defines the height of a cell in pixels

Usage

cellHeight?: number;

Example

The default value is 38px.

<script>
import { getData } from "./common/data";
import { Gantt } from "wx-svelte-gantt";

const data = getData();

</script>

<Gantt tasks={data.tasks} cellHeight={32} />