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

13 lines (12 loc) 468 B
import { IChartPalette, IValueProvider } from "../types"; export declare class ChartPalette implements IChartPalette { private _standardColors; private _textColors; private _backgroundColors; constructor(colors: string[] | IValueProvider<string>, options?: { backgroundOpacity: number; }); get standardColors(): IValueProvider<string>; get backgroundColors(): IValueProvider<string>; get textColors(): IValueProvider<string>; }