Skip to main content

AnalysisDisplaySettings

Other

Visual settings for analysis result display. Controls the color mapping and range for visualizing analysis results.

Import

import ScriptingApi as api

# Access the class
# AnalysisDisplaySettings is available via api.AnalysisDisplaySettings

Properties

above_max_range_color

Color [r, g, b] used for values above the maximum range threshold.

Type: list


lookup_table_type

Lookup table palette used to map analysis values to colors. Use api.LookupTableType.ReverseRainbow

Type: LookupTableType


below_min_range_color

Color [r, g, b] used for values below the minimum range threshold.

Type: list


constant_color

Constant color [r, g, b] used when no lookup table mapping is required.

Type: list


lookup_table_opacity

Opacity of the lookup table when visualizing analysis results. Only applicable for mask-based analyses.

Type: float


range

Value range [min, max] used to map analysis values to colors.

Type: list


See Also