UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

24 lines (23 loc) 720 B
/** * This module abuses the filter function a bit like the statistics module. Nothing is filtered. * * @returns {{}} */ import { FilterModuleTemplate } from './filterModuleTemplate'; export declare class NodeScalingSwitch extends FilterModuleTemplate { graph: any; static DEFAULT_STATE: boolean; nodes: any; properties: any; enabled: boolean; filteredNodes: any; filteredProperties: any; constructor(graph: any); /** * If enabled, the scaling of nodes according to individuals will be enabled. * @param untouchedNodes * @param untouchedProperties */ filter(untouchedNodes: any, untouchedProperties: any): void; reset(): void; }