# Series

FlexChart supports Waterfall, ErrorBar and BoxWhiskers series. Learn more about the different series supported by ComponentOne FlexChart control in MVC documentation.

## Content



Series are the groupings of the related points of data inside the Plot Area of the chart. You can use various types of series in FlexChart which are listed as follows.

[WaterFall Series](/componentone/docs/mvc/online-mvc/workwithcontrols/Olap/workwitholap/OlapDataBinding/ModelBindingOlap)

Learn how to add WaterFall Series in FlexChart.

[ErrorBar Series](/componentone/docs/mvc/online-mvc/workwithcontrols/Olap/workwitholap/OlapDataBinding/OlapRemoteBinding)

Learn how to add ErrorBar Series in FlexChart.

[BoxWhisker Series](/componentone/docs/mvc/online-mvc/workwithcontrols/Olap/workwitholap/OlapDataBinding/CubeData)

Learn how to add BoxWhisker Series in FlexChart.

### Series Tooltip

By default, FlexChart displays tooltip when you hover the mouse on a data point in a chart or a series. It allows you to display the tooltip content for specific chart series using the **Series.TooltipContent** property.

The following code demonstrates how to add the tooltip content for a specific series. This example uses the sample created in the [Customize Appearance](/componentone/docs/mvc/online-mvc/workwithcontrols/FlexChart/workwithflexchart/customizeseriesappearance) section.

```razor
.TooltipContent("<b>{name}</b> : {value}")
```