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

# Line ViewHelper \<c:echart.line> {#line-viewhelper-c-echart-line}

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

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

## Quick Test {#quick-test}

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

![](../../../../Images/ScreenShots/ECharts/lineChart.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 Line Chart {#defining-a-line-chart}

```xml
<c:echarts>
    <c:echart.line id="1" options="data__lineChartOptions" >
        ...
    </c:echart.line>
</c:echarts>
```
