@swimlane/ngx-charts
Version:
Declarative Charting Framework for Angular2 and beyond!
46 lines (45 loc) • 1.29 kB
TypeScript
import { OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
import { LocationStrategy } from '@angular/common';
export declare class PolarSeriesComponent implements OnChanges {
private location;
name: any;
data: any;
xScale: any;
yScale: any;
colors: any;
scaleType: any;
curve: any;
activeEntries: any[];
rangeFillOpacity: number;
tooltipDisabled: boolean;
tooltipText: (o: any) => string;
gradient: boolean;
tooltipTemplate: TemplateRef<any>;
path: string;
circles: any[];
circleRadius: number;
outerPath: string;
areaPath: string;
gradientId: string;
gradientUrl: string;
hasGradient: boolean;
gradientStops: any[];
areaGradientStops: any[];
seriesColor: string;
active: boolean;
inactive: boolean;
constructor(location: LocationStrategy);
ngOnChanges(changes: SimpleChanges): void;
update(): void;
getAngle(d: any): any;
getRadius(d: any): any;
getLineGenerator(): any;
sortData(data: any): any;
isActive(entry: any): boolean;
isInactive(entry: any): boolean;
defaultTooltipText({label, value}: {
label: any;
value: any;
}): string;
updateGradients(): void;
}