I created a report which shows a list of customer. I currently have an action to Navigate to Report: CustomerDetailsByAccountID report and this is ok but takes me to a new page and when I click the back button the page is refreshed so I lose my position and need to scroll down to find my last position in the table.
Ideally, I would like to do either of the following
[1] When I click on a table row, I would like to expand the table row to the next row below to show more details directly below the row I clicked on. Bearing in mind this table could be quite long and showing the relevant info int he same location without scrolling would be the ideal scenario.
Is this possible using Report Designer?
[2] Alternatively, I could click on the Table row and pass the AccountID to a subreport on the same page (at the top - see attached image). But for some reason, I cannot find how I would pass the AccountID from the table row clicked on to the subreport at the top of this report.
At the moment, navigating to a report seems to be the only option but is not convenient.
Thanks
Hi All,
I have the following structure for a report data source:
public
class
ReportData {
public
List<DataPoint> Readings {
get
;
set
;}
}
public
class
DataPoint {
public
DateTimeOffset Day {
get
;
set
;}
public
double
Value {
get
;
set
;}
}
I'm not being able to create a column graph that plots this. I'm not sure if groupings are necessary or not, what to use in the series, etc.
I'm using VS2017 designer to design the report. The data source is an object data source of type ReportData
Is it possible to set up a report with a table that has excel like filtering similar to the grid control example shown here: https://demos.telerik.com/aspnet-ajax/grid/examples/functionality/filtering/excel-like-filtering/defaultcs.aspx ?
Thank you,
Jennifer
Hello,
I've created a horizontal bar chart, and the bars go left-to-right from 0-100%.
I would like to display a fixed/static vertical line at 90%, so users can quickly see which lines are over/under 90%.
The solution seems to be a MarkedZone as a single line (not rectangle). Can you provide assistance on how to set these up in the designer? I've navigated the properties of the chart as well as my series and cannot find references to MarkedZones.
There is a thread from 2013 that said these aren't possible in the standalone tool, but that user wanted to bind the line to data. My line is fixed at 90% of the 0-100% range.
If the designer cannot do this at all, but it can be done with an additional series etc, let me know that too.
*many* thanks for any advice you can offer.
-j
I am attempting to build a range chart but show numerous values on the same row.
The end result would be a time scale showing the duration of time for a task.
Example, from 9:00am to 9:10am, then another bar from 9:45 to 1:23pm and so forth.
Is that possible?
Everything I have seen so far shows the intervals on my X axis, but I end up with a single massive bar spanning from left to right.
Thanks
Brian
I need to have a graph showing some Letters (B, G, D,....) as the Y axis, and numbers like (00,0,1,2,3,..) as the X axis.
The problem is that, 00 is not a digit, and the only way to show it is to Have the X Axis, as a Category Scale.
Is there any way to Have this done by Telerik Reporting Graph tool?
Thanks!
Mahdieh,
private void reportHeader_ItemDataBinding(object sender, EventArgs e)
{
this.LogoImage.Value = "=Fields.Logo";
}
Image1.Source = new BitmapImage(new Uri(@"/Resources/" + c.Logo,UriKind.Relative));
Hi.
The attached image is from winforms report project.
The line series represents a person's weight over time. The stacked area chart in the background represents BMI levels (below, normal, above, obese)
How do I make the stacked area opaque so that the grid lines can be seen. At the moment it's obscuring them.
Many thanks in advance.