Telerik Forums
Reporting Forum
2 answers
193 views
Hi,
I'm trying to change the font color of the labels in the bar chart. Please see image here:

http://twitpic.com/6hduhh/full


Thanks in advance :)
awni
awni
Top achievements
Rank 1
 answered on 14 Sep 2011
3 answers
364 views
I am looking for a way to create either a report book or a report with several sub reports each of which have their own parameters. All my current reports are standalone and I don't use a report viewer. I am using the new sqlDataSource and setting the parameters in Public Properties like this:
 Public Property setSiteID() As Integer 
        Get 
            Return CInt(Me.SqlDataSource1.Parameters.Item("@SiteID").Value)  
        End Get 
        Set(ByVal siteID As Integer)  
            Me.SqlDataSource1.Parameters.Add("@SiteID", DbType.Int32, siteID)  
        End Set 
    End Property 
I pass the parameter from codebehind of a button like this:
Dim tF As New TelerikFunctions  
Dim strSite As String = ddlSite.SelectedValue.ToString  
Dim rv = New D007RwpSchedule()  
rv.setSiteID = strSite  
tF.ExportToPDF(rv) 'The class tf exports the report to pdf 
So I have several reports that my users have to print every week but they want to be able to just click one button and have all the reports print at once. My problem is that I doon't know how to pass parameters to the individual reports. Does anyone have a solution to this? Thanks for any help.
AkAlan
Top achievements
Rank 2
 answered on 14 Sep 2011
0 answers
70 views
Is it possible to configure telerik reports to generate public chart items? 

If I create a textbox on the designer I would like to have this variable be generated as public, Is this possible ?
Stefen
Top achievements
Rank 1
 asked on 14 Sep 2011
6 answers
354 views
I haven't been able to get it to work, not sure why.  The SL Report Viewer displays an exception when I change the security mode from default to Windows, I assume I'm doing something wrong with the bindings.  IIS is set for Windows Authentication, Anonymous Login disabled.  Any ideas?

Portion of web.config:

<authentication mode="Windows" />
<
identity impersonate="true" />

...

    <bindings> 
      <basicHttpBinding> 
        <binding name="basicHttpBinding_Windows">  
          <security mode="TransportCredentialOnly">  
            <transport clientCredentialType="Windows" /> 
          </security> 
        </binding> 
      </basicHttpBinding> 
      <webHttpBinding> 
        <binding name="webHttpBinding_Windows">  
          <security mode="TransportCredentialOnly">  
            <transport clientCredentialType="Windows" /> 
          </security> 
        </binding> 
      </webHttpBinding> 
    </bindings> 
 
...  
 
 <service name="Telerik.Reporting.Service.ReportService" behaviorConfiguration="ReportServiceBehavior">  
        <endpoint  
          address="" 
          binding="basicHttpBinding" 
          bindingConfiguration="basicHttpBinding_Windows" 
          contract="Telerik.Reporting.Service.IReportService">  
          <identity> 
            <dns value="localhost" /> 
          </identity> 
        </endpoint> 
        <endpoint  
          address="resources" 
          binding="webHttpBinding" 
          bindingConfiguration="webHttpBinding_Windows" 
          behaviorConfiguration="WebBehavior" 
          contract="Telerik.Reporting.Service.IResourceService" /> 
        <endpoint  
           address="mex" 
           binding="basicHttpBinding" 
           bindingConfiguration="basicHttpBinding_Windows" 
           contract="IMetadataExchange" /> 
      </service>

Thanks,
-Brian
Adam
Top achievements
Rank 1
 answered on 13 Sep 2011
5 answers
1.3K+ views
It seems simple enough, but they either overlap, or they are too far apart.  I have a report with about 50 textboxes, and want to align them vertically and horizontally and I don't think I can use a table, as it's just one record.  You cant move a textbox pixel by pixel, using the keyboard or the mouse.  It moves more than one pixel at a time, so you can never align everything perfectly.  How would I accomplish this?

Thanks.
Steve
Telerik team
 answered on 13 Sep 2011
4 answers
237 views
When i set some values in code - txt25000.Value = amount25.ToString(); I see these values when I am looking at my report in the report viewer (See attachment) - But when I export/save to a pdf on my computer and open the file up. Any value that is set in code is never displayed.(See second attachment)

any help is appreciated.
Steve
Telerik team
 answered on 13 Sep 2011
1 answer
183 views
Is there a way to float multiple text box's inside a panel similar to divs with a fixed width and a css property of float:left;.... It needs to load dynamic content that's why i need it to float to stay with in the design other wise another design concept must be created... Let me know if you know how to do this..

Thanks!
Peter
Telerik team
 answered on 13 Sep 2011
2 answers
186 views
Hi,

We are using HtmlTextBox in a mail merge type application.  When a field such as {ClientName} contains an '&' character, we are encoding it and in the ReportViewer this displays as "Robert & Janis".  When it prints it prints the encoded string such as "Robert &amp; Janis". 

Any ideas on how to fix this?
David A.
Top achievements
Rank 1
 answered on 13 Sep 2011
2 answers
181 views
if textbox have value=0 how do i set font color to white
chatchai
Top achievements
Rank 1
 answered on 13 Sep 2011
1 answer
272 views
From the property window in the designer, I am attempting to set the Binding expression for PageBreak based on the existing of a databound field.

I would expect that it is something like:
PageBreak = !string.IsNullOrEmptyOrWhitespace(Field.MyTextField) ? PageBreak.Before : PageBreak.None;

Can this be done without writing actual code behind on the report?
Peter
Telerik team
 answered on 12 Sep 2011
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?