Search results

EmptyPointSettings API in React Range Navigator API component

This class configures the appearance and behavior of points with empty data in the series.

Properties

border

BorderModel

Options to customize the border for empty points in the series, including color and width.

Defaults to “{color: ‘transparent’, width: 0}”

fill

string

Customizes the fill color for empty points in the series.

Defaults to null

mode

EmptyPointMode | AccEmptyPointMode

Defines the mode for handling empty or missing data points in the series. The available modes are:

  • Gap - Displays empty points as gaps in the series.
  • Zero - Displays empty points as zero values.
  • Drop - Ignores empty points while rendering the series.
  • Average - Displays empty points as the average of the previous and next points.

Defaults to Gap