4.1 KiB
layout, title, recline-deps, root
| layout | title | recline-deps | root |
|---|---|---|---|
| container | Tutorial - Dataset Basics | true | ../ |
Getting Started with Datasets
This step-by-step tutorial will quickly get you started withthe central Recline object: a Dataset
Preparations
-
Download ReclineJS and relevant dependencies.
-
Include the core dependencies for the Dataset model
{% highlight html %}
Creating a Dataset
Here's the example data We are going to work with:
{% highlight javascript %} {% include data.js %} {% endhighlight %}
In this data we have 6 records / rows. Each record is a javascript object containing keys and values (values can be 'simple' e.g. a string or float or arrays or hashes - e.g. the geo value here).
We can now create a recline Dataset object from this raw data:
{% highlight javascript %} var dataset = new recline.Model.Dataset({ records: data }); {% endhighlight %}
Records, Fields and more
Now that we have created a Dataset, we can use it.
For example, let's display some information about the Dataset and its records:
{% highlight javascript %} {% include tutorial-basics-ex-1.js %} {% endhighlight %}
Here's the output:
Note how the last geo attribute just rendered as [object Object]. This is because the Dataset is treating that field value as a string. Let's now take a look at the Dataset fields in more detail.
Fields
In addition to Records, a Dataset has Fields stored in the fields attribute. Fields provide information about the fields/columns in the Dataset, for example their id (key name in record), label, type etc.
The Dataset's fields will be automatically computed from records or provided by the backend but they can also be explicitly provided and configured. Let's take a look at the fields on the dataset at present using the following code:
{% highlight javascript %} {% include tutorial-basics-ex-fields.js %} {% endhighlight %}
Running this results in the following:
As can be seen all fields have the default type of 'string'. Let's change the geo field to have type geo_point and see what affect that has on displaying of the dataset (for good measure we'll also set the label):
{% highlight javascript %} {% include tutorial-basics-ex-fields-2.js %} {% endhighlight %}
As can be seen the rendering of the field has changed. This is because the recordSummary method uses the Record.getFieldValue function which in turn renders a record field using the Field's renderer function. This function varies depending on the type and can also be customized (see the Field documentation).