UNPKG

2.12 kBTypeScriptView Raw
1import { SimpleChanges, EventEmitter, OnChanges, TemplateRef } from '@angular/core';
2import { ColorHelper } from '../common/color.helper';
3import { BubbleChartSeries } from '../models/chart-data.model';
4import { PlacementTypes } from '../common/tooltip/position';
5import { StyleTypes } from '../common/tooltip/style.type';
6import { ScaleType } from '../common/types/scale-type.enum';
7import * as i0 from "@angular/core";
8export declare class BubbleSeriesComponent implements OnChanges {
9 private platformId;
10 data: BubbleChartSeries;
11 xScale: any;
12 yScale: any;
13 rScale: any;
14 xScaleType: ScaleType;
15 yScaleType: ScaleType;
16 colors: ColorHelper;
17 visibleValue: any;
18 activeEntries: any[];
19 xAxisLabel: string;
20 yAxisLabel: string;
21 tooltipDisabled: boolean;
22 tooltipTemplate: TemplateRef<any>;
23 select: EventEmitter<any>;
24 activate: EventEmitter<any>;
25 deactivate: EventEmitter<any>;
26 areaPath: any;
27 circles: any[];
28 placementTypes: typeof PlacementTypes;
29 styleTypes: typeof StyleTypes;
30 isSSR: boolean;
31 constructor(platformId: any);
32 ngOnInit(): void;
33 ngOnChanges(changes: SimpleChanges): void;
34 update(): void;
35 getCircles(): any[];
36 getTooltipText(circle: any): string;
37 onClick(data: any): void;
38 isActive(entry: any): boolean;
39 isVisible(circle: any): boolean;
40 activateCircle(circle: any): void;
41 deactivateCircle(circle: any): void;
42 trackBy(index: any, circle: any): string;
43 static ɵfac: i0.ɵɵFactoryDeclaration<BubbleSeriesComponent, never>;
44 static ɵcmp: i0.ɵɵComponentDeclaration<BubbleSeriesComponent, "g[ngx-charts-bubble-series]", never, { "data": "data"; "xScale": "xScale"; "yScale": "yScale"; "rScale": "rScale"; "xScaleType": "xScaleType"; "yScaleType": "yScaleType"; "colors": "colors"; "visibleValue": "visibleValue"; "activeEntries": "activeEntries"; "xAxisLabel": "xAxisLabel"; "yAxisLabel": "yAxisLabel"; "tooltipDisabled": "tooltipDisabled"; "tooltipTemplate": "tooltipTemplate"; }, { "select": "select"; "activate": "activate"; "deactivate": "deactivate"; }, never, never>;
45}