Skip to main content

cellWidth

Description

Defines the width of a cell in pixels

Usage

cellWidth?: number;

Example

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

const data = getData();

</script>

<Gantt tasks={data.tasks} cellWidth={100} />