forked from datopian/datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (49 loc) · 1.66 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
layout: default
title: Home
---
<section class="home-page page-header">
<div class="container">
<div class="row">
<div class="col-md-7 col-md-offset-5">
<h1>
<a href="docs/"><img src="images/logo.png" width="455" height="190" alt="Recline Data Explorer and Library"></a>
</h1>
<div class="inner">
<p>A simple but powerful library for building data applications in
pure Javascript and HTML.</p>
<p>
Recline re-uses best-of-breed presentation libraries like
SlickGrid, Leaflet, Flot and D3 to create data 'Views'
and allows you to connect them with your data in seconds.
</p>
<p class="links">
<a href="docs/" class="btn btn-default">Documentation »</a>
<a href="docs/tutorials.html" class="btn btn-default">Tutorials »</a>
<a href="demos/" class="btn btn-default">Demos »</a>
</p>
<h3 style="color: white; margin-top: 40px;">Get started fast</h3>
<pre style="margin-top: 20px;"><code style="font-size: 90%;">// Load some data
var dataset = recline.Model.Dataset({
records: [
{ value: 1, date: '2012-08-07' },
{ value: 5, b: '2013-09-07' }
]
// Load CSV data instead
// (And Recline has support for many more data source types)
// url: 'my-local-csv-file.csv',
// backend: 'csv'
});
// get an element from your HTML for the viewer
var $el = $('#data-viewer');
var allInOneDataViewer = new recline.View.MultiView({
model: dataset,
el: $el
});
// Your new Data Viewer will be live!
</code></pre>
</div>
</div>
</div>
</div>
</section>