ngx-deebodata 0.4.1 → 0.4.3
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.
package/README.md
CHANGED
|
@@ -79,8 +79,7 @@ export class App {
|
|
|
79
79
|
| `myColumnStyles` | `ColumnStyles[]` | `[]` | pass css styles to specific values in a column |
|
|
80
80
|
| `myColumnValueColors` | `ColumnValueColors[]` | `[]` | assign a color to a value in pie, line, and bar graphs |
|
|
81
81
|
| `forceGrouping` | `string[]` | `[]` | array of column names to force grouping - gives dropdown filter & pie graphs for the column |
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
-
|
|
84
83
|
|
|
85
84
|
|
|
86
85
|
It's best to pass hex or rgb colors to **color1, color2, pieGraphColors, & altRowColor,** but css colors work too
|
|
@@ -2969,8 +2969,9 @@ class RowGroupPanel {
|
|
|
2969
2969
|
this.setRowNumPlacement();
|
|
2970
2970
|
this.fixRowContainer(0);
|
|
2971
2971
|
this.setLastRowIndex();
|
|
2972
|
-
if (force)
|
|
2972
|
+
if (force && !this.isScrolling) {
|
|
2973
2973
|
this.handleScrollEnd();
|
|
2974
|
+
}
|
|
2974
2975
|
}
|
|
2975
2976
|
// execCellEdit(event: any) {//{ element: el, column: this.cell.column, value: val }
|
|
2976
2977
|
// this.cellEdit.emit(event)
|
|
@@ -6419,7 +6420,7 @@ class NgxDeebodata {
|
|
|
6419
6420
|
this.fixRowContainer(0);
|
|
6420
6421
|
this.setLastRowIndex();
|
|
6421
6422
|
this.cleanRowChecks();
|
|
6422
|
-
if (force)
|
|
6423
|
+
if (force && !this.isScrolling)
|
|
6423
6424
|
this.handleScrollEnd();
|
|
6424
6425
|
}
|
|
6425
6426
|
jumpToRow(row) {
|