Chart-0.15: 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.

Instances

area_spots_title :: forall z x y. T (AreaSpots z x y) StringSource

area_spots_linethick :: forall z x y. T (AreaSpots z x y) DoubleSource

area_spots_values :: forall z x y. T (AreaSpots z x y) [(x, y, z)]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.)

Instances

area_spots_4d_title :: forall z t x y. T (AreaSpots4D z t x y) StringSource

area_spots_4d_linethick :: forall z t x y. T (AreaSpots4D z t x y) DoubleSource

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

area_spots_4d_max_radius :: forall z t x y. T (AreaSpots4D z t x y) DoubleSource

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