Koalitionenrechner - wahlrecht.de

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

< 腳本Koalitionenrechner - wahlrecht.de的回應

評論:正評 - 腳本一切正常

§
發表於:2024-07-25
Sidem作者
§
發表於:2024-07-26
編輯:2024-07-26

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'
            }
          }
        }
      }
    });
§
發表於:2024-07-30

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

發表回覆

登入以回復