I need some help or concept from all of you. I want to create a timeline chart with web technology to display tasks that have start and end date on web browser. What technology or concept to create a timeline graphic chart on the browser would be helpful?
Asked
Active
Viewed 2.6k times
9
-
With HTML5, for better effects you may use [canvas](https://developer.mozilla.org/en/Canvas_tutorial/). – Bali Balo Jul 23 '12 at 04:48
-
1you can have a look at http://stackoverflow.com/questions/10418534/creating-vertical-timelines-with-javascript-jqquery and http://www.webdeveloperjuice.com/2011/09/28/7-beautiful-web-based-timeline-using-javascript-and-css/ – Shreedhar Jul 23 '12 at 04:50
3 Answers
12
Using preexisting tools:
You could build a calendar using a number of calendar plugins that exist, like FullCalendar for jQuery, or any of these other plugins.
Timeline sliders exist, also for jQuery, like Timeline JS, jQuery Timelinr, Timeglider or Tiki-Toki, of which I think the last sounds more aptly suited to your cause.

Ryan Atallah
- 2,977
- 26
- 34
-
-
I think it make sense to add https://developers.google.com/chart/interactive/docs/gallery/timeline – Nikita Dec 05 '16 at 10:49
0
you could try http://functionn.blogspot.com/2012/03/timeline-javascript-library-for.html
or any of the following:
http://functionn.blogspot.com/search/label/timelines
:)

Hirvesh
- 7,636
- 15
- 59
- 72
0
If you want a super-simple, non-interactive, way of displaying timeline data in a few lines of HTML, you can use the Google Charts API to do it. Here's a self-contained example: https://gist.github.com/KorkyPlunger/16c540f7b622b8906c1351e44bf1bf3c

Chris Kline
- 2,249
- 26
- 32