cellBorders
Description
Optional. Defines borders style in the Gantt chartUsage
cellBorders?: "column" | "full";
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 "@svar-ui/svelte-gantt";
const data = getData();
let cellBorders = "columns";
</script>
<Gantt
{cellBorders}
tasks={data.tasks} />