@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) • 332 B
TypeScript
import { ChartPopoverPlugin } from "./chart-popover-plugin";
import { IElementPosition } from "./types";
/**
* Extends ChartPopoverPlugin to handle popover positioning for radial charts.
*/
export declare class RadialPopoverPlugin extends ChartPopoverPlugin {
protected getAbsolutePosition(valArr: any[]): IElementPosition;
}