# Selection

FlexChart supports points and series selection in a chart. Learn more about the selection mode in MVC documentation.

## Content



You can choose what element of the FlexChart should be selected when the user clicks on any region in a FlexChart by setting the [SelectionMode](/componentone/api/mvc/online-mvc/dotnet-framework-api/C1.Web.Mvc/C1.Web.Mvc.FlexChartBase-1.SelectionMode.html) property. This property provides three options:

*   **None**: Does not select any element.
*   **Point**: Highlights the point that the user clicks.
*   **Series**: Highlights the series that the user clicks.

The images below show how the FlexChart appears after these properties have been set.

![Showcasing Point selection mode in FlexChart](https://cdn.mescius.io/document-site-files/images/2b3ac322-100e-4637-958d-fb40dcda3f44/images/chartselectionpoint.png)

When SelectionMode is set to **Point**

![Showcasing Series selection mode in FlexChart](https://cdn.mescius.io/document-site-files/images/2b3ac322-100e-4637-958d-fb40dcda3f44/images/chartselectionseries.png)

When SelectionMode is set to **Series**

The following code example demonstrates how to set this property. This example uses the sample created in the [Quick Start](/componentone/docs/mvc/online-mvc/workwithcontrols/FlexChart/QuickStart) section.

```razor
.SelectionMode(C1.Web.Mvc.Chart.SelectionMode.Series)
```