@nova-ui/charts
Version:
Nova Charts is a library created to provide potential consumers with solutions for various data visualizations that conform with the Nova Design Language. It's designed to solve common patterns identified by UX designers, but also be very flexible so that
9 lines (8 loc) • 336 B
TypeScript
import { Arc, DefaultArcObject } from "d3-shape";
import { RadialRenderer } from "./radial-renderer";
/**
* Renderer that is able to draw pie chart
*/
export declare class PieRenderer extends RadialRenderer {
protected getArc(range: [number, number], arc: Arc<any, DefaultArcObject>, index: number): Arc<any, DefaultArcObject>;
}