How to use the phovea_core/src/idtype.ProductIDType.EVENT_SELECT_PRODUCT function in phovea_core

To help you get started, we’ve selected a few phovea_core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Caleydo / taco / src / data_set_selector.ts View on Github external
private trackSelections(matrix: INumericalMatrix) {
    if (this.trackedSelections) {
      this.trackedSelections.off(ProductIDType.EVENT_SELECT_PRODUCT, this.onSelectionChanged);
    }
    this.trackedSelections = matrix.producttype;
    this.trackedSelections.on(ProductIDType.EVENT_SELECT_PRODUCT, this.onSelectionChanged);
  }
github Caleydo / taco / src / data_set_selector.ts View on Github external
private trackSelections(matrix: INumericalMatrix) {
    if (this.trackedSelections) {
      this.trackedSelections.off(ProductIDType.EVENT_SELECT_PRODUCT, this.onSelectionChanged);
    }
    this.trackedSelections = matrix.producttype;
    this.trackedSelections.on(ProductIDType.EVENT_SELECT_PRODUCT, this.onSelectionChanged);
  }