--cięcie--
// Kontener osi lewej
let leftContainer = svg
  .append("g")
  .attr("id", "left")
  .attr("transform", `translate(${margin.left}, 0)`);

function getLicense(d) {
  let license = d.license?.name;

  if (!license) {
     return "Brak licencji";
   } else {
     return license;
  }
}

function update(items) {
--cięcie--
