* Abstract class for tree layout. * @constructor * @param {object} params - The parameters for this operator.
(params)
| 136924 | * @constructor |
| 136925 | * @param {object} params - The parameters for this operator. |
| 136926 | */ function HierarchyLayout(params) { |
| 136927 | (0, _vegaDataflow.Transform).call(this, null, params); |
| 136928 | } |
| 136929 | const defaultSeparation = (a, b)=>a.parent === b.parent ? 1 : 2; |
| 136930 | (0, _vegaUtil.inherits)(HierarchyLayout, (0, _vegaDataflow.Transform), { |
| 136931 | transform (_, pulse) { |
nothing calls this directly
no outgoing calls
no test coverage detected