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 "column".
Example
<script setup>
import { getData, simpleColumns } from "./common/data";
import { Gantt } from "@svar-ui/vue-gantt";
const data = getData();
const cellBorders = "column";
</script>
<template>
<Gantt
:cellBorders="cellBorders"
:tasks="data.tasks" />
</template>