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 82d20f6 commit 6010044Copy full SHA for 6010044
src/app/grid-finjs/grid-finjs.component.ts
@@ -63,6 +63,7 @@ export class GridFinJSComponent {
63
private strongPositive = (rowData: any): boolean => rowData['Change(%)'] >= 1;
64
private strongNegative = (rowData: any): boolean => rowData['Change(%)'] <= -1;
65
66
+ // eslint-disable-next-line @typescript-eslint/member-ordering
67
public trends = {
68
changeNeg: this.changeNegative,
69
changePos: this.changePositive,
@@ -72,6 +73,7 @@ export class GridFinJSComponent {
72
73
strongPositive: this.strongPositive
74
};
75
76
77
public trendsChange = {
78
changeNeg2: this.changeNegative,
79
changePos2: this.changePositive,
0 commit comments