Node-Red configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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";