@tomsoftware/webgl-chart-vue
Version:
High performance web Chart Library to plot line-charts using WebGL.
10 lines (9 loc) • 403 B
TypeScript
import { RenderCallback } from '@tomsoftware/webgl-chart';
export declare class ChartConfig {
onRender: RenderCallback | null;
setRenderCallback(callback: RenderCallback): ChartConfig;
/** the max-framerate the chart is redrawn */
maxFrameRate: import('vue').Ref<number, number>;
/** set the maximum number of frames per second */
setMaxFrameRate(maxFrameRate: number): void;
}