Published
Edited
May 26, 2019
3 forks
28 stars
Insert cell
Insert cell
{
const el = DOM.svg(svgWidth, svgHeight);

d3.select(el).selectAll('g')
.data(sortedData)
.join(
enter => enter.append('g')
.attr('width', width-(margin*2))
.attr('height', height-(margin*2))
.attr('transform', translate),
update => update
.attr('transform', translate)
)
.each(radarChart)
return el;
}
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
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
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

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