Skip to content
PatrickVonMassow-GIP edited this page Aug 22, 2024 · 2 revisions

Name

XcTree

Description

XcTree is a simple and fast way to visualize complete datatypes.

Attributes

  • xc-tree-datasource: Attribute to pass data through

Example Implementation

HTML

<xc-tree [xc-tree-datasource]="treeDataSource"></xc-tree>

TypeScript

treeDataSource: XcStructureTreeDataSource;
constructor(...) {
  this.treeDataSource = new XcStructureTreeDataSource(this.apiService, this.i18nService, environment.zeta.xo.runtimeContext, this.data);
}
Clone this wiki locally