Module
DataViz.Layout.Adjacency.Types
- Package
- purescript-hylograph-layout
- Repository
- afcondon/purescript-hylograph-layout
DataViz.Layout.Adjacency.Types
Types for adjacency matrix visualization. An adjacency matrix shows relationships between nodes as a grid where each cell represents a connection between row and column nodes.
#MatrixCell Source
type MatrixCell = { col :: Int, colName :: String, position :: CellPosition, row :: Int, rowName :: String, value :: Number }A cell in the laid out matrix Contains both the data and computed position
#MatrixLabel Source
type MatrixLabel = { displayName :: String, index :: Int, isRow :: Boolean, name :: String, position :: LabelPosition }A label for row or column
#MatrixLayout Source
type MatrixLayout = { cells :: Array MatrixCell, colLabels :: Array MatrixLabel, gridHeight :: Number, gridWidth :: Number, rowLabels :: Array MatrixLabel, totalHeight :: Number, totalWidth :: Number }Complete layout output ready for rendering
- Modules
- DataViz.
Layout. Adjacency - DataViz.
Layout. Adjacency. Layout - DataViz.
Layout. Adjacency. Types - DataViz.
Layout. Chord - DataViz.
Layout. Chord. Layout - DataViz.
Layout. Chord. Types - DataViz.
Layout. Hierarchy. Cluster - DataViz.
Layout. Hierarchy. Core - DataViz.
Layout. Hierarchy. EdgeBundle - DataViz.
Layout. Hierarchy. EdgeBundle. Bilink - DataViz.
Layout. Hierarchy. EdgeBundle. BundleCurve - DataViz.
Layout. Hierarchy. EdgeBundle. Hierarchy - DataViz.
Layout. Hierarchy. EdgeBundle. RadialCluster - DataViz.
Layout. Hierarchy. EdgeBundle. Types - DataViz.
Layout. Hierarchy. Link - DataViz.
Layout. Hierarchy. Pack - DataViz.
Layout. Hierarchy. Partition - DataViz.
Layout. Hierarchy. Tree - DataViz.
Layout. Hierarchy. TreeStyle - DataViz.
Layout. Hierarchy. Treemap - DataViz.
Layout. Hierarchy. Types - DataViz.
Layout. Pattern - DataViz.
Layout. Pattern. Types - DataViz.
Layout. Sankey. CSV - DataViz.
Layout. Sankey. Compute - DataViz.
Layout. Sankey. ComputeWithSteps - DataViz.
Layout. Sankey. Path - DataViz.
Layout. Sankey. Types - DataViz.
Layout. StateMachine - DataViz.
Layout. StateMachine. Layout - DataViz.
Layout. StateMachine. Path - DataViz.
Layout. StateMachine. Types