@kismet.ts/shared / Exports / Constants / PositionStyleOption

Enumeration: PositionStyleOption

Constants.PositionStyleOption

Options for layouts

  • none: set no position
  • grid: place all nodes in a grid. To have custom control over the grid placements, use Item#setPosition
  • waterfall: place the next object in the sequence right and below the current object
  • mountain: place the next object in the sequence right and above the current object
  • schema: apply the options in the given schema

Default

'none'

Table of contents

Enumeration Members

Enumeration Members

GRID

GRID = "grid"

Defined in

kismet/enum.ts:63open in new window


MOUNTAIN

MOUNTAIN = "mountain"

Defined in

kismet/enum.ts:64open in new window


NONE

NONE = "none"

Defined in

kismet/enum.ts:62open in new window


SCHEMA

SCHEMA = "schema"

Defined in

kismet/enum.ts:65open in new window


WATERFALL

WATERFALL = "waterfall"

Defined in

kismet/enum.ts:66open in new window