Skip to content

RadarSeries API

Extended documentation for the RadarSeries interface with detailed information on the module's properties and available APIs.

Demos

Import

import { RadarSeries } from '@mui/x-charts-pro'
// or
import { RadarSeries } from '@mui/x-charts'

Properties

Type:number[]


Type:'radar'


Optional

Color to use when displaying the series.

Type:string


Optional

If true fill the series area.

Type:boolean


Optional

If true hide marks at value position.

Type:boolean


Optional

The scope to apply when the series is highlighted.

Type:HighlightScope


Optional

The id of this series.

Type:SeriesId


Optional

The label to display on the tooltip or the legend. It can be a string or a function.

Type:string | ((location: 'tooltip' | 'legend') => string)


Optional

Defines the mark type for the series.

There is a default mark type for each series type.

Type:ChartsLabelMarkType


Optional

Formatter used to render values in tooltip or other data display.

Type:SeriesValueFormatter<TValue>