Class StructureVisualizer

A structure-only chemiscope visualizer: two panels (map, info) updating one another when the user interact with any of them.

Properties

structure: ViewersGrid

Methods

  • Apply the given settings to the structure panels in the visualizer

    Parameters

    Returns void

  • Add the given callback to be called whenever a setting changes. The callback will be given the path to the settings as a list of keys; and the new value of the setting.

    There is currently no way to remove a callback.

    Parameters

    • callback: ((keys, value) => void)
        • (keys, value): void
        • Parameters

          • keys: string[]
          • value: unknown

          Returns void

    Returns void

  • Removes all the chemiscope widgets from the DOM

    Returns void

  • Load a dataset and create a visualizer.

    This function returns a Promise<StructureVisualizer> to prevent blocking the browser while everything is loading.

    Parameters

    • config: StructureConfig

      configuration of the visualizer

    • dataset: Dataset

      visualizer input, containing a dataset and optional visualization settings

    Returns Promise<StructureVisualizer>

    Promise that resolves to a StructureVisualizer