Chart-0.14: A library for generating 2D Charts and Plots

Graphics.Rendering.Chart.Plot.AreaSpots

Description

Area spots are a collection of unconnected filled circles, with x,y position, and an independent z value to be represented by the relative area of the spots.

Synopsis

Documentation

data AreaSpots z x y Source

A collection of unconnected spots, with x,y position, and an independent z value to be represented by the area of the spot.

area_spots_title :: forall z[aRYj] x[aRYk] y[aRYl]. T (AreaSpots z[aRYj] x[aRYk] y[aRYl]) StringSource

area_spots_linethick :: forall z[aRYj] x[aRYk] y[aRYl]. T (AreaSpots z[aRYj] x[aRYk] y[aRYl]) DoubleSource

area_spots_linecolour :: forall z[aRYj] x[aRYk] y[aRYl]. T (AreaSpots z[aRYj] x[aRYk] y[aRYl]) (AlphaColour Double)Source

area_spots_fillcolour :: forall z[aRYj] x[aRYk] y[aRYl]. T (AreaSpots z[aRYj] x[aRYk] y[aRYl]) (AlphaColour Double)Source

area_spots_max_radius :: forall z[aRYj] x[aRYk] y[aRYl]. T (AreaSpots z[aRYj] x[aRYk] y[aRYl]) DoubleSource

area_spots_values :: forall z[aRYj] x[aRYk] y[aRYl]. T (AreaSpots z[aRYj] x[aRYk] y[aRYl]) [(x[aRYk], y[aRYl], z[aRYj])]Source

data AreaSpots4D z t x y Source

A collection of unconnected spots, with x,y position, an independent z value to be represented by the area of the spot, and in addition, a fourth variable t to be represented by a colour from a given palette. (A linear transfer function from t to palette is assumed.)

area_spots_4d_title :: forall z[aRYf] t[aRYg] x[aRYh] y[aRYi]. T (AreaSpots4D z[aRYf] t[aRYg] x[aRYh] y[aRYi]) StringSource

area_spots_4d_linethick :: forall z[aRYf] t[aRYg] x[aRYh] y[aRYi]. T (AreaSpots4D z[aRYf] t[aRYg] x[aRYh] y[aRYi]) DoubleSource

area_spots_4d_palette :: forall z[aRYf] t[aRYg] x[aRYh] y[aRYi]. T (AreaSpots4D z[aRYf] t[aRYg] x[aRYh] y[aRYi]) [Colour Double]Source

area_spots_4d_max_radius :: forall z[aRYf] t[aRYg] x[aRYh] y[aRYi]. T (AreaSpots4D z[aRYf] t[aRYg] x[aRYh] y[aRYi]) DoubleSource

area_spots_4d_values :: forall z[aRYf] t[aRYg] x[aRYh] y[aRYi]. T (AreaSpots4D z[aRYf] t[aRYg] x[aRYh] y[aRYi]) [(x[aRYh], y[aRYi], z[aRYf], t[aRYg])]Source