package.src.PainterBase.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zrender Show documentation
Show all versions of zrender Show documentation
A lightweight graphic library providing 2d draw for Apache ECharts
The newest version!
import { GradientObject } from './graphic/Gradient';
import { PatternObject } from './graphic/Pattern';
import { Dictionary } from './core/types';
// interface PainterOption {
// width?: number | string // Can be 10 / 10px / auto
// height?: number | string
// }
export interface PainterBase {
type: string
// root will be undefined if ssr is true
root?: HTMLElement
// If ssr only
ssrOnly?: boolean
// constructor(dom: HTMLElement, storage: Storage, opts: PainterOption, id: number): void
resize(width?: number | string, height?: number | string): void
refresh(): void
clear(): void
// must be given if ssr is true.
renderToString?(): string;
getType: () => string
getWidth(): number
getHeight(): number
dispose(): void
getViewportRoot: () => HTMLElement
getViewportRootOffset: () => {offsetLeft: number, offsetTop: number}
refreshHover(): void
configLayer(zlevel: number, config: Dictionary): void
setBackgroundColor(backgroundColor: string | GradientObject | PatternObject): void
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy