@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
14 lines (13 loc) • 506 B
TypeScript
import { LegendSeriesAtom } from "../legend/legend-series.atom";
import { ChartAtom } from "./atoms/chart.atom";
export declare class SparkChartTestPage {
private root;
private dataInput;
constructor();
getChartCount(): Promise<number>;
getSparkCountInStack(className: string): Promise<number>;
getLegendSeriesCount(): Promise<number>;
getChart(index: number): ChartAtom;
getLegendSeries(index: number): LegendSeriesAtom;
changeData(input: number[][]): Promise<void>;
}