This commit is contained in:
Joffrey JAFFEUX 2021-08-23 14:21:58 +02:00 committed by GitHub
parent d7c185bf3d
commit 6c0efd50bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -470,6 +470,7 @@ createWidget("discourse-poll-pie-canvas", {
});
const el = document.getElementById(`poll-results-chart-${attrs.id}`);
// eslint-disable-next-line no-undef
this._chart = new Chart(el.getContext("2d"), config);
});
},
@ -566,7 +567,7 @@ function pieChartConfig(data, labels, opts = {}) {
plugins: {
legend: {
labels: {
generateLabels: function (chart) {
generateLabels: function () {
return labels.map((text, index) => {
return {
fillStyle: getColors(data.length)[index],