+
- -
-
- {{name}}
-
+ -
+
+ ● {{name}}
+
@@ -25,28 +28,28 @@
|
- {{name}} |
- Total |
+ {{name}} |
+ Total |
- | {{seriesName[i]}} |
-
+ | ● {{seriesName[i]}} |
+
{{value}}
{{value}}
|
- {{seriesRowTotal[i]}} |
+ {{seriesRowTotal[i]}} |
- | Total |
-
+ | Total |
+
{{value}}
{{value}}
|
- {{grandTotal}} |
+ {{grandTotal}} |
diff --git a/src/app/components/home/dashboard-components/jumps-by-month/jumps-by-month.component.ts b/src/app/components/home/dashboard-components/jumps-by-month/jumps-by-month.component.ts
index 788744d..cbaa593 100755
--- a/src/app/components/home/dashboard-components/jumps-by-month/jumps-by-month.component.ts
+++ b/src/app/components/home/dashboard-components/jumps-by-month/jumps-by-month.component.ts
@@ -1,20 +1,26 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, OnInit, OnDestroy } from '@angular/core';
+import { CommonModule } from '@angular/common';
import { MatCardModule } from '@angular/material/card';
import { ChartistModule, Configuration } from 'ng-chartist';
-import { BackendService } from 'src/app/core/services';
-import { ReduceRow } from 'src/app/core/models';
+import { Observable, Subscription } from 'rxjs';
+
+import { BackendService, JumpsService } from 'src/app/core/services';
+import { chartBar, JumpByDate, ReduceRow } from 'src/app/core/models';
declare var require: any;
const data= require('./data.json');
@Component({
standalone: true,
- imports: [MatCardModule, ChartistModule],
+ imports: [CommonModule, MatCardModule, ChartistModule],
selector: 'huapp-jumps-by-month',
templateUrl: './jumps-by-month.component.html'
})
-export class JumpsByMonthComponent implements OnInit {
+export class JumpsByMonthComponent implements OnInit, OnDestroy {
+ private _jumpByDate: Subscription = new Subscription();
+ jumpByDate!: Array
;
+ jumpByDateCount = 0;
rows: Object[] = [] as Array