@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
12 lines (11 loc) • 334 B
TypeScript
import { IChartMarker } from "../../types";
/**
* This class creates a ChartMarker based on provided portion of svg markup
*/
export declare class SvgMarker implements IChartMarker {
protected svg: string;
protected styledSvg: string;
constructor(svg: string);
getSvg(): string;
setColor(color: string): void;
}