intelica-library-ui 0.1.61 → 0.1.62
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.
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as echarts from 'echarts';
|
|
3
|
+
import { EChartsOption } from 'echarts';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class EchartComponent implements AfterViewInit {
|
|
6
|
+
private el;
|
|
7
|
+
private platformId;
|
|
8
|
+
config: EChartsOption | undefined;
|
|
9
|
+
id: string;
|
|
10
|
+
event: EventEmitter<any>;
|
|
11
|
+
chart: echarts.ECharts;
|
|
12
|
+
constructor(el: ElementRef, platformId: Object);
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
refreshChart(): void;
|
|
15
|
+
private initChart;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EchartComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EchartComponent, "intelica-echart", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EChartsOption } from 'echarts';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class EchartService {
|
|
4
|
+
getDefaultSeriesColors(): string[];
|
|
5
|
+
getTooltipCssText(): string;
|
|
6
|
+
getTooltipFormatter(htmlContent: string): string;
|
|
7
|
+
getDefultAxisConfiguration(type: string, show?: boolean, data?: any[]): any;
|
|
8
|
+
getRateDoughnutPie(data: any[]): EChartsOption;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EchartService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EchartService>;
|
|
11
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from "./lib/components/sorting/model/cascade-filter";
|
|
|
23
23
|
export * from "./lib/components/sorting/model/order.constants";
|
|
24
24
|
export * from "./lib/components/popover/popover.component";
|
|
25
25
|
export * from "./lib/components/popover/model/popover-information.model";
|
|
26
|
+
export * from "./lib/components/echart/echart.component";
|
|
26
27
|
export * from "./lib/services/htmlToExcel.service";
|
|
27
28
|
export * from "./lib/services/shared.service";
|
|
28
29
|
export * from "./lib/services/config.service";
|
|
@@ -33,6 +34,7 @@ export * from "./lib/services/term.service";
|
|
|
33
34
|
export * from "./lib/services/globalFeatureFlag.service";
|
|
34
35
|
export * from "./lib/services/featureFlag.service";
|
|
35
36
|
export * from "./lib/services/language.service";
|
|
37
|
+
export * from "./lib/services/echart.service";
|
|
36
38
|
export * from "./lib/functions/compareByField";
|
|
37
39
|
export * from "./lib/functions/encryptRSA";
|
|
38
40
|
export * from "./lib/functions/inputValidation";
|