README is empty
Created
October 20, 2016 05:22
-
-
Save bububa/c78e92cec14a794bc2e99a3d7bbffabf to your computer and use it in GitHub Desktop.
No name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name | price | |
---|---|---|
syd | 0.1 | |
shush | 0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "No name", | |
"state": "active", | |
"created": "2016-10-20T05:22:26.234Z", | |
"sources": [], | |
"profiles": { | |
"dataexplorer": "0.9" | |
}, | |
"scripts": [ | |
{ | |
"id": "main.js", | |
"path": "main.js" | |
} | |
], | |
"views": [ | |
{ | |
"id": "grid", | |
"label": "Grid", | |
"type": "SlickGrid", | |
"state": { | |
"gridOptions": { | |
"editable": true, | |
"enabledAddRow": true, | |
"enabledDelRow": true, | |
"enableReOrderRow": true, | |
"autoEdit": false, | |
"enableCellNavigation": true | |
} | |
} | |
}, | |
{ | |
"id": "graph", | |
"label": "Graph", | |
"type": "Graph" | |
}, | |
{ | |
"id": "map", | |
"label": "Map", | |
"type": "Map" | |
} | |
], | |
"id": "dataexplorer-393066", | |
"resources": [ | |
{ | |
"backend": "csv", | |
"path": "current.csv", | |
"schema": { | |
"fields": [ | |
{ | |
"id": "name", | |
"label": "name", | |
"type": "string", | |
"format": null, | |
"is_derived": false | |
}, | |
{ | |
"id": "price", | |
"label": "price", | |
"type": "string", | |
"format": null, | |
"is_derived": false | |
} | |
] | |
} | |
}, | |
{ | |
"backend": "csv", | |
"path": "original.csv", | |
"id": "undefined-original", | |
"schema": { | |
"fields": [ | |
{ | |
"id": "name", | |
"label": "name", | |
"type": "string", | |
"format": null, | |
"is_derived": false | |
}, | |
{ | |
"id": "price", | |
"label": "price", | |
"type": "string", | |
"format": null, | |
"is_derived": false | |
} | |
] | |
} | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loadDataset("current", function (error, dataset) { | |
// error will be null unless there is an error | |
// dataset is a Recline memory store (http://reclinejs.com//docs/src/backend.memory.html). | |
console.log(dataset); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syd | 0.1 | |
---|---|---|
shush | 0.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment