blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/orchestrator.d.ts

13 lines
546 B
TypeScript
Raw Normal View History

2024-03-07 14:14:09 -06:00
import type { DrawableElem, XYChartConfig, XYChartData, XYChartThemeConfig } from './interfaces.js';
import type { Group } from '../../../diagram-api/types.js';
export declare class Orchestrator {
private chartConfig;
private chartData;
private componentStore;
constructor(chartConfig: XYChartConfig, chartData: XYChartData, chartThemeConfig: XYChartThemeConfig, tmpSVGGroup: Group);
private calculateVerticalSpace;
private calculateHorizontalSpace;
private calculateSpace;
getDrawableElement(): DrawableElem[];
}