We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a4d682 commit 4caa377Copy full SHA for 4caa377
src/app/grid-finjs/grid-finjs.component.ts
@@ -61,6 +61,7 @@ export class GridFinJSComponent {
61
private strongPositive = (rowData: any): boolean => rowData['Change(%)'] >= 1;
62
private strongNegative = (rowData: any): boolean => rowData['Change(%)'] <= -1;
63
64
+ // eslint-disable-next-line @typescript-eslint/member-ordering
65
public trends = {
66
changeNeg: this.changeNegative,
67
changePos: this.changePositive,
@@ -69,7 +70,7 @@ export class GridFinJSComponent {
69
70
strongNegative: this.strongNegative,
71
strongPositive: this.strongPositive
72
};
-
73
74
public trendsChange = {
75
changeNeg2: this.changeNegative,
76
changePos2: this.changePositive,
0 commit comments