angular-sunburst-radar-chart
Version:
A Sunburst Radar chart with SVG,No Dependencies
25 lines (24 loc) • 914 B
TypeScript
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;