Koalitionenrechner - wahlrecht.de

3/21/2024, 10:00:16 PM

< Feedback on Koalitionenrechner - wahlrecht.de

Review: Good - script works

§
Posted: 25.07.2024
SidemAuthor
§
Posted: 26.07.2024
Edited: 26.07.2024

thank you, really cool script, i made a couple tweaks so the information is presented clearer imo, try it out:

let datasets = partyNames.map(party => ({
      label: party,
      data: dataByParty[party].reverse(),
      fill: true,
      backgroundColor: partyColors[party],
      tension: 0.1,
      pointStyle: 'line',
    }));
    let ctx = document.createElement('canvas');
    table.parentNode.insertBefore(ctx, table);
    new Chart(ctx, {
      type: 'line',
      data: {
        labels: dates.reverse(),
        datasets: datasets
      },
      options: {
        responsive: true,
        plugins: {
          legend: {
            position: 'top',
          },
          title: {
            display: true,
            text: 'Wahlrecht.de Umfragen - Zeitreihe'
          }
        },
        interaction: {
          mode: 'nearest',
          axis: 'x',
          intersect: false
        },
        scales: {
          x: {
            display: true,
            title: {
              display: true,
              text: 'Datum'
            }
          },
          y: {
            min: 0,
            max: 100,
            stacked: true,
            title: {
              display: true,
              text: 'Prozent'
            }
          }
        }
      }
    });
§
Posted: 30.07.2024

Updated the script and switched to the stacked/filled style.

Post reply

Sign in to post a reply.