npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@svar-ui/vue-gantt

v2.7.2

Published

SVAR Vue Gantt library

Readme

SVAR Vue Gantt Chart

HomepageGetting StartedDemos

npm License npm downloads

SVAR Vue Gantt is a customizable, interactive Gantt chart component for Vue 3 designed for visualizing project timelines. The component provides an intuitive interface for managing tasks and dependencies directly on the timeline via drag-and-drop or a customizable task edit form. Comes with full TypeScript support, developer-friendly API, and flexible CSS styling.

The library provides a lightweight, MIT-licensed core for building Gantt charts with essential project scheduling functionality. For more advanced use cases, the PRO edition adds scheduling logic such as auto-scheduling, working time calendars, critical path analysis, baselines, and other features required for complex project planning.

Key Features

  • Interactive drag-and-drop task editing
  • Task dependencies and hierarchical structure
  • Configurable timeline with flexible time scales
  • Customizable grid, task bars, and UI via CSS
  • Sorting and filtering (including natural language search)
  • Built-in tooltips, context menu, and toolbar
  • Zooming with scroll
  • Hotkeys support for common actions
  • High performance with virtual rendering for large datasets
  • Light and dark themes
  • Full TypeScript support

:rocket: PRO Edition

SVAR Vue Gantt is available in open-source and PRO Editions. The PRO Edition offers additional features and automation logic:

  • Scheduling logic → auto-scheduling, critical path, slack, summary tasks automation
  • Resource management → resource assignment, workload visualization
  • Planning tools → baselines, markers
  • Calendar control → working-time calendar, individual calendars for tasks and resources
  • Advanced structure → rollups, split tasks, unscheduled tasks, WBS codes support
  • Workflow features → undo/redo
  • Data Export → PDF, PNG, Excel, MS Project import/export

Visit the pricing page for full feature comparison, licensing details, and free trial.

Or see the live demo.

:hammer_and_wrench: How to Use

To install SVAR Vue Gantt:

npm install @svar-ui/vue-gantt

To use the Gantt chart, simply import the package and include the component in your Vue file:

<script setup>
import { Gantt } from "@svar-ui/vue-gantt";
import "@svar-ui/vue-gantt/all.css";

const tasks = [
    {
        id: 1,
        start: new Date(2024, 3, 2),
        end: new Date(2024, 3, 17),
        text: "Project planning",
        progress: 30,
        parent: 0,
        type: "summary",
        open: true,
        details: "Outline the project's scope and resources.",
    },
];
const links = [];
const scales = [
    { unit: "month", step: 1, format: "%F %Y" },
    { unit: "day", step: 1, format: "%j" },
];
</script>

<template>
    <Gantt :tasks="tasks" :links="links" :scales="scales" />
</template>

For further instructions, follow the detailed how-to-start guide.

:star: Show Your Support

If SVAR Vue Gantt helps your project, give us a star! It helps us reach more developers and keeps us motivated to add new features.

:speech_balloon: Need Help?

Post an Issue or use our community forum.