Heat Map Plot
fun <X : Comparable<X>, Y : Comparable<Y>, Z> XYGraphScope<X, Y>.HeatMapPlot(xDomain: ClosedRange<X>, yDomain: ClosedRange<Y>, bins: HeatMapGrid<Z>, colorScale: (Z) -> Color, alphaScale: (Z) -> Float = { 1f }, animationSpec: AnimationSpec<Float> = KoalaPlotTheme.animationSpec)
A HeatMap plot displays 2-dimensional data values as color.
Parameters
x Domain
Domain for the x dimension.
y Domain
Domain for the y dimension.
bins
An 2D array of values.
color Scale
A mapping function from value to color.
alpha Scale
A mapping function from value to alpha.
animation Spec
The AnimationSpec to use for animating the plot.