Greasy Fork is available in English.
3/21/2024, 10:00:16 PM
< Feedback on Koalitionenrechner - wahlrecht.de
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' } } } } });
Updated the script and switched to the stacked/filled style.
Works great. used it as inspiration for https://greasyfork.org/en/scripts/501769-wahlrecht-de-umfragen-time-series