forked from taitems/jQuery.Gantt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- gantt.fillData cleaned up, unnecessary logic removed - readme updated
- Loading branch information
Showing
5 changed files
with
89 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,11 @@ | |
<meta name="url" content="https://bekhruz.com"> | ||
<meta name="github" content="https://github.com/uzbeki/jquery-gantt-chart"> | ||
<meta name="npm" content="https://www.npmjs.com/package/@uzbeki/jquery-gantt-chart"> | ||
<link rel="stylesheet" href="./dist/jquery.gantt.min.css"> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script> | ||
<script src="./dist/jquery.gantt.min.js"></script> | ||
<!-- <link rel="stylesheet" href="./dist/jquery.gantt.min.css"> --> | ||
<!-- <script src="./dist/jquery.gantt.min.js"></script> --> | ||
<link rel="stylesheet" href="./src/jquery.gantt.css"> | ||
<script type="module" src="./src//index.js"></script> | ||
<title>jQuery Gantt Chart Demo</title> | ||
<style> | ||
#gantt { | ||
|
@@ -44,19 +46,24 @@ <h1>Gantt Chart as jQuery Component demo</h1> | |
<section> | ||
<h2>Features</h2> | ||
<ul> | ||
<li>Pagination support, page data handler set inside <code>onGetPage</code> option</li> | ||
<li>Customizable cell size with <code>cellSize</code> option</li> | ||
<li>Customizable task(bar) colors with <code>data[i].values[j].customClass</code></li> | ||
<li>Display short description as hints</li> | ||
<li>Scroll with <code>Shift+mouseWheel</code>, or faster scroll with <code>Ctrl+Shift+mouseWheel</code> | ||
<li>π Pagination support, page data handler set inside <code>onGetPage</code> option</li> | ||
<li>π Customizable cell size with <code>cellSize</code> option</li> | ||
<li>π¨ Customizable task(bar) colors with <code>data[i].values[j].customClass</code></li> | ||
<li>π·οΈ Display short description as hints</li> | ||
<li>π±οΈ Scroll with <code>Shift+mouseWheel</code>, or faster scroll with <code>Ctrl+Shift+mouseWheel</code> | ||
</li> | ||
<li>Mark holidays or today</li> | ||
<li>Zoom in/out</li> | ||
<li>π Mark holidays or today</li> | ||
<li>π Zoom in/out</li> | ||
<li>π Drag Sortable Header Support (from <code>v0.3.0</code>)</li> | ||
<li>π ES Module support (from <code>v0.3.0</code>)</li> | ||
<li>π Remember Zoom Level and Header Order (from <code>v0.3.5</code>)</li> | ||
<li>π Resizable Bars (coming soon from <code>v0.4.0</code>)</li> | ||
<li>π Movable Bars (coming soon from <code>v0.5.0</code>)</li> | ||
</ul> | ||
<p>For more, please refer to <a href="https://github.com/uzbeki/jquery-gantt-chart#readme">README file</a>.</p> | ||
</section> | ||
|
||
<script> | ||
<script type='module'> | ||
/** | ||
* Generates dummy data for a Gantt chart. | ||
* @param {number} [page=1] - The page number. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.