Type Alias BimInfoPanelRef

BimInfoPanelRef: {
    onData: DataCustomization;
    onRenderBody: DataRender<Section[]>;
    onRenderBodyEntry: DataRender<Entry>;
    onRenderBodyEntryValue: DataRender<Entry>;
    onRenderBodyGroup: DataRender<Group>;
    onRenderBodySection: DataRender<Section>;
    onRenderHeader: DataRender<Entry[]>;
    onRenderHeaderEntry: DataRender<Entry>;
    onRenderHeaderEntryValue: DataRender<Entry>;
}

A reference object exposing multiple customization callbacks for transforming data and rendering different parts of the BIM info panel. These callbacks can be updated at runtime and will be used the next time the panel re-renders.

Type declaration

  • onData: DataCustomization

    A function that customizes the data before it is rendered in the BIM info panel.

  • onRenderBody: DataRender<Section[]>

    A function that customizes the rendering for the body section of the BIM info panel.

  • onRenderBodyEntry: DataRender<Entry>

    A function that customizes the rendering for each entry of the body in the BIM info panel.

  • onRenderBodyEntryValue: DataRender<Entry>

    A function that customizes the rendering of each value for a single body entry in the info panel.

  • onRenderBodyGroup: DataRender<Group>

    A function that customizes the rendering of each group of the body in the BIM info panel.

  • onRenderBodySection: DataRender<Section>

    A function that customizes the rendering of each section of the body in the BIM info panel.

  • onRenderHeader: DataRender<Entry[]>

    A function that customizes the rendering of the header of the BIM info panel.

  • onRenderHeaderEntry: DataRender<Entry>

    A function that customizes the rendering of each header entry in the BIM info panel.

  • onRenderHeaderEntryValue: DataRender<Entry>

    A function that customizes the rendering of each entry value of the header in the BIM info panel.