Added list of views incl. those from 3rd parties, linked views tutorial from views docs. Linked the list from the tutorial. Booted (unlinked) pages for Grids tutorial (#397, #398), Timelines tutorial (#224)
51 lines
935 B
Markdown
51 lines
935 B
Markdown
---
|
|
layout: container
|
|
title: Timelines - Advanced use of timelines in Recline - Tutorial
|
|
recline-deps: true
|
|
root: ../
|
|
---
|
|
|
|
<div class="page-header">
|
|
<h1>
|
|
Doing More with Timelines
|
|
<br />
|
|
<small>This tutorial goes beyond the <a href="tutorial-views.html">basic
|
|
views tutorial</a> and shows you how to do more with timelines</small>
|
|
</h1>
|
|
</div>
|
|
|
|
### Preparing your page
|
|
|
|
See the instructions in the [basic views tutorial](tutorial-views.html).
|
|
|
|
### Creating a Dataset
|
|
|
|
Just like in the main tutorial, here's some example data We are going to work with:
|
|
|
|
{% highlight javascript %}
|
|
{% include data.js %}
|
|
var dataset = new recline.Model.Dataset({
|
|
records: data
|
|
});
|
|
{% endhighlight %}
|
|
|
|
<script type="text/javascript">
|
|
{% include data.js %}
|
|
var dataset = new recline.Model.Dataset({
|
|
records: data
|
|
});
|
|
</script>
|
|
|
|
### Underlying library and Recline extensions
|
|
|
|
|
|
|
|
### Handling dates
|
|
|
|
|
|
|
|
### Customizing the rendering
|
|
|
|
|
|
|