CharacterDistribution.js: Difference between revisions
From Illustrations in German Translations of Mark Twain's Works
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
document.addEventListener('DOMContentLoaded', () => { | document.addEventListener('DOMContentLoaded', () => { | ||
const canvas = document.getElementById('testChart'); | |||
const | if (!canvas) return; | ||
if (! | |||
const ctx = canvas.getContext('2d'); | const ctx = canvas.getContext('2d'); | ||
new Chart(ctx, { | |||
type: 'bar', | type: 'bar', | ||
data | data: { | ||
labels: ['A', 'B', 'C'], | |||
datasets: [{ | |||
label: 'Test', | |||
data: [1, 2, 3], | |||
backgroundColor: 'red' | |||
} | }] | ||
} | }, | ||
options: {} | |||
}); | |||
}); | }); | ||
Revision as of 19:18, 31 August 2025
document.addEventListener('DOMContentLoaded', () => {
const canvas = document.getElementById('testChart');
if (!canvas) return;
const ctx = canvas.getContext('2d');
new Chart(ctx, {
type: 'bar',
data: {
labels: ['A', 'B', 'C'],
datasets: [{
label: 'Test',
data: [1, 2, 3],
backgroundColor: 'red'
}]
},
options: {}
});
});