chart testing
This commit is contained in:
parent
46311d5310
commit
6af92aa7d8
1 changed files with 1 additions and 1 deletions
|
@ -358,7 +358,7 @@ function DrawChart() {
|
|||
var cell = [];
|
||||
for(let j = 0; j < chartSum; j++) {
|
||||
/* check if data is present */
|
||||
if((ChartJson.chart[j].hasOwnProperty('data')) && (ChartJson.chart[j].data[i] != "undefined")) {
|
||||
if((ChartJson.chart[j].hasOwnProperty('data')) || (ChartJson.chart[j].data[i] != "undefined")) {
|
||||
cell[j] = row[i].insertCell(j);
|
||||
cell[j].innerHTML = '<span class=\'data minw\'> ' + ChartJson.chart[j].data[i] + '</span>';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue