UNPKG

angular-sunburst-radar-chart

Version:
25 lines (24 loc) 914 B
import { Point } from './positions'; export declare function createOuterChartBarWithInArc({ item, startAngle, endAngle, middleAngle, color, middleRadius, maxScore, innerRadiusBorder, center }: { item: any; startAngle: any; endAngle: any; middleAngle: any; color: any; middleRadius: any; maxScore: any; innerRadiusBorder: any; center: any; }): import("./models").AngularSvgElement; export declare function getUpdatedPoints(firstPoint: Point, secondPoint: Point, distFromStartToFirst: any, distFromStartToSecond: any): { updatedSecondPoint: Point; updatedFirstPoint: Point; }; export declare function createInnerChartBarWithInArc({ startPoint, item, radius, startAngle, endAngle, maxScore }: { startPoint: any; item: any; radius: any; startAngle: any; endAngle: any; maxScore: any; }): import("./models").AngularSvgElement;