c3-simple-mind-map
Version:
一个简单的web在线思维导图
23 lines (22 loc) • 701 B
TypeScript
export default OrganizationStructure
declare class OrganizationStructure extends Base {
constructor(opt?: {})
doLayout(callback: any): void
computedBaseValue(): void
computedLeftValue(): void
adjustLeftValue(): void
updateBrothers(node: any, addWidth: any): void
renderLine(node: any, lines: any, style: any, lineStyle: any): void
renderLineDirect(node: any, lines: any, style: any): any[]
renderLineStraight(node: any, lines: any, style: any): any[]
renderExpandBtn(node: any, btn: any): void
renderGeneralization(list: any): void
renderExpandBtnRect(
rect: any,
expandBtnSize: any,
width: any,
height: any,
node: any
): void
}
import Base from './Base'