📈 Fat Gantt

Free Feature - Thicker Dependency Lines for Easier Clicking

Overview

The Fat Gantt feature makes dependency lines in JobTread's Gantt view thicker and easier to click. Instead of struggling to precisely click on thin 1.5px lines, you can now easily select dependency lines that are over twice as thick.

Key Features

Getting Started

Prerequisites

Enabling the Feature

  1. Click the JT Power Tools extension icon in your Chrome toolbar
  2. Find the "Schedule & Calendar" section
  3. Locate the "Fat Gantt" toggle
  4. Toggle it ON - the switch will turn blue
  5. Navigate to any JobTread Gantt view to see the thicker lines
Enabled by Default

Fat Gantt is enabled by default when you install JT Power Tools. If you prefer the original thin lines, you can toggle it off.

How It Works

Visual Comparison

Here's what changes when Fat Gantt is enabled:

Property Before (Default) After (Fat Gantt)
Line Width 1.5px 3.5px
Selected Line Width 1.5px 4px
Line Ends Square Rounded
Click Target Tiny 2x+ Larger

The Problem It Solves

JobTread's default Gantt dependency lines are just 1.5 pixels wide. This creates several issues:

The Solution

Fat Gantt increases line thickness using CSS, making them:

Dark Mode Support

When using Dark Mode, Fat Gantt automatically adjusts the dependency line colors for better visibility:

Works with Dark Mode

Fat Gantt is fully compatible with the Dark Mode feature. The colors automatically adapt for optimal visibility.

Best Practices

When Fat Gantt Helps Most

When to Consider Disabling

You might prefer to disable Fat Gantt if:

Compatibility

Works With

Troubleshooting

Lines Still Look Thin

Solution:

Lines Not Visible in Dark Mode

Solution:

Feature Not Working After Update

Solution:

Technical Details

How It's Implemented

Fat Gantt uses CSS injection to modify the SVG path elements that make up dependency lines:

CSS Applied

/* Normal dependency lines */
stroke-width: 3.5px;
stroke-linecap: round;
stroke-linejoin: round;

/* Selected dependency lines */
stroke-width: 4px;

Zero Performance Impact

Because Fat Gantt is a pure CSS solution:

Related Guides