Module

Graphics.D3.Selection

Package
purescript-d3
Repository
pelotom/purescript-d3

#Enter Source

data Enter :: Type -> Type

Instances

#Transition Source

#Exit Source

type Exit d = Selection d

#Void Source

data Void

#select Source

select :: forall d. String -> Selection d -> D3Eff (Selection d)

#selectAll Source

selectAll :: forall d. String -> Selection d -> D3Eff (Selection Void)

#bindData Source

bindData :: forall newData oldData. Array newData -> Selection oldData -> D3Eff (Update newData)

#enter Source

enter :: forall d. Update d -> D3Eff (Enter d)

#exit Source

exit :: forall d. Update d -> D3Eff (Exit d)

#transition Source

transition :: forall d s. Existing s => s d -> D3Eff (Transition d)

#delay Source

delay :: forall d. Number -> Transition d -> D3Eff (Transition d)

#delay' Source

delay' :: forall d. (d -> Number) -> Transition d -> D3Eff (Transition d)

#delay'' Source

delay'' :: forall d. (d -> Number -> Number) -> Transition d -> D3Eff (Transition d)

#duration Source

duration :: forall d. Number -> Transition d -> D3Eff (Transition d)

#duration' Source

duration' :: forall d. (d -> Number) -> Transition d -> D3Eff (Transition d)

#duration'' Source

duration'' :: forall d. (d -> Number -> Number) -> Transition d -> D3Eff (Transition d)

#Appendable Source

class Appendable s  where

Members

Instances

#Existing Source

class Existing s  where

Members

Instances

#Clickable Source

class Clickable c  where

Members

Instances