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.polarArea.d.ts 808B

1234567891011121314151617181920212223242526272829303132333435
  1. export default class PolarAreaController extends DatasetController {
  2. static id: string;
  3. /**
  4. * @type {any}
  5. */
  6. static overrides: any;
  7. constructor(chart: any, datasetIndex: any);
  8. innerRadius: number;
  9. outerRadius: number;
  10. getLabelAndValue(index: any): {
  11. label: any;
  12. value: string;
  13. };
  14. parseObjectData(meta: any, data: any, start: any, count: any): {
  15. r: unknown;
  16. }[];
  17. update(mode: any): void;
  18. /**
  19. * @protected
  20. */
  21. protected getMinMax(): {
  22. min: number;
  23. max: number;
  24. };
  25. /**
  26. * @private
  27. */
  28. private _updateRadius;
  29. countVisibleElements(): number;
  30. /**
  31. * @private
  32. */
  33. private _computeAngle;
  34. }
  35. import DatasetController from "../core/core.datasetController.js";