Hi to all,
actually we have a program developed with VB6 and Crystal Report 8, we're trying to import VB6 solution in VS 2008.
In parallel, we're creating a new solution with WPF FW4.0 C# in VS2015 with Telerik Reporting.
Can we convert rpt files from this solution (rpt in VS 2008) to VS 2015 with telerik report?
I cannot seem to get the toggle visibility action for detail or group sections to work in the newest version. I see in the release notes that IToggleVisibilityTarget and ToggleVisibilityTargetCollection are now obsolete and deprecated. I made sure that the report I'm working on is not using those. It is using the IActionTarget. It works fine for textboxes within the same report section, but it does nothing when you try to have a detail or group section toggled. Here is a code snippet:
Telerik.Reporting.ToggleVisibilityAction toggleVisibilityAction1 = new Telerik.Reporting.ToggleVisibilityAction();
toggleVisibilityAction1.DisplayExpandedMark = false;
toggleVisibilityAction1.Targets.AddRange(new Telerik.Reporting.IActionTarget[] {this.detail});
this.textBox5.Action = toggleVisibilityAction1;
This is also isn't working for groupHeaderSection/groupFooterSection, whereas it was working fine in the previous version.
I have the detail section visibility set to false. When I click the expand option it processes the report again and the toggle mark goes from + to -, but the detail section is not visible. Is there something wrong on my end or is there a known issue?
Thanks
I have a table with one column filled with images from a database.
I don't know how big the images are and also the aspect ratio is unknown, so I have a custom function to resize them to a max. size to fit the page and set the Sizing mode of the PictureBox to "AutoSize".
Now I have the problem that the PictureBox inside a table cell always seems to be in Docking mode ("Fill"), so if there are multiple images, all will get stretched to the width of the largest one.
How can I prevent this?
You can easily reproduce it without a database, just put a table on the report and add different sized images to it, see the attached examples.
Hi Team,
I am unable to filter the report content using a external combo box. Is there any way to add filters to report. I have seen the Report Book for example but unable to enable the filter toggle in the report. If there is any demo for that Please let me know.
I'm working with a Telerik report that I'm creating dynamically at runtime. The report has a Telerik.Reporting.Graph with a single line series. Works great - the problem is, I need to mark and label certain points along the curve.
I have the marker data, that is I know exactly where I need them - I just don't know how to do it. Any suggestions?
For
i
As
Integer
= 1
To
SummaryData.GetUpperBound(0)
Dim
myItem
As
New
ChartSeriesItem(SummaryData(i).sValue)
If
SummaryData(i).sValue1 = 0
And
Me
.ReportParameters(
"HideZeros"
).Value
Then
myItem.Label.Visible =
False
myItem.Empty =
True
End
If
myItem.ActiveRegion.Tooltip = SeriesName(2)
chartSeries1.AddItem(myItem)
Next
Hello Telerik Team!
I have a report in which I would like to use conditional formatting to change the background color of rows in a table based on a change in the value of one of the columns. Something similar to this example in Excel: http://superuser.com/questions/553899/alternate-grid-background-color-in-excel-when-a-value-of-a-single-column-changes
Is there a way to do this in the Edit Expression Dialog in Telerik Reporting Q3 2014?
Thanks so much!