Désolé, j'ai pas réussi à faire une meilleure formulation du truc pour le titre.
Dans le tutoriel de D3, y'a ce bout de code :
<!DOCTYPE html>
<div id="container"></div>
<script type="module">
import * as d3 from "https://cdn.jsdelivr.net/npm/d3@7/+esm";
// Declare the chart dimensions and margins.
const width = 640;
const height = 400;
const marginTop = 20;
const marginRight = 20;
const marginBottom = 30;
(…)