Browse Source

Updated docs on supported data types for `start` and `end` (see #684).

v3_develop
jos 9 years ago
parent
commit
728b8afb5c
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      docs/timeline.html

+ 6
- 6
docs/timeline.html View File

@ -205,7 +205,7 @@ var items = [
</tr> </tr>
<tr> <tr>
<td>end</td> <td>end</td>
<td>Date</td>
<td>Date | number | string | Moment</td>
<td>no</td> <td>no</td>
<td>The end date of the item. The end date is optional, and can be left <code>null</code>. <td>The end date of the item. The end date is optional, and can be left <code>null</code>.
If end date is provided, the item is displayed as a range. If end date is provided, the item is displayed as a range.
@ -232,7 +232,7 @@ var items = [
</tr> </tr>
<tr> <tr>
<td>start</td> <td>start</td>
<td>Date</td>
<td>Date | number | string | Moment</td>
<td>yes</td> <td>yes</td>
<td>The start date of the item, for example <code>new Date(2010,9,23)</code>.</td> <td>The start date of the item, for example <code>new Date(2010,9,23)</code>.</td>
</tr> </tr>
@ -468,7 +468,7 @@ var options = {
<tr> <tr>
<td>end</td> <td>end</td>
<td>Date | Number | String</td>
<td>Date | Number | String | Moment</td>
<td>none</td> <td>none</td>
<td>The initial end date for the axis of the timeline. <td>The initial end date for the axis of the timeline.
If not provided, the latest date present in the items set is taken as If not provided, the latest date present in the items set is taken as
@ -584,7 +584,7 @@ var options = {
<tr> <tr>
<td>max</td> <td>max</td>
<td>Date | Number | String</td>
<td>Date | Number | String | Moment</td>
<td>none</td> <td>none</td>
<td>Set a maximum Date for the visible range. <td>Set a maximum Date for the visible range.
It will not be possible to move beyond this maximum. It will not be possible to move beyond this maximum.
@ -600,7 +600,7 @@ var options = {
<tr> <tr>
<td>min</td> <td>min</td>
<td>Date | Number | String</td>
<td>Date | Number | String | Moment</td>
<td>none</td> <td>none</td>
<td>Set a minimum Date for the visible range. <td>Set a minimum Date for the visible range.
It will not be possible to move beyond this minimum. It will not be possible to move beyond this minimum.
@ -762,7 +762,7 @@ var options = {
<tr> <tr>
<td>start</td> <td>start</td>
<td>Date | Number | String</td>
<td>Date | Number | String | Moment</td>
<td>none</td> <td>none</td>
<td>The initial start date for the axis of the timeline. <td>The initial start date for the axis of the timeline.
If not provided, the earliest date present in the events is taken as start date.</td> If not provided, the earliest date present in the events is taken as start date.</td>

Loading…
Cancel
Save