Skip to main content

cellBorders

Description

Defines borders style in the Gantt chart

Usage

cellBorders?: string;

Parameters

  • cellBorders - to show all lines in the grid (horizontal and vertical), set the borders value to "full". To hide horizontal lines, set the value to "columns".

Example

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

const data = getData();

let cellBorders = "full";

</script>

<Gantt
{cellBorders}
tasks={data.tasks}
//other settings />