Browse Source

Merge branch 'develop' into alex_dev

css_transitions
Alex de Mulder 10 years ago
parent
commit
c455c2ded8
3 changed files with 620 additions and 478 deletions
  1. +608
    -468
      docs/graph.html
  2. +10
    -10
      docs/timeline.html
  3. +2
    -0
      examples/timeline/01_basic.html

+ 608
- 468
docs/graph.html
File diff suppressed because it is too large
View File


+ 10
- 10
docs/timeline.html View File

@ -14,6 +14,16 @@
<h1>Timeline documentation</h1>
<h2 id="Overview">Overview</h2>
<p>
The Timeline is an interactive visualization chart to visualize data in time.
The data items can take place on a single date, or have a start and end date (a range).
You can freely move and zoom in the timeline by dragging and scrolling in the
Timeline. Items can be created, edited, and deleted in the timeline.
The time scale on the axis is adjusted automatically, and supports scales ranging
from milliseconds to years.
</p>
<h2 id="Contents">Contents</h2>
<ul>
@ -32,16 +42,6 @@
<li><a href="#Data_Policy">Data Policy</a></li>
</ul>
<h2 id="Overview">Overview</h2>
<p>
The Timeline is an interactive visualization chart to visualize data in time.
The data items can take place on a single date, or have a start and end date (a range).
You can freely move and zoom in the timeline by dragging and scrolling in the
Timeline. Items can be created, edited, and deleted in the timeline.
The time scale on the axis is adjusted automatically, and supports scales ranging
from milliseconds to years.
</p>
<h2 id="Example">Example</h2>
<p>
The following code shows how to create a Timeline and provide it with data.

+ 2
- 0
examples/timeline/01_basic.html View File

@ -7,6 +7,8 @@
body, html {
font-family: sans-serif;
}
</style>
<script src="../../dist/vis.js"></script>

Loading…
Cancel
Save