UNPKG

@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

11 lines (10 loc) 425 B
import { IChartMarker } from "../types"; import { SequentialValueProvider } from "./sequential-value-provider"; /** * This class matches the provided markers to given series. * It keeps track of already given markers to given entities to avoid conflicts. */ export declare class SequentialChartMarkerProvider extends SequentialValueProvider<IChartMarker> { private markers; constructor(markers: IChartMarker[]); }