@visactor/vmind
Version:
<div align="center"> <a href="https://github.com/VisActor#gh-light-mode-only" target="_blank"> <img alt="VisActor Logo" width="200" src="https://github.com/VisActor/.github/blob/main/profile/logo_500_200_light.svg"/> </a> <a href="https://githu
32 lines (31 loc) • 986 B
TypeScript
import type { GenerateChartCellContext } from '../../type';
export declare const colorBar: (context: GenerateChartCellContext) => {
spec: any;
};
export declare const cartesianBar: (context: GenerateChartCellContext) => {
spec: any;
cell: {
x?: string | string[];
y?: string | string[];
color?: string | string[];
size?: string;
angle?: string;
radius?: string;
time?: string;
source?: string;
target?: string;
value?: string;
category?: string;
isTransposed?: boolean;
};
};
export declare const displayConfBar: (context: GenerateChartCellContext) => {
spec: any;
};
export declare const transposeField: (context: GenerateChartCellContext) => GenerateChartCellContext;
export declare const animationCartesianBar: (context: GenerateChartCellContext) => {
spec: any;
};
export declare const pipelineBar: ((context: GenerateChartCellContext) => {
spec: any;
})[];