New to Telerik UI for BlazorStart a free 30-day trial

Breaking Changes in 15.0.0

Updated on Aug 11, 2026

Chart

The obsolete template syntax with literals and inline expressions is not supported. Instead, set the Template parameter to the name of a JavaScript function that returns the required content. This change is also related to CSP compliance.

Using Chart templates up to version 14.1.0 and after version 15.0.0

UI for Blazor 14.1.0UI for Blazor 15.0.0
RAZOR
<ChartValueAxisLabels
    Template="#= value #" />
 
 
 
 
 
 
RAZOR
<ChartValueAxisLabels
    Template="chartLabelTemplate" />

<script>
function chartLabelTemplate(context) {
    return context.value;
}
</script>

Scheduler

The SchedulerPopupEditFormSettings parameters Columns, ColumnSpacing, and Orientation are removed.

See Also

In this article
ChartSchedulerSee Also
Not finding the help you need?
Contact Support