Hi,
I can`t achieve display the data from an Complex Object with
a property List of subObjects, in the way I would like to Display. This Way is
Grouping the Field ‘Question’ by ‘QuestionGroup’
Complex Object:
public class QuestionnaireReportData
{
public string Name { get; set; }
public string Description { get; set; }
public string DeviceID { get; set; }
public string SerialNumber { get; set; }
public string Location { get; set; }
public string City { get; set; }
public DateTime Date { get; set; }
public string Client { get; set; }
public string Modelo { get; set; }
public string Manufacturer { get; set; }
public IEnumerable<QuestionResponseReportData> QuestionResponses
{ get; set; }
}
public class QuestionResponseReportData
{
public string Question { get; set; }
public string Answer { get; set; }
public AnswerDataType AnswerDataType
{ get; set; }
public string QuestionGroup { get; set; }
}
I achieve to binding the sourceData of Table, List,etc to
the List Property IEnumerable<QuestionResponseReportData>)
and show Correct Data, But I don’t achieve to Grouping correctly by the Field QuestionGroup
as I want.
This is what I would like to display (Good display attached image)
This is what I display actually (bad display attached image)
What I’m doing wrong? Thanks in advance!
Best Regards,
Hello,
in our reports we always use alternating row colors in tables, this works great.
Now we created a report where we have Row Groups in a table. If we use the ConditionalFormatting like everytime else, we get a table with these colors:
ID | Text | Color
1 | test 1.1 | gray
| test 1.2 | white
| test 1.3 | gray
2 | test 2.1 | white
| test 2.2 | gray
| test 2.3 | white
But what we need is this:
ID | Text | (Color)
1 | test 1.1 | gray
| test 1.2 | gray
| test 1.3 | gray
2 | test 2.1 | white
| test 2.2 | white
| test 2.3 | white
How can we realise this?
Thank you!
Regards
Diego
Hello,
I am using Telerik Reporting with WPF Windows Application to show a Pie Chart like the one in the image I have attached. I am not able to get the DataPointLabelConnector, I mean the line that connects the label with its part of the pie chart.
These are the properties I set for the Serie:
Do you know what is happening?
Many thanks.
Access to the path 'C:\Documents and Settings\xxx\ASPNET\LOCALS~1\Temp\9a48e4f88d36442381c16e503333fcdc' is denied. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.Directory.InternalCreateDirectory(String fullPath, String path, DirectorySecurity dirSecurity) at System.IO.Directory.CreateDirectory(String path, DirectorySecurity directorySecurity) at Telerik.Reporting.Cache.File.FileCache.EnsureDirectoryCreated() at Telerik.Reporting.Cache.File.FileCache.SetValue(String key, Byte[] value) at Telerik.Reporting.Cache.SmartCache.SetValue(String key, Byte[] value) at Telerik.ReportViewer.WebForms.StreamManager.StreamReady(RenderStream renderStream) at Telerik.ReportViewer.WebForms.RenderStream.Finish() at Telerik.Reporting.Html5Rendering.Writers.Page.WritePageEndDocument() at Telerik.Reporting.Html5Rendering.Writers.Page.WriteEndPage() at Telerik.Reporting.Html5Rendering.Writers.Report.WriteEndPage() at Telerik.Reporting.BaseRendering.PageHandler.Telerik.Reporting.Paging.IPageHandler.EndPage() at Telerik.Reporting.Paging.PageCompositionBase.SendPhysicalPages() at Telerik.Reporting.Paging.PageCompositionBase.OutputPage() at Telerik.Reporting.Paging.PageCompositionBase.CreatePages() at Telerik.Reporting.Paging.PagerBase.Telerik.Reporting.Paging.IPager.CreatePages(IPageHandler handler, Report report) at Telerik.Reporting.BaseRendering.RenderingExtensionBase.Render(Report report, Hashtable renderingContext, Hashtable deviceInfo, CreateStream createStreamCallback, EvaluateHeaderFooterExpressions evalHeaderFooterCallback) at Telerik.Reporting.Processing.ReportProcessor.RenderCore(ExtensionInfo extensionInfo, IList`1 reports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback) at Telerik.Reporting.Processing.ReportProcessor.RenderCore(String format, IList`1 reports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback) at Telerik.ReportViewer.WebForms.ReportPageOperation.RenderReport(String format, IList`1 processingReports, Hashtable deviceInfo, IRenderingContext renderingContext) at Telerik.ReportViewer.WebForms.ReportRenderOperation.PerformOperationOverride() at Telerik.ReportViewer.WebForms.ReportPageOperation.PerformOperationOverride() at Telerik.ReportViewer.WebForms.HandlerOperation.PerformOperation(HttpContext context, ICacheManager cacheManager) at Telerik.ReportViewer.WebForms.BasicHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)Hello.
We have a winforms project that is attempting to generate DOCX files using Teleirik Reporting. We are getting a "DOCX Rendering Format is not available" error. We're on the latest version of Telerik Reporting (11.2.17.1025) and have both Telerik.Reporting.OpenXmlRendering.2.7.2 and DocumentFormat.OpenXml (2.7.2.0) included in the project and set to Copy Local. Not sure where to go from here.

Hi everyone,
I'm having trouble with my report about sum group (see my idea in Attach files). I read many topic but i can't done it. How can I sum in one page and move that to next page (Exp: Group is overall show in 3 page.) ? It very difficult with me and I hope someone can help me.
Thank you!
Hi,
I'm using the trial to see if it fits our
purposes but I'm having trouble getting it to do what we need for this
report. I've attached a screenshot of the layout.
I've attached a basic outline image of the report body.
List 1 contains an array of strings that can potentially span multiple pages
but must only partially cover the page as it has a block of text below
it.
List 2 also contains an array of strings that can potentially span multiple pages and runs the full length of the page.
The issue is that as List 1 expands it pushes the detail box below it on to the next page and for
our needs it needs to stay exactly in this position on the page. What we
want is that a new page should be created once the text / data in List 1 overflows its boundaries leaving the details box below in place.
The
layout of the page is required as it is printing onto a set piece of
stationary and must match the layout specifications. So we can't use a
footer for the details box as List 2 needs to be the full length on the page.
I've tried everything I can think of like wrapping the left section
entirely in a list and formatting the data source per page, but List 1 still pushes the fields below it on to the next page.
Is this possible? Through the designer, handling events, something else?
Thanks,
Jon.
