Hi,
I have to create a special donut chart like below image by using Telerik designer, is it possible? And another question, how to design chart legend look like this picture, separate category into 2 sections?
I really appreciate any answers, thanks for helping us.
Good Afternoon Telerik Support,
I am trying to format an Averaged date & time between two values as HH:MM:SS (see screenshot). However, when I used the format Date & Time value for HH:MM:SS it gives me the following error (see screenshot) How can I fix this as I do not want the milliseconds at the end and it seems to keep adding it.
(Average Combined Time)
(Error After formatting it to HH:MM:SS ({0:hh:mm:ss})
Thank you!
Good Afternoon Telerik,
I run a report for the previous month at the beginning of every month. In example, Today's Month is April- I run the report for the entire Month of March. How can I create a Text field within Telerik that will show the previous month in example March and updates every month so if I run it May 1st it'll show April etc..?
I've tried the following functions but kept getting an error. (see screenshot)
= Today(AddMonths() -1)
I've got two reports, one of which is a copy of the other. The original report prints successfully. The copy will print but only if the "Go" button is pressed on the printer. How can I set the copy to not require the "Go" button? Is it a setting in Properties? I see no differences between the two reports.
I'm using version 16.1.22.622 of report dll's. Visual Studio 2019.
The printer is an HP LaserJet P2015.
By the way, the copy will print without intervention on a HP LaserJet P2055dn.
Thanks for your help or advice.
Hi,
I understand there are two view modes: Interactive and Print Preview.
My question: How do I load all pages on print preview mode?
What I am getting at the moment is the ReportViewer (on Print Preview Mode) loads 2 first pages, and waits for the user to scroll down the ReportViewer before loading the next page (page 3, 4 and so on).
Thanks,
Angga

Hi,
I'm migrating my solution from Dot Net Framework to Dot Net Core 6. On Local Dev Machine which is running on Windows, the reports are getting generated without any issues, but when the same is run in a Docker Container it fails with the following exceptions.
I have already tried installing the required libraries which are mentioned in this post but the same persists
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
WORKDIR /app
EXPOSE 46555
RUN apt-get update \
&& apt-get install -y --allow-unauthenticated \
libc6-dev \
libgdiplus \
libx11-dev \
&& rm -rf /var/lib/apt/lists/*
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS setup
WORKDIR /src
RUN dotnet restore "SampleProject/SampleReports.csproj"
COPY . .
FROM setup AS build
WORKDIR "/src/"
RUN dotnet build "SampleReports.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "SampleReports.csproj" -c Release -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "SampleReports.dll"]Other information that I would like to add are that my solution uses direct references to Telerik dlls.
Hi Team,
I am trying to generate a report with below object datasource PopulationByAgeRange which is a list, and I am trying to bind DemographicData property to a table which is also a list.
public class PopulationByAgeRange
{
public IEnumerable<DemographicData> DemographicData { get; set; }
public string LayerType { get; set; }
public decimal LayerValue { get; set; }
public uint CurrentYear { get; set; }
public uint ForecastYear { get; set; }
public string Logo { get; set; }
}
If PopulationByAgeRange was a single object I could bind the table to Fields.DemographicData but since PopulationByAgeRange is a list the table is not rendered with Fields.DemographicData. Could you please let me know how to bind the table when object datasource is a list.
I've been going through the documentation repeatedly for a few days and I believe that what I'm looking to use is the ReportBook but not sure where to start.
For some insight, we have roughly around 8 reports in total. These reports vary but for the most part, they are individual reports intended for one role to view. However, the problem here is that we need to take 3 of these reports and iterate over selections to create a single report for viewing.
Current Scenario:
A district manager can view reports on locations. Each location has 3 reports that can be viewed independently. Along with this, the district manager can also view an "Overview" report that sums up the data of their locations in a single report. The Overview is very basic and no detail is provided. All reports contain parameters of the location id and a start and end date for gathering data.
Problem Scenario:
The problem now is that we need for the district manager to be able to capture a full detailed report of all selected locations in a single report. In this scenario, the district manager may select from 1 to N amount of locations and a report is generated based on the selections. This generated report will show all 3 reports for each location selected.
I'm not sure where to start with such an implementation and the documentation on ReportBook isn't very detailed.
Tech stack is .NET 6 with Blazor frontend and .NET 6 backend in separate applications.
I have a web application that consists of an API hsoted in Azure functions and a front end as Blazor wasm hosted in Azure blob storage as statis site.
I need to add a report for users so that each user see their own data based on data passed to the report.
1) Can reporting be used with Azure functions?
2) If yes, any sample code to guide me?