cellBorders
Description
Defines borders style in the Gantt chartUsage
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 = "columns";
</script>
<Gantt
{cellBorders}
tasks={data.tasks}
//other settings />