Learn about the types of charts available and how to implement them and integrate with other components when you use Telerik UI for ASP.NET Core.
Charts are a great tool for data representation as they help us to interpret and understand complex data quickly. By using charts, we can easily comprehend, compare and analyze multiple data sets as well as interact with the data. They can improve the overall user experience in our web application by visualizing the data in a more engaging and accessible way. The charts simply bring the data to life!
In this blog post, I am going to show you how to choose the appropriate chart type, and incorporate and use the Telerik UI for ASP.NET Core Charts into your ASP.NET Core application.
To choose the right type of chart, you need to determine:
Generally, the Telerik UI for ASP.NET Core Charts are divided into the following categories:
Categorical Charts – They are suitable for displaying data that represent qualities or characteristics (data that can be divided into categories or groups, like the type of car, education level or brand of computers). Such charts are Line Charts, horizontal and vertical Bar Charts, Area and Box Plot Charts.
Circular Charts – This category of charts uses a circle or pie to represent nominal data (categorical data where each data point belongs to one category only). They are useful for visualizing proportions or percentages (for example, to render data as part of the whole). Circular charts are Pie charts, Donut charts, Polar charts and Radar charts.
Freeform Charts – These charts use different forms to display structured portions of data. They are commonly used to represent numerical data (for example, electricity production per year). Check out the Funnel Chart for an example.
Scatter Charts – These charts are suitable for visualizing data in two dimensions and comparing different numerical data sets or different types of data. An example of a scatter chart is the Bubble Charts.
When you identify the relevant category based on the data type that has to be presented, the next step is to choose the chart type from the entire category. I would recommend exploring the Telerik UI for ASP.NET Core Chart online demos to review the different chart types and what type of data they display.
Before configuring the chart elements and options, you need to determine how the chart will bind to the data—locally or remotely. Telerik UI for ASP.NET Core Charts provide the following data binding approaches:
The next step is to define the basic chart configuration, so you can load the data and see how it is output. Which are the required chart elements?
Now, when the chart’s series and axes are defined, it is time to review how the chart represents the data. You can test the code snippet above in the Telerik REPL playground. Open this example and run it to see the result.
It is a basic Line chart, but you can enhance it further based on your needs by adding the following settings:
To customize the overall chart appearance in your application, add the ChartArea() and PlotArea() options, which allow you to set width, height, border, color, margin, and many more to each area:
As you can imagine, the Telerik UI for ASP.NET Core Charts have a large collection of options for each chart type. For example, the Donut and Pie charts have a setting to define the start angle of the first Donut/Pie segment, the chart series have options to set target values for the Bullet charts, and so on. However, configuring the charts is quick and easy with snippets. You can access the snippets by installing the Telerik UI for ASP.NET Core Visual Studio productivity extension. Once installed, to declare an HtmlHelper or TagHelper chart, type “tc-chart” and choose the desired configuration.
The same snippets are available for Visual Studio Code, as well.
At this stage, we created a completely functional Line chart bound to inline data. Run this REPL sample and examine it.
In the real world, we often need to customize the chart dynamically based on certain conditions. Luckily, the Telerik UI for ASP.NET Core Charts are fully flexible. You have the freedom to adjust any options after initialization.
I will demonstrate several use case scenarios:
How to filter the data in the chart? The user selects a range of values (for example, years), and the chart’s categories and data series are updated automatically based on the user selection.
<script>
var initialChartSeries = [
[21560, 10548, 12548, 47526, 10254], //Product A
[10258, 36985, 45287, 23568, 35982] //Product B
];
var initialChartCategories = ["2018", "2019", "2020", "2021", "2022"];
function onYearsRangeChange(e) {
let startValue = e.value[0];
let endValue = e.value[1];
let minValue = e.sender.options.min;
let maxValue = e.sender.options.max;
let chart = $("#chart").getKendoChart(); //Get a reference to the chart
let updatedChartSeries = chart.options.series; //Access the current chart’s series
let updatedCategories = $.grep(initialChartCategories, function(value) { //Filter the current chart’s categories based on the selected years
return (value >= startValue && value <= endValue);
});
for(var i = 0; i < updatedChartSeries.length; i++) { //Loop through the chart series and update them based on the selected years
let newRangeSeries = $.grep(initialChartSeries[i], function(value,index) {
return index >= (startValue - minValue) && index < initialChartSeries[i].length - (maxValue - endValue);
});
updatedChartSeries[i].data = newRangeSeries;
}
chart.options.categoryAxis.categories = updatedCategories; //Set the new categories
chart.options.series = updatedChartSeries; //Set the new data series
chart.redraw(); //Redraw the chart with the updated dataset
}
</script>
When the chart is configured for remote data binding, you can filter the dataset server-side:
As a result, the chart loads the new data received from the server.
How can you change the chart settings at runtime? For example, you can dynamically show/hide the series labels based on the user preferences:
Here is a REPL sample where you can test these examples. In addition, it demonstrates how you can easily change the colors of the data series through ColorPicker editors.
How can you load a totally different dataset in an already rendered chart with a single button click? This scenario can be easily handled with the setDataSource() method:
On top of that, the Telerik UI for ASP.NET Core Chart is fully customizable. You can implement custom visualizations for the chart legend items, axis titles, labels, markers, and series by utilizing the Kendo Drawing library.
In most cases, you will need to integrate the chart inside other UI components. Depending on the component you would like to embed the chart in, you can declare the chart directly in the component’s configuration. Take the TabStrip, for example:
This REPL sample showcases this example of integration.
Another common integration scenario is using the chart inside layout components—Tilelyout, StackLayout, Splitter, etc.
The example below shows how to integrate a Donut chart in a StackLayout:
Run this REPL sample to review the output.
In more complex scenarios, where you need to nest multiple components, a preferable approach is to use a template. Most of the Telerik UI components support templating options that accept inline or external Kendo UI Templates or partial views.
By using templates, you can reuse, for example, a partial view within multiple components and application pages.
And you here is the partial view “_ChartView.cshtml” with the nested chart component. Don’t forget to set the .ToClientTemplate() method when defining the chart in a template.
Want to start taking advantage of the ASP.NET Core Charts, or any of the other 110+ ready-made components, like the Data Grid or the Scheduler? Start a free trial today and experience for yourself that building rich interactive applications in half the time is not a fairytale.
Once you try the Chart components, don’t forget to share your experience and opinion in the comments sections below or by visiting the Telerik UI for ASP.NET Core’s Feedback Portal. Your input makes a difference!
Mihaela Lukanova is a Technical Support Engineer on the Progress Telerik UI for ASP.NET Core team. She is an excellent problem solver who excels at finding efficient and effective solutions to complex tasks. She loves her job since she learns new things every day. Mihaela also has a strong passion for sports—trail running, lifting weights and rhythmic gymnastics.