HeatmapConfig¶
Type Alias HeatmapConfigExperimental
colorBands?: boolean;
colorResolution?: number;
colorScheme?: HeatmapColorScheme | CustomHeatmapColorScheme;
kernel?: HeatmapKernel;
maxValue?: number;
sizeFactor?: number;
strengthFactor?: number;
}
Type declaration
OptionalcolorBands?: booleanWhether the color mapping produces a continuous gradient of colors or separated bands of colors. Can be used in combination with colorResolution to generate isobands.
OptionalcolorResolution?: numberResolution of color scheme lookup texture. Can be used in combination with colorBands to generate isobands.
OptionalcolorScheme?: HeatmapColorScheme | CustomHeatmapColorSchemeColor scheme to map calculated densities to.
Optionalkernel?: HeatmapKernelDensity falloff function from the center of a data point towards it's maximum impact range.
OptionalmaxValue?: numberUpper end of the color scheme. The calculated density is divided by this value before sampling the color scheme lookup texture.
OptionalsizeFactor?: numberGlobal factor to adjust range of all points. Each heatmap point's size is scaled based on this value.
OptionalstrengthFactor?: numberGlobal factor to adjust maximum density of all points. This factor is applied to all heatmap points, adjusting the overall density.
Experimental. May be changed in the future without notice.
Global Heatmap configuration. When partially filled, only set values are override.