root page chart table javascript playground wip

This commit is contained in:
DeltaLima 2025-04-10 02:37:04 +02:00
parent 05fa317e24
commit cc4c2f591d

View file

@ -349,7 +349,7 @@ function DrawChart() {
/* check if data is present */
if((ChartJson.chart[j].hasOwnProperty('data')) && (ChartJson.chart[j].data[i] != "undefined")) {
cell[j] = row[i].insertCell(j);
cell[j].innerHTML = ChartJson.chart[j].data[i];
cell[j].innerHTML = '<span class=\'data minw\'> ' + ChartJson.chart[j].data[i] + '</span>';
/* add chartscss styles for line chart */
/* build the css string in a var first */