Wiki

Clone wiki

Tree Visualization API / strip

Operator.js

connectTofillorderreshaperotatescalesetStrokeColorsetStrokeWidthslicesquarifystriptranslate

Function strip

Performs a strip subdivision as in the Strip Treemap layout
Recommended stage: ALLOCATION

Function definition


strip(direction,attribute,condition);      

Parameters


direction = (HORIZONTAL|VERTICAL)
attribute = (“leaves”|”children”|”strahlernum”)
condition = optional condition if operator is to be carried out. If left out, it is assumed TRUE

Example


//Perform strip subdivision among leaves.

ALLOCATE:
{
strip(HORIZONTAL,"leaves");
}

Updated