Notebooks 2.0 is here.
Read the preview announcement
Platform
Resources
Pricing
Sign in
Get started
Lina Kortobi
Workspace
Fork
Published
By
Lina Kortobi
Edited
Jan 25, 2021
Fork of
[DEPRECATED] New Version -> http://www.ladataviz.com/tools/voronoi
•
1 fork
1
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
{
mutable
run
=
0
;
const
svg
=
d3
.
select
(
DOM
.
svg
(
width
,
height
)
)
;
const
voronoi
=
svg
.
append
(
"g"
)
;
const
labels
=
svg
.
append
(
"g"
)
;
const
val_labels
=
svg
.
append
(
"g"
)
;
let
seed
=
new
Math
.
seedrandom
(
randomize
(
)
)
;
let
voronoiTreeMap
=
d3
.
voronoiTreemap
(
)
.
prng
(
seed
)
.
clip
(
shape
)
;
voronoiTreeMap
(
dataHierarchy
)
;
colorHierarchy
(
dataHierarchy
)
;
let
allNodes
=
dataHierarchy
.
descendants
(
)
.
sort
(
(
a
,
b
)
=>
b
.
depth
-
a
.
depth
)
.
map
(
(
d
,
i
)
=>
Object
.
assign
(
{
}
,
d
,
{
id
:
i
}
)
)
;
let
hoveredShape
=
null
;
voronoi
.
selectAll
(
'path'
)
.
data
(
allNodes
)
.
enter
(
)
.
append
(
'path'
)
.
attr
(
'd'
,
d
=>
"M"
+
d
.
polygon
.
join
(
"L"
)
+
"Z"
)
.
attr
(
"stroke"
,
"#F5F5F2"
)
.
attr
(
"stroke-width"
,
2
)
.
style
(
'fill-opacity'
,
group
==
Object
.
keys
(
csvData
[
0
]
)
[
1
]
?
0.3
:
1
)
.
style
(
'fill-opacity'
,
d
=>
d
.
depth
===
2
?
1
:
0
)
//.attr('pointer-events', d => d.depth === 2 ? 'all' : 'none')
.
style
(
'fill'
,
d
=>
d
.
parent
?
d
.
parent
.
color
:
d
.
color
)
.
attr
(
"class"
,
"path"
)
// .on('mouseenter', d => {
// let label = labels.select(`.label-${d.id}`);
// label.attr('opacity', 1)
// let val_label = val_labels.select(`.label-${d.id}`);
// val_label.attr('opacity', 1)
// })
// .on('mouseleave', d => {
// let label = labels.select(`.label-${d.id}`);
// label.attr('opacity', 0)
// let val_label = val_labels.select(`.label-${d.id}`);
// val_label.attr('opacity', 0)
// })
.transition()
.duration(1000)
.attr("stroke-width", d => 4 - d.depth*2.8)
labels.selectAll('text')
.data(allNodes.filter(d => d.depth === 2 ))
.enter()
.append('text')
.attr('class', d => `label-${d.id}`)
.attr('text-anchor', 'middle')
.attr("transform", d => "translate("+[d.polygon.site.x, d.polygon.site.y+6]+")")
.text(d => d.data.key)
// .attr('opacity', d => d.data.key === hoveredShape ? 1 : 0)
// .attr('opacity', function(d) {if(d.data.key === hoveredShape){return(1);
// }else {return(0);}})
// .attr('cursor', 'default')
// .attr('pointer-events', 'none')
.attr('fill', 'black')
.style('font-size', '12px')
.style('font-family', 'Montserrat');
val_labels.selectAll('text')
.data(allNodes.filter(d => d.depth === 2 ))
.enter()
.append('text')
.attr('class', d => `label-${d.id}`)
.attr('text-anchor', 'middle')
.attr("transform", d => "translate("+[d.polygon.site.x, d.polygon.site.y+25]+")")
.text(d => bigFormat(d.data.value))
// .attr('opacity', d => d.data.key === hoveredShape ? 1 : 0)
// .attr('opacity', function(d) {if(d.data.key === hoveredShape){return(1);
// }else {return(0);}})
// .attr('cursor', 'default')
// .attr('pointer-events', 'none')
.attr('fill', 'black')
.style('font-size', '12px')
.style('font-family', 'Montserrat');
mutable run = 1;
return svg.node();
}
Insert cell
Insert cell
Insert cell
Insert cell
edgeCount
=
{
if
(
shapechoice
===
"Circle"
)
{
return
200
}
if
(
shapechoice
===
"Octogon"
)
{
return
8
}
if
(
shapechoice
===
"Triangle"
)
{
return
3
}
if
(
shapechoice
===
"Diamond"
)
{
return
4
}
if
(
shapechoice
===
"Square"
)
{
return
4
}
if
(
shapechoice
===
"Pentagon"
)
{
return
5
}
if
(
shapechoice
===
"Hexagon"
)
{
return
6
}
}
Insert cell
Insert cell
shape
=
{
return
d3
.
range
(
edgeCount
)
.
map
(
i
=>
{
const
rad
=
rotation
+
i
/
edgeCount
*
2
*
Math
.
PI
;
return
[
width
/
2
+
width
/
2
*
Math
.
cos
(
rad
)
,
height
/
2
+
height
/
2
*
Math
.
sin
(
rad
)
]
}
)
}
Insert cell
Insert cell
Insert cell
function
colorHierarchy
(
hierarchy
)
{
if
(
hierarchy
.
depth
===
0
)
{
hierarchy
.
color
=
'#909090'
;
}
else
if
(
hierarchy
.
depth
===
1
)
{
hierarchy
.
color
=
sectorColor
(
hierarchy
.
data
.
key
)
;
}
else
{
hierarchy
.
color
=
hierarchy
.
parent
.
color
;
}
if
(
hierarchy
.
children
)
{
hierarchy
.
children
.
forEach
(
child
=>
colorHierarchy
(
child
)
)
}
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
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.
Try it for free
Learn more
Compare fork
Fork
View
Export
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
data
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
delimiter
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
split
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
value
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
group
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
shapechoice
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
height
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
width
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
button
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
renderSomething
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
randomize
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
edgeCount
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
rotation
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
shape
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
run
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
sectorColor
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
colorHierarchy
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
bigFormat
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
dataHierarchy
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
data_nested
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
csvData
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
textdata
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
d3
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML