---
title: "Radar ViewHelper <c:echart.radar>"
manual: "SAV Charts"
version: "14.7"
source: "Reference/FluidParserViewHelpers/EChart/RadarViewHelper/Index.rst"
rendered: "2026-09-17T13:01:15+00:00"
---

# Radar ViewHelper \<c:echart.radar> {#radar-viewhelper-c-echart-radar}

ViewHelper to include a radar chart with `Apache ECharts`.

Go to the source code of this ViewHelper:
[RadarViewHelper.php](https://github.com/YolfTypo3/SavCharts/blob/main/Classes/ViewHelpers/EChart/RadarViewHelper.php) (GitHub).

## Quick Test {#quick-test}

```xml
<c:template id="1">
EXT:sav_charts/Resources/Private/Templates/EChartsExamples/RadarChart.fluid"
</c:template>
```

![](../../../../Images/ScreenShots/ECharts/radarChart.png)

## Arguments {#arguments}

-   **id**

    -   *Required:* true
    -   *Type:* string

    Chart ID

-   **options**

    -   *Required:* true
    -   *Type:* mixed

    Options, or a reference to options

-   **width**

    -   *Type:* string
    -   *Default:* 600

    Width value, or a reference to the width value

-   **height**

    -   *Type:* string
    -   *Default:* 400

    Height value, or a reference to the height value

## Examples {#examples}

### Defining a Radar Chart {#defining-a-radar-chart}

```xml
<c:echarts>
    <c:echart.radar id="1" options="data__radarChartOptions" >
        ...
    </c:echart.radar>
</c:echarts>
```
