You can use NuGet, Bower or npm package managers to install the dhtmlxGantt package into your project.
It's also possible to include the necessary JS/CSS files from CDN.
You can install the Standard version of dhtmlxGantt from npmjs.com, by executing the following command line:
npm install dhtmlx-gantt
Only the Standard version of the Gantt is available at npmjs.com
Professional Evaluation version
Download the trial Gantt package and follow the steps mentioned in the README file. Note that the trial Gantt version is available 30 days only.
Professional version
Send your license number to the contact@dhtmlx.com email to receive a login and a password for a private npm as well as a detailed guide on how to install Gantt. Note that a private npm is available before the expiration of the proprietary Gantt license.
To install dhtmlxGantt through NuGet, execute the following command line:
nuget install DHTMLX.Gantt
If you are using Microsoft Visual Studio, run the following command from the Package Manager Console:
install-package DHTMLX.Gantt
To install dhtmlxGantt through Bower, execute the following command line:
bower install gantt
To include JS/CSS files from CDN, you should set direct links to dhtmlxgantt.js and dhtmlxgantt.css files:
<link rel="stylesheet" href="http://cdn.dhtmlx.com/gantt/edge/dhtmlxgantt.css"
type="text/css">
<script src="http://cdn.dhtmlx.com/gantt/edge/dhtmlxgantt.js"></script>
You can find the full list of links that you can include from CDN, depending on the version of dhtmlxGantt in a separate article.
Download the package of dhtmlxGantt GPL version.
If you have the PRO version of the component, you need to go to the Client Area and download the PRO package from there.
Independent of the version, unpack the downloaded package into a folder of your project. Then include dhtmlxgantt.js and dhtmlxgantt.css files into a page. Make sure that you set correct relative paths to these files:
<script type="text/javascript" src="codebase/dhtmlxgantt.js"></script>
<link rel="stylesheet" href="codebase/dhtmlxgantt.css">
Before installing the Pro version of Gantt, you should uninstall the trial version package (if you've installed it)
All public sources (CDN, NuGet, Bower, and npm) contain a Standard edition of the component, which is distributed under the GPL license.
We also provide our private npm registry from where the Professional and Evaluation versions of the component can be installed.
If for some reason the methods described above are not available to you, there are two possible ways out:
If case of npm, you can install the Pro package from a local folder using npm install ./local_path
or npm link
.
There are step-by-step instructions for both variants:
npm install ../gantt-local-package-path
.npm link
in the package folder.npm link dhtmlx-gantt
.To see the difference between the Standard and PRO versions of the dhtmlxGantt library, check the related article Standard vs PRO Library Versions.
The correct way to install the Pro version would be to remove the trial version package:
npm uninstall dhtmlx-gantt
Then you need to thoroughly check that your applications don't have the dhtmlxgantt.js file anywhere.
For Linux and MacOS, you can use the following commands in the terminal:
grep -rin "dhtmlxGantt v"
grep -rin evaluation
For Windows, you can use the following commands in the command line:
findstr /mis "dhtmlxGantt v" path_to_your_app\*
findstr /mis "evaluation" path_to_your_app\*
After that you can install the Pro version of the Gantt chart as described above.
Back to top