In This Topic
This quick start is intended to guide you through a step-by-step process of creating a simple FlexRadar application and running the same in Visual Studio.
To quickly get started with FlexRadar and observe how it appears on running the application, follow these steps:
- Add FlexRadar to the Application
- Bind FlexRadar to the Data Source
- Run the Application
The following image displays how a basic FlexRadar appears after completing the steps mentioned above.

Step 1: Add FlexRadar to the Application
- Create a WPF Application (.NET Framework/.NET Core) for .NET 4.5.2 version and
.NET 5 versions in Visual Studio.
- Drag and drop the C1FlexRadar control from the Toolbox to the MainWindow.
The .dll or Nuget Packages files which are automatically added to the application, are as follows:
- C1.WPF.4.5.2 or C1.WPF.Core for .NET5 version
- C1.WPF.DX.4.5.2 or C1.WPF.DX for .NET5 version
- C1.WPF.FlexChart.4.5.2 or C1.WPF.Chart for .NET 5 version.
The XAML markup resembles the following code in the <Grid></Grid> tags.
Step 2: Bind FlexRadar to the Data Source
In this step, first create a class DataCreator that generates sales and expenses data for different countries. Next, bind FlexRadar to the created data source using the property provided by the class. Then, specify fields containing X values and Y values for FlexRadar using the BindingX and the Binding property, respectively.
- Add a class, DataCreator and add the following code.
- Edit the XAML markup to provide data to FlexRadar.
- Switch to Code view and add the following code.
Step 3: Run the Application
Press F5 to run the application and observe the output.