HTML
xxxxxxxxxx
1
<div id="datatable-cell-format" data-mdb-sort-field="purchases" data-mdb-sort-order="desc"></div>
CSS
1
1
JS
xxxxxxxxxx
1
const rows = [
2
['Product 1', 10, 103],
3
['Product 2', 45, 110],
4
['Product 3', 76, 56],
5
['Product 4', 89, 230],
6
['Product 5', 104, 240],
7
['Product 6', 97, 187],
8
['Product 7', 167, 130],
9
['Product 8', 50, 199],
10
['Product 9', 4, 206],
11
['Product 10', 120, 88],
12
['Product 11', 22, 100],
13
];
14
15
const maxValue = Math.max(...rows.map((row) => row[2]));
16
const minValue = Math.min(...rows.map((row) => row[2]));
17
18
const colors = ['#E3F2FD', '#BBDEFB', '#90CAF9', '#64B5F6', '#42A5F5'];
19
20
const step = (maxValue - minValue) / (colors.length - 1);
21
22
const formatCell = (cell, value) => {
23
const colorIndex = Math.floor((value - minValue) / step);
24
25
cell.style.backgroundColor = colors[colorIndex];
26
cell.style.fontWeight = 400;
27
};
28
29
const columns = [
30
{ label: 'Product', field: 'product' },
31
{ label: 'Quantity', field: 'quantity' },
32
{ label: 'Purchases', field: 'purchases', format: formatCell },
33
];
34
35
const datatableInstance = new TableEditor(
36
document.getElementById('datatable-cell-format'),
37
{ rows, columns }
38
);
Console errors: 0