Dear Support
is tooltip feature for chart regions still not supported till 2015 versions ?
Hi guys,
I have three textboxes, one in the header page, one in the details, and the last one in the footer page. The properties are by default. The values of the textboxes are parameters. The only one textbox that grow successfully is in the details. The other ones don't grow. Could you help me with this issue, please?
Thanks a lot in advance.
cheers
Dear Support ,
im trying to find working sample example for telerik report with html5 report viewer
Can you provide me ?
Regards
Hi
i would like to implement drilldownchart similar to this link in reportdesigner..
http://demos.telerik.com/aspnet-ajax/htmlchart/examples/drilldownchart/defaultcs.aspx
any examples or samples in reporting demo...did not find anything with that animation or drilldown.
Hey Guys,
I'm generating a report, but I'm fairly new to it still. I followed instructions to make sure everything was lined up perfectly so when it was downloaded to Excel it wasn't making rows different sizes and what not. Nevertheless, everything is looking great except I have a weird issue where once I get to about row 120 in Excel it starts skipping every other row. Any ideas? (screenshot attached - in this case it starts at row 125)
Hello
I have two columns of textboxes with a panel in between.
When I turn of visibility of the panel, the textboxes to the right shifts position towards left.
Is there a way of taking the panel out of influence? (bring to front, doesent work)
Regards
Mark
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="PrintPreview.aspx.vb" Inherits="MAdmin_PrintPreview" %><%@ Register assembly="Telerik.ReportViewer.WebForms, Version=6.1.12.611, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" namespace="Telerik.ReportViewer.WebForms" tagprefix="telerik" %><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> form#form1, div#content { height: 100%; } </style> </head> <body> <form id="form1" runat="server"> <div id="content"> <telerik:ReportViewer ID="ReportViewer1" runat="server" Height="100%" Width="100%" ShowDocumentMapButton="False" ShowHistoryButtons="False" ShowRefreshButton="False" ShowZoomSelect="True" ViewMode="PrintPreview" ReportBookID="ReportBookControl1"> </telerik:ReportViewer> <telerik:ReportBookControl ID="ReportBookControl1" runat="server"> </telerik:ReportBookControl> </div> </form> </body></html>Private Sub RptSet01() Dim fs As Integer Dim x As Integer Dim rBook As New ReportBook() fs = S.PrintSize SigFull = P.ANO SigIntRec = P.CFS x = 0 ' Create the Command and the Connection. Dim connectionString As String = WebConfigurationManager.ConnectionStrings("DBString").ConnectionString Dim con As MySqlConnection = New MySqlConnection() con.ConnectionString = connectionString Dim sql As String = SelString Dim cmd As MySqlCommand = New MySqlCommand(sql, con) ' Open the Connection and get the DataReader. con.Open() Dim reader As MySqlDataReader = cmd.ExecuteReader() Do While reader.Read Select Case fs Case 1 Full10Bt1ns(rBook, reader("RecordID")) Case 2 Full12Bt1ns(rBook, reader("RecordID")) Case 3 Full11Bt1ns(rBook, reader("RecordID")) Case Else Full10Bt1ns(rBook, reader("RecordID")) End Select rBook.Reports(x).PageNumberingStyle = PageNumberingStyle.ResetNumberingAndCount x += 1 Loop reader.Close() con.Close() ReportViewer1.Report = rBookEnd SubPrivate Sub Full10Bt1ns(ByVal rBook As ReportBook, ByVal TheUserID As Integer) Dim ConnectionString As String = WebConfigurationManager.ConnectionStrings("DBString").ConnectionString Dim theAdapter As MySqlDataAdapter Dim sql As String = SelString2 theAdapter = New MySqlDataAdapter(sql, ConnectionString) Dim Report1 As New Reporting.tFull10Bt1ns Report1.ReportParameters("1").Value = Dem1 Report1.ReportParameters("2").Value = Dem2 Report1.ReportParameters("3").Value = Dem3 If P.PrintDocument = 1 Then Report1.ReportParameters("Sig").Value = SigFull ' SET FOR SIGNATURE LINES Else Report1.ReportParameters("Sig").Value = SigIntRec ' SET FOR SIGNATURE LINES End If Report1.DataSource = theAdapter rBook.Reports.Add(Report1)End Sub