sea-chart 0.0.68-alpha.3 → 0.0.68-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -424,7 +424,11 @@ row, isColumnDataAsAnArray, cellValue, _ref2, chartSQLMap) => {
|
|
|
424
424
|
const columnName = current.column.name;
|
|
425
425
|
|
|
426
426
|
// keep column key to find currentValue on updating
|
|
427
|
-
return
|
|
427
|
+
return {
|
|
428
|
+
name: columnName,
|
|
429
|
+
value: computedValue,
|
|
430
|
+
key: columnKey
|
|
431
|
+
};
|
|
428
432
|
});
|
|
429
433
|
}
|
|
430
434
|
} else {
|
|
@@ -438,7 +442,11 @@ row, isColumnDataAsAnArray, cellValue, _ref2, chartSQLMap) => {
|
|
|
438
442
|
const value = row[currentSqlName];
|
|
439
443
|
const columnName = current.column.name;
|
|
440
444
|
// keep column key to find currentValue on updating
|
|
441
|
-
return
|
|
445
|
+
return {
|
|
446
|
+
name: columnName,
|
|
447
|
+
value,
|
|
448
|
+
key: columnKey
|
|
449
|
+
};
|
|
442
450
|
});
|
|
443
451
|
}
|
|
444
452
|
cells[key] = {
|
|
@@ -487,7 +495,11 @@ row, isColumnDataAsAnArray, cellValue, _ref2, chartSQLMap) => {
|
|
|
487
495
|
// use columnKey to find current value
|
|
488
496
|
const columnName = current.column.name;
|
|
489
497
|
// keep column key to find currentValue on updating
|
|
490
|
-
return
|
|
498
|
+
return {
|
|
499
|
+
name: columnName,
|
|
500
|
+
value,
|
|
501
|
+
key: columnKey
|
|
502
|
+
};
|
|
491
503
|
});
|
|
492
504
|
}
|
|
493
505
|
cells[key] = {
|