123456789101112131415161718192021222324252627282930 |
- import { SGraphItem } from "./SGraphItem";
- import { SObject } from "@persagy-web/base/lib";
- import { SGraphLayoutType } from "./enums/SGraphLayoutType";
- import { SOrderSetType } from "./enums/SOrderSetType";
- export declare class SGraphSelectContainer extends SObject {
- private itemList;
- get count(): number;
- private radix;
- constructor();
- addItem(item: SGraphItem): void;
- setItem(item: SGraphItem): void;
- clear(): void;
- toggleItem(item: SGraphItem): void;
- layout(type: SGraphLayoutType): void;
- setOrder(type: SOrderSetType): void;
- private alignLeft;
- private alignTop;
- private alignRight;
- private alignBottom;
- private alignCenter;
- private alignMiddle;
- private alignVertical;
- private alignHorizontal;
- private setTop;
- private setBottom;
- private setBefore;
- private setAfter;
- sortItemList(arr: SGraphItem[], flag?: boolean): SGraphItem[];
- private compare;
- }
|