barsa-echarts 2.0.37 → 2.0.39
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.
- package/esm2022/lib/barsa-echarts.module.mjs +5 -29
- package/esm2022/lib/base/chart-base.directive.mjs +32 -50
- package/esm2022/lib/base/index.mjs +2 -8
- package/esm2022/lib/micro-charts/micro-chart-area/micro-chart-area.component.mjs +16 -10
- package/esm2022/lib/micro-charts/micro-chart-bar/micro-chart-bar.component.mjs +11 -6
- package/esm2022/lib/micro-charts/micro-chart-bullet/micro-chart-bullet.component.mjs +7 -3
- package/esm2022/lib/micro-charts/micro-chart-circular/micro-chart-circular.component.mjs +7 -6
- package/esm2022/lib/micro-charts/micro-chart-comparison/micro-chart-comparison.component.mjs +7 -5
- package/esm2022/lib/micro-charts/micro-chart-line/micro-chart-line.component.mjs +7 -16
- package/esm2022/lib/micro-charts/micro-chart-stackbar/micro-chart-stackbar.component.mjs +7 -5
- package/fesm2022/barsa-echarts.mjs +74 -625
- package/fesm2022/barsa-echarts.mjs.map +1 -1
- package/lib/barsa-echarts.module.d.ts +5 -11
- package/lib/base/chart-base.directive.d.ts +9 -18
- package/lib/base/index.d.ts +1 -7
- package/lib/micro-charts/micro-chart-area/micro-chart-area.component.d.ts +3 -1
- package/lib/micro-charts/micro-chart-bar/micro-chart-bar.component.d.ts +5 -3
- package/lib/micro-charts/micro-chart-bullet/micro-chart-bullet.component.d.ts +3 -1
- package/lib/micro-charts/micro-chart-circular/micro-chart-circular.component.d.ts +3 -2
- package/lib/micro-charts/micro-chart-comparison/micro-chart-comparison.component.d.ts +3 -3
- package/lib/micro-charts/micro-chart-line/micro-chart-line.component.d.ts +3 -5
- package/lib/micro-charts/micro-chart-stackbar/micro-chart-stackbar.component.d.ts +3 -3
- package/package.json +1 -1
- package/esm2022/lib/base/chart-line-time-base.directive.mjs +0 -80
- package/esm2022/lib/base/micro-chart-area-base.directive.mjs +0 -89
- package/esm2022/lib/base/micro-chart-bar-base.directive.mjs +0 -48
- package/esm2022/lib/base/micro-chart-base.directive.mjs +0 -49
- package/esm2022/lib/base/micro-chart-circular-base.directive.mjs +0 -75
- package/esm2022/lib/base/micro-chart-comparison-base.directive.mjs +0 -99
- package/esm2022/lib/base/micro-chart-line-base.directive.mjs +0 -60
- package/esm2022/lib/base/micro-chart-stackbar-base.directive.mjs +0 -51
- package/lib/base/chart-line-time-base.directive.d.ts +0 -19
- package/lib/base/micro-chart-area-base.directive.d.ts +0 -18
- package/lib/base/micro-chart-bar-base.directive.d.ts +0 -14
- package/lib/base/micro-chart-base.directive.d.ts +0 -14
- package/lib/base/micro-chart-circular-base.directive.d.ts +0 -13
- package/lib/base/micro-chart-comparison-base.directive.d.ts +0 -17
- package/lib/base/micro-chart-line-base.directive.d.ts +0 -15
- package/lib/base/micro-chart-stackbar-base.directive.d.ts +0 -14
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
-
import { ComparisonItem } from '../models';
|
|
3
|
-
import { YAXisOption } from 'echarts/types/dist/shared';
|
|
4
|
-
import { MicroChartBaseDirective } from './micro-chart-base.directive';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class MicroChartComparisonBaseDirective extends MicroChartBaseDirective {
|
|
7
|
-
protected _el: ElementRef;
|
|
8
|
-
protected renderer2: Renderer2;
|
|
9
|
-
size: string;
|
|
10
|
-
chartData: ComparisonItem;
|
|
11
|
-
yAxis: YAXisOption;
|
|
12
|
-
constructor(_el: ElementRef, renderer2: Renderer2);
|
|
13
|
-
protected setOptions(options: any): void;
|
|
14
|
-
private _initValues;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MicroChartComparisonBaseDirective, never>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MicroChartComparisonBaseDirective, "[beMicroChartComparison]", never, { "size": { "alias": "size"; "required": false; }; "chartData": { "alias": "chartData"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
-
import { MicroChartBaseDirective } from './micro-chart-base.directive';
|
|
3
|
-
import { LineItem } from '../models/line-item';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MicroChartLineBaseDirective extends MicroChartBaseDirective {
|
|
6
|
-
protected _el: ElementRef;
|
|
7
|
-
protected renderer2: Renderer2;
|
|
8
|
-
line: LineItem;
|
|
9
|
-
constructor(_el: ElementRef, renderer2: Renderer2);
|
|
10
|
-
protected setOptions(options: any): void;
|
|
11
|
-
private _scaleDownLineData;
|
|
12
|
-
private _initSeries;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MicroChartLineBaseDirective, never>;
|
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MicroChartLineBaseDirective, "[beMicroChartLine]", never, { "line": { "alias": "line"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
-
import { MicroChartBaseDirective } from './micro-chart-base.directive';
|
|
3
|
-
import { StackbarItem } from '../models/stackbar-item';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MicroChartStackbarBaseDirective extends MicroChartBaseDirective {
|
|
6
|
-
protected _el: ElementRef;
|
|
7
|
-
protected renderer2: Renderer2;
|
|
8
|
-
chartData: StackbarItem;
|
|
9
|
-
constructor(_el: ElementRef, renderer2: Renderer2);
|
|
10
|
-
protected setOptions(options: any): void;
|
|
11
|
-
private creatData;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MicroChartStackbarBaseDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MicroChartStackbarBaseDirective, "[beMicroChartStackbar]", never, { "chartData": { "alias": "chartData"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
-
}
|