Skip to main content

HistogramGraphType

Other

Histogram graph type for visualization. Specifies the visual representation style of the histogram. Available values: - Bar: Draw the histogram as bars. - Line: Draw the histogram as a connected line graph. - FilledLine: Draw the histogram as a filled line graph.

Import

import ScriptingApi as api

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

Enumeration Values

Enumeration Type from HistogramGraphType

ValueDescription
HistogramGraphType.BarBar option
HistogramGraphType.LineLine option
HistogramGraphType.FilledLineFilledLine option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.HistogramGraphType.Bar

See Also