API / Series/Radar / RadarSeries
Defined in: src/core/types/chart/radar.ts:26
Extends
Type Parameters
| Type Parameter | Default type |
|---|---|
T |
MeaningfulAny |
Properties
| Property | Type | Description |
|---|---|---|
borderColor? |
string |
The color of the border surrounding the radar area. Default --g-color-base-background from @gravity-ui/uikit. |
borderWidth? |
number |
The width of the border surrounding the radar area. Default 1 |
categories? |
RadarSeriesCategory[] |
The categories for the radar chart. |
color? |
string |
The color of the radar series. |
cursor? |
string |
You can set the cursor to "pointer" if you have click events attached to the series, to signal to the user that the points and lines can be clicked. |
custom? |
any |
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 |
data |
RadarSeriesData<T>[] |
- |
dataLabels? |
BaseDataLabels |
Options for the series data labels, appearing next to each data point. |
fillOpacity? |
number |
The opacity of the radar area fill. Default 0.5 |
legend? |
BaseSeriesLegend & object |
Individual series legend options. Has higher priority than legend options in widget data |
marker? |
RadarMarkerOptions |
Options for the point markers of line in radar series |
name? |
string |
The name of the radar series. |
tooltip? |
object |
Options for the tooltip that appears when the user hovers over a series or point. |
tooltip.enabled? |
boolean |
Enable or disable the visibility of this series in the tooltip. Default true |
tooltip.valueFormat? |
ValueFormat |
Formatting settings for tooltip value. |
type |
"radar" |
- |
visible? |
boolean |
Initial visibility of the series |
Previous