本文整理匯總了TypeScript中@noworkflow/trial.TrialGraph類的典型用法代碼示例。如果您正苦於以下問題:TypeScript TrialGraph類的具體用法?TypeScript TrialGraph怎麽用?TypeScript TrialGraph使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了TrialGraph類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: setGraph
setGraph(data: TrialGraphData, config: any={}) {
let sub = this.node.getElementsByClassName("sub-content")[0];
sub.innerHTML = "";
this.graph = new TrialGraph(this.cls, sub, config);
this.graph.load(data, this.t1, this.t2);
}
示例2: onResize
protected onResize(msg: Widget.ResizeMessage): void {
if (this.graph) {
this.graph.config.width = this.node.getBoundingClientRect().width - 24;
this.graph.config.height = this.node.getBoundingClientRect().height - 24;
this.graph.updateWindow();
}
}