@iotize/ionic
Version:
Iotize specific building blocks on top of @ionic/angular.
33 lines (32 loc) • 2.27 kB
TypeScript
import { ChangeDetectorRef, ElementRef, NgZone, OnDestroy } from '@angular/core';
import { AbstractVariable } from '@iotize/tap/data';
import { PolarChartComponent, LegendPosition } from '@swimlane/ngx-charts';
import { ChartInputMutli, ChartInputStreamVar } from '../ChartDataModel';
import { OnChartSelectEvent } from '../shared-types';
import * as i0 from "@angular/core";
export declare class TapVariablePolarRadarChartComponent extends PolarChartComponent implements OnDestroy {
colorScheme: {
domain: string[];
};
legend: boolean;
legendPosition: LegendPosition;
showExportButton: boolean;
exportedFileName?: string;
xAxis: boolean;
showXAxisLabel: boolean;
yAxis: boolean;
showYAxisLabel: boolean;
valueCountLimit: number;
set variable(variableOrArray: AbstractVariable<number | number[]> | AbstractVariable<number | number[]>[] | undefined);
set input(inputs: ChartInputStreamVar[]);
loaded: boolean;
results: ChartInputMutli[];
private chartModel;
private subscription?;
constructor(myChartElement: ElementRef<any>, zone: NgZone, platformId: string, cd: ChangeDetectorRef);
createExportedData(): any[];
ngOnDestroy(): void;
onSelect(event: OnChartSelectEvent): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TapVariablePolarRadarChartComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TapVariablePolarRadarChartComponent, "tap-variable-polar-radar-chart", never, { "colorScheme": { "alias": "colorScheme"; "required": false; }; "legend": { "alias": "legend"; "required": false; }; "legendPosition": { "alias": "legendPosition"; "required": false; }; "showExportButton": { "alias": "showExportButton"; "required": false; }; "exportedFileName": { "alias": "exportedFileName"; "required": false; }; "xAxis": { "alias": "xAxis"; "required": false; }; "showXAxisLabel": { "alias": "showXAxisLabel"; "required": false; }; "yAxis": { "alias": "yAxis"; "required": false; }; "showYAxisLabel": { "alias": "showYAxisLabel"; "required": false; }; "valueCountLimit": { "alias": "valueCountLimit"; "required": false; }; "variable": { "alias": "variable"; "required": false; }; "input": { "alias": "input"; "required": false; }; }, {}, never, never, false, never>;
}