Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

controller.scatter.d.ts 459B

1234567891011121314151617181920
  1. export default class ScatterController extends DatasetController {
  2. static id: string;
  3. /**
  4. * @type {any}
  5. */
  6. static overrides: any;
  7. /**
  8. * @protected
  9. */
  10. protected getLabelAndValue(index: any): {
  11. label: any;
  12. value: string;
  13. };
  14. update(mode: any): void;
  15. /**
  16. * @protected
  17. */
  18. protected getMaxOverflow(): any;
  19. }
  20. import DatasetController from "../core/core.datasetController.js";