d3js-0.1.0.0: Declarative visualization on a web browser with DSL approach.

Safe HaskellSafe-Inferred

D3JS.Syntax

Synopsis

Documentation

type St r = RWS () Text Int rSource

St (which means Statement) monad represents JavaScript statements. D3JS.Chart uses St monad extensively.

execute :: Chain () b -> St ()Source

idx0 :: NumFunc rSource

d[0] as a user-defined function.

idx1 :: NumFunc rSource

d[1] as a user-defined function.

_x :: NumFunc rSource

d.x as a user-defined function.

_y :: NumFunc rSource

d.y as a user-defined function.