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

24 lines (23 loc) 899 B
import { ElementFinder } from "protractor"; import { Atom } from "@nova-ui/bits/sdk/atoms"; import { RichLegendTileAtom } from "./rich-legend-tile.atom"; export declare class LegendSeriesAtom extends Atom { private root; static CSS_CLASS: string; richTile: RichLegendTileAtom; private readonly deemphasizedOpacity; private tile; private checkbox; constructor(root: ElementFinder); getPrimaryDescriptionText(): Promise<string>; getSecondaryDescriptionText(): Promise<string>; getProjectedDescriptionText(): Promise<string>; clickTile: () => Promise<void>; hoverTile: () => Promise<void>; isTileVisible: () => Promise<boolean>; isCheckboxVisible: () => Promise<boolean>; isCheckboxChecked(): Promise<boolean>; isActive: () => Promise<boolean>; isDeemphasized(): Promise<boolean>; isDescriptionDeemphasized(): Promise<boolean>; }