API / Series/Area-Range / AreaRangeSeriesData

Defined in: src/core/types/chart/area-range.ts:10

Extends

Type Parameters

Type Parameter Default type
T MeaningfulAny

Properties

Property Type Description
color? string Individual color for the data chunk (point in scatter, segment in pie, bar etc)
custom? T A reserved subspace to store options and values for customized functionality Here you can add additional data for your own event callbacks and formatter callbacks
dataLabels? object Per-point overrides for the series data label.
dataLabels.enabled? boolean Per-point override of series.dataLabels.enabled. The point-level value takes precedence: true shows the label even when series-level labels are disabled, false hides the label even when series-level labels are enabled. Default series.dataLabels.enabled
label? string | number Optional label formatted with dataLabels.format. Otherwise both boundaries are formatted separately.
marker? object Marker color and normal-state visibility for both boundaries of this point.
marker.color? string Fill color of the marker for this point
marker.states? object States for a single point marker.
marker.states.normal? object The normal state of a single point marker.
marker.states.normal.enabled boolean Enable or disable the point marker. Default false
tooltip? object Per-point overrides for the tooltip behavior.
tooltip.enabled? boolean Per-point override of series.tooltip.enabled. The point-level value takes precedence: true shows the point in the tooltip even when the series is hidden from the tooltip, false hides the point even when the series is shown. Default series.tooltip.enabled
x? string | number Numeric X value, timestamp, category name, or category index, depending on the X-axis type.
y0 null | number Lower Y boundary. Must not exceed y1. A null boundary makes the whole point incomplete.
y1 null | number Upper Y boundary. Must not be less than y0. A null boundary makes the whole point incomplete.