- Add % to axix
  - d3.axisLeft(y).tickFormat((d) => d + "%")
  - document
    .querySelectorAll("#sp_legend_graph0 .legendLinear .legendCells .cell")
    .forEach((d) => {
      d.querySelector("text tspan").innerHTML += "%";
    });
