Published
Edited
May 28, 2020
1 fork
Insert cell
Insert cell
height = 300
Insert cell
columns = [
{ type: 'string', name: 'Task ID' },
{ type: 'string', name: 'Task Name' },
{ type: 'date', name: 'Start Date' },
{ type: 'date', name: 'End Date' },
{ type: 'number', name: 'Duration' },
{ type: 'number', name: 'Percent Complete' },
{ type: 'string', name: 'Dependencies' }
]
Insert cell
rows = [
[
"Research",
"Wash the Car",
new Date(2015, 0, 1),
new Date(2015, 0, 5),
null,
100,
null
],
[
"Write",
"Clean my Room",
null,
new Date(2015, 0, 9),
daysToMilliseconds(3),
25,
"Research,Outline"
],
[
"Cite",
"Create bibliography",
null,
new Date(2015, 0, 7),
daysToMilliseconds(1),
20,
"Research"
],
[
"Complete",
"Publish Confluence Docs",
null,
new Date(2015, 0, 10),
daysToMilliseconds(1),
0,
"Cite,Write"
],
[
"Outline",
"Outline paper",
null,
new Date(2015, 0, 6),
daysToMilliseconds(1),
100,
"Research"
]
]
Insert cell
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more