UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

41 lines (40 loc) 930 B
import { EPoint, ILineMarkPointType } from './chart-style'; export declare const pointOptions: { text: string; value: EPoint; }[]; export declare const lineOptions: { item: string; value: boolean; }[]; export declare const valueLabelOptions: { item: string; value: ILineMarkPointType; }[]; export interface IBand { field: string; upperBorder?: string; lowerBorder?: string; forecast?: boolean; } export interface IMarkAreas { min: number; max: number; color: string; borderColor: string; } export interface IEmphasizeAreas { name?: string; sery?: string; seryTag?: string; minX: number | string | 'min' | 'average'; maxX?: number | string | 'max' | 'average'; minY: number | 'min' | 'average'; maxY?: number | 'max' | 'average'; color?: string; borderColor: string; } export interface ITagColor { tag: string; colors: string[]; }