ikinci temizlik tamamlandı

This commit is contained in:
Ümit Tunç
2026-04-28 21:15:09 +03:00
parent f80443aec0
commit 37e7296527
8313 changed files with 2400677 additions and 0 deletions
@@ -0,0 +1,47 @@
module.exports = {
config: {
type: 'line',
data: {
labels: [0, 1, 2, 3, 4, 5],
datasets: [
{
// option in dataset
data: [-2, -6, -4, -8, -6, -10],
backgroundColor: '#ff0000',
fill: function(ctx) {
return ctx.datasetIndex === 0 ? true : false;
}
},
{
// option in element (fallback)
data: [0, 4, 2, 6, 4, 8],
}
]
},
options: {
legend: false,
title: false,
elements: {
line: {
backgroundColor: '#00ff00',
fill: function(ctx) {
return ctx.datasetIndex === 0 ? true : false;
}
}
},
layout: {
padding: 32
},
scales: {
xAxes: [{display: false}],
yAxes: [{display: false}]
}
}
},
options: {
canvas: {
height: 256,
width: 512
}
}
};