<td>If true, the Timeline will automatically detect when its
container is resized, and redraw itself accordingly.</td>
<td>If true, the Timeline will automatically detect when its container is resized, and redraw itself accordingly. If false, the Timeline can be forced to repaint after its container has been resized using the function <code>repaint()</code>.</td>
</tr>
</tr>
<tr>
<tr>
@ -402,7 +401,7 @@ var options = {
<tr>
<tr>
<td>height</td>
<td>height</td>
<td>String</td>
<td>Number | String</td>
<td>none</td>
<td>none</td>
<td>The height of the timeline in pixels or as a percentage.
<td>The height of the timeline in pixels or as a percentage.
When height is undefined or null, the height of the timeline is automatically
When height is undefined or null, the height of the timeline is automatically
@ -438,10 +437,9 @@ var options = {
<tr>
<tr>
<td>maxHeight</td>
<td>maxHeight</td>
<td>Number</td>
<td>Number | String</td>
<td>none</td>
<td>none</td>
<td>Specifies a maximum height for the Timeline in pixels.
</td>
<td>Specifies the maximum height for the Timeline. Can be a number in pixels or a string like "300px".</td>
</tr>
</tr>
<tr>
<tr>
@ -453,6 +451,13 @@ var options = {
</td>
</td>
</tr>
</tr>
<tr>
<td>minHeight</td>
<td>Number | String</td>
<td>none</td>
<td>Specifies the minimum height for the Timeline. Can be a number in pixels or a string like "300px".</td>
</tr>
<tr>
<tr>
<td>onAdd</td>
<td>onAdd</td>
<td>Function</td>
<td>Function</td>
@ -583,7 +588,7 @@ var options = {
<td>type</td>
<td>type</td>
<td>String</td>
<td>String</td>
<td>'box'</td>
<td>'box'</td>
<td>Specifies the type for the timeline items. Choose from 'box', 'point', 'range', and 'rangeoverflow'. Note that individual items can override this global type.
<td>Specifies the default type for the timeline items. Choose from 'box', 'point', 'range', and 'rangeoverflow'. Note that individual items can override this default type.
</td>
</td>
</tr>
</tr>
@ -673,6 +678,13 @@ var options = {
<td>Remove an event listener created before via function <code>on(event, callback)</code>. See section <ahref="#Events">Events for more information</a>.</td>
<td>Remove an event listener created before via function <code>on(event, callback)</code>. See section <ahref="#Events">Events for more information</a>.</td>
</tr>
</tr>
<tr>
<td>repaint()</td>
<td>none</td>
<td>Force a repaint of the Timeline. Can be useful to manually repaint when option autoResize=false.