@antv/t8
Version:
T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative JSON Schema syntax that can be used to describe the content of data interpretation reports.
10 lines • 400 B
TypeScript
/**
* Generates an SVG arc path representing a proportion of a circle
* Used to create pie/circle segments for proportion visualization
*
* @param size - The diameter of the circle
* @param data - The proportion value (between 0 and 1)
* @returns An SVG path string for the arc
*/
export declare function getArcPath(size: number, data: number): string;
//# sourceMappingURL=getArcPath.d.ts.map