Commit 7910a56b by Ooh-Ao

chartall

parent c1deee78
......@@ -41,6 +41,7 @@
"@syncfusion/ej2-angular-layouts": "^29.2.4",
"@syncfusion/ej2-angular-maps": "^29.1.33",
"@syncfusion/ej2-angular-pivotview": "^29.2.4",
"@syncfusion/ej2-angular-treemap": "^29.2.4",
"@syncfusion/ej2-base": "^29.2.4",
"@syncfusion/ej2-buttons": "^29.2.4",
"@syncfusion/ej2-data": "^29.2.4",
......@@ -6324,6 +6325,17 @@
"@syncfusion/ej2-pivotview": "29.2.10"
}
},
"node_modules/@syncfusion/ej2-angular-treemap": {
"version": "29.2.4",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-angular-treemap/-/ej2-angular-treemap-29.2.4.tgz",
"integrity": "sha512-Yc+RQ2SpCJHiKZ3GWtLUpX9TsgogvcTfHcXeMKJV2SXhCsNC8mdhpogdxVF2FZbt+Vhs3gEMLHweNdetPHv03Q==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-angular-base": "~29.2.4",
"@syncfusion/ej2-base": "~29.2.4",
"@syncfusion/ej2-treemap": "29.2.4"
}
},
"node_modules/@syncfusion/ej2-base": {
"version": "29.2.11",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-base/-/ej2-base-29.2.11.tgz",
......@@ -6718,6 +6730,20 @@
"@syncfusion/ej2-base": "~29.2.4"
}
},
"node_modules/@syncfusion/ej2-treemap": {
"version": "29.2.4",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-treemap/-/ej2-treemap-29.2.4.tgz",
"integrity": "sha512-y4LMtx6VfDsTgID790pPsgmiVxf62CSyP/n3roFXHz1ePa7AfXaqVXnInX/DX94fCXiTuo4VAADnPN8+Hm4TZQ==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~29.2.4",
"@syncfusion/ej2-compression": "~29.2.4",
"@syncfusion/ej2-data": "~29.2.4",
"@syncfusion/ej2-file-utils": "~29.2.4",
"@syncfusion/ej2-pdf-export": "~29.2.4",
"@syncfusion/ej2-svg-base": "~29.2.4"
}
},
"node_modules/@tailwindcss/forms": {
"version": "0.5.10",
"resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.10.tgz",
......
import { Component, Input, OnInit } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CircularGaugeModule, GaugeTooltipService, AnnotationsService, GaugePointerService, GaugeAxisSetService } from '@syncfusion/ej2-angular-circulargauge';
import { CircularGaugeModule, GaugeTooltipService, AnnotationsService } from '@syncfusion/ej2-angular-circulargauge';
@Component({
selector: 'app-gauge-chart-widget',
standalone: true,
imports: [CommonModule, CircularGaugeModule],
providers: [GaugeTooltipService, AnnotationsService, GaugePointerService, GaugeAxisSetService],
providers: [GaugeTooltipService, AnnotationsService],
templateUrl: './gauge-chart-widget.component.html',
})
export class GaugeChartWidgetComponent implements OnInit {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment