Assigns new set of steps for the palette used by the heatmap. Each step is a pair object consisting of value and color fields.
Example usage:
heatmap.setPalette([
{value: 0, color: ColorRGBA( 0, 0, 255 )},
{value: 50, color: ColorRGBA( 0, 255, 0 )},
{value: 100, color: ColorRGBA( 255, 0, 0 )}
])
An array of palette steps.
Sets the size of the heatmap using axis values. Doesn't affect the row or column count of the heatmap.
Start X-position.
Start Y-position.
End X-position.
End Y-position.
A heatmap visualization of three dimensional data (X, Y, color).