12345678910111213141516171819202122 |
- import { SGraphItem } from "@saga-web/graph/lib";
- export class SNoneLegendItem extends SGraphItem {
-
- constructor(parent, data) {
- super(parent);
- this.data = data;
- this.id = data.ID;
- }
- toData() {
- return this.data;
- }
- }
|