Skip to content

Install RevoGrid Gantt

Install @revolist/gantt alongside the core grid and Pro. Add only the framework wrapper your application uses.

  1. Install the packages.

    Terminal window
    pnpm add @revolist/revogrid @revolist/revogrid-pro @revolist/gantt
  2. Import the product styles once in the application entry point.

    import '@revolist/revogrid-pro/dist/revogrid-pro.css';
    import '@revolist/gantt/styles.css';
  3. Register GanttPlugin on the grid.

    import { GanttPlugin } from '@revolist/gantt';
    grid.plugins = [GanttPlugin];
  4. Give the grid a visible size. Gantt needs both width and height to calculate its virtual viewport.

    .project-gantt {
    display: block;
    width: 100%;
    height: 640px;
    }

The general Pro and product installation guide covers private registry, pre-built, GitHub, source-build, and no-build distribution options.