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

9 lines (8 loc) 445 B
/** Common CSS filter IDs */ export declare enum CssFilterId { Grayscale = "grayscale" } /** CSS grayscale filter rule value */ export declare const GRAYSCALE_FILTER = "url(\"#grayscale\")"; /** Transformation matrix value for applying a 100% grayscale appearance to an svg element */ export declare const GRAYSCALE_COLOR_MATRIX = "\n0.2126 0.7152 0.0722 0 0\n0.2126 0.7152 0.0722 0 0\n0.2126 0.7152 0.0722 0 0\n0 0 0 1 0\n";