We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f221c commit c5f8e09Copy full SHA for c5f8e09
docs/demo/graph/d3.md
@@ -13,7 +13,7 @@ theme: notebook
13
// Example from: https://observablehq.com/@d3/donut-chart/2
14
// data = FileAttachment("./population-by-age.csv").csv({typed: true})
15
16
-d3.csv("/static/data/population-by-age.csv", d3.autoType).then(data => {
+d3.csv("population-by-age.csv", d3.autoType).then(data => {
17
const width = 500; // Define width
18
const height = Math.min(width, 500);
19
const radius = Math.min(width, height) / 2;
docs/static/data/population-by-age.csv docs/demo/graph/population-by-age.csv
0 commit comments