Telerik Forums
Reporting Forum
1 answer
285 views
Hello,

I have a datetime parameter in a report and I would like to use a DateTimePicker in my Silverlight application to choose the date and the time.

But when I choose an hour, it doesn't refresh the report. When I click on a day, the report is correctly refreshed and the hour is set to 00:00...

Is it possible to do it ?

Thanks
Hinata
Top achievements
Rank 1
 answered on 25 Mar 2014
1 answer
152 views
Hi,

We use Q3 2012 build 6.2.12.1123 for telerik reports and RTF export option does not render the chart borders correctly. All the other formats exports as expected without any formatting issue. Kindly suggests the way to fix the formatting issue or does any upgrades are required to fix this issue.

Please find the attached Image without borders when exporting as RTF.

Nasko
Telerik team
 answered on 24 Mar 2014
1 answer
177 views
Hi there -

My boss suggested to our users to have our little Voucher report print the customers address on the back of the page.  Therefore when you fold the voucher, the address will appear in the envelope window.

So I created the report, that has several components (report header/footer, page header/footer and details.)  The report prints very nicely at this time.
The question I have is, how in the world do I get the address information to print on the other side?  Now the printer will have to be defaulted to duplex print, which isn't a problem.  Do I need to create a "second page" to print layout address information?

If you're thinking of an address book, I'm already having problems with that; no reports show up in the reportBook list...but that could be another topic of discussion later.  Right now, I'm looking how to add address information on the reverse side of the report.

To add more difficulty, if the details of the report goes beyond one page, I want to make sure I am printing the address information on the last page only.

Any help or direction is appreciated - quickly.

Thanks
Bob
Nasko
Telerik team
 answered on 24 Mar 2014
8 answers
153 views
I have a LineSeries graph that displays multiple line series. I want to display a series name next to each LineSeries at the beginning of the series. If I understand correctly Telerik currently doesn't have a way to show annotations on the graph. Am I right? So is there any other way to display a text next to the LineSeries itself. I don't want to use legenf. To explain to you what we are looking for I have attached a Sample.pdf. In this screenshot you can see that at the start of each series there is a text like for eg: "I", "II", "III", "aVR", "aVL", "aVF", "V1","V2", "V3" etc. Is there any way to do this?  I read somewhere that I could use DataPointLabelConditionalFormatting for this purpose but I don't know how to use it. Anyone have any ideas?
Mandar
Top achievements
Rank 1
 answered on 24 Mar 2014
3 answers
125 views

Hi,
I created a pie chart and I have two problems..

1. Custom palette
    I want to create a custom palette in code-behind
    This is my code

private void chart1_ItemDataBound(object sender, EventArgs e)
        {
 
            Telerik.Reporting.Processing.Chart procChart = (Telerik.Reporting.Processing.Chart)sender;
            Telerik.Reporting.Chart defChart = (Telerik.Reporting.Chart)procChart.ItemDefinition;
 
            //Find the operations type
            Exception exception = null;
            List<OperationTypeEntity> operationTypes = m_OperationHelper.GetOperationTypes(m_UserId, ref exception);
 
            Palette palette = new Palette();
            palette.Name = "SSCCustomPalette";
 
            foreach (var serie in defChart.Series)
            {
                //Find the operation type color to use for my custom palette
                if (serie.Name.Equals("SeriePerLegenda"))
                {
                    palette.Items.Clear();
                    foreach (var item in serie.Items)
                    {
                        Color color = ColorTranslator.FromHtml(operationTypes.FirstOrDefault(p => p.Description.Equals(item.Name)).Color);
                        palette.Items.Add(new PaletteItem(color, color));
                    }
                }
            }
            chart1.CustomPalettes.Add(palette);
            chart1.SeriesPalette = "SSCCustomPalette";          
             
          }

This code works only after a manual refresh
I can't use need data source event becouse my datasource is already assigned so this events it's not fired.

2. How to print percetage on pie and Description on the legend?
I create a new series and I setted the following:
DataLabelsColum -> Description
DataYColumn -> MyValue
DefaultLabelValue ->#%
Apperance LabelDisplay -> ItemLabels

When I run the report, the legend and the pie labels are the same. I see only the description.

Thanks

 

Stef
Telerik team
 answered on 24 Mar 2014
1 answer
365 views
In my UI, users can view reports
I want an option to schedule a report based on their criteria

I.e. send me a report at 10pm of data from the day
or send me the weekly report every sunday evening at 8pm

How would you suggest implementing this
I was thinking of a scheduled task to hit a console app that is running every x mins to scan the "criteria" table and send any reports that falls in this criteria
But not sure this is the best way

Can you suggest the best practice for this please
thanks
John
Top achievements
Rank 1
 answered on 24 Mar 2014
1 answer
50 views
hi,

"Unable to determine the identity of domain"; error message in report viewer??

what is this?

bye 

Dalibor
KS
Top achievements
Rank 1
 answered on 24 Mar 2014
1 answer
455 views
I pushed the reporting and webforms dll up to our web server but the reportviewer does not render correctly like it is missing image resources so I pushed the resx up to the server as well. Still no luck. It is as if a css is missing. see the attached screenshot.
Stef
Telerik team
 answered on 24 Mar 2014
1 answer
62 views
Hello

it's possible to update your media player Silverlight to Html 5 ?

http://demos.telerik.com/reporting/list-bound-report/video.aspx

Cause Silverlight video don't get a button play , or pause, or timer bar.

And Silverlight is older, it'll be great if you use your RadMediaplayer.


thanks in advance
Stef
Telerik team
 answered on 24 Mar 2014
3 answers
138 views
Hi, 
I'm having serious issues with the telerik reporting in VS. I've created an MS Entity Framework model as a a separate class library as it states in the documentation. 
i'm using the EntityDataSource it finds my library and gets the dbcontext no problem. When i add report parameters it shows me all the fields for the context i selected. 
I assign the fields to the report parameter no problem. the problem happens when i try to preview the report i get the following error:

"an error occurred while invoking the data retrieval method. Try restarting Visual Studio.
A connection string has been provided but constructor with connection string argument could not be found. Either remove the connection string from the data source or provide a constructor which will use that connection string. For design time purposes a constructor that has a connection string and passes it to the base constructor is required."

I'm not sure what this means nor how to fix it. I've created 5 projects and gotten the same behavior. I've uploaded my app.config for review.
any help would be great

Thanks, 
Rick

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>  
    <system.diagnostics>
        <sources>
            <!-- This section defines the logging configuration for My.Application.Log -->
            <source name="DefaultSource" switchName="DefaultSwitch">
                <listeners>
                    <add name="FileLog"/>
                    <!-- Uncomment the below section to write to the Application Event Log -->
                    <!--<add name="EventLog"/>-->
                </listeners>
            </source>
        </sources>
        <switches>
            <add name="DefaultSwitch" value="Information" />
        </switches>
        <sharedListeners>
            <add name="FileLog"
                 type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                 initializeData="FileLogWriter"/>
            <!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log -->
            <!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
        </sharedListeners>
    </system.diagnostics>
  <connectionStrings>
    <add name="AdventureWorks2008R2Entities" connectionString="metadata=res://*/Model1.csdl|res://*/Model1.ssdl|res://*/Model1.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=tanortega\sqlexpress2008;initial catalog=AdventureWorks2008R2;persist security info=True;user id=sa;password=dont4get;MultipleActiveResultSets=True;App=EntityFramework&quot;"
      providerName="System.Data.EntityClient" />
    <add name="TelerikReport.My.MySettings.AdventureWorks2008R2"
      connectionString="metadata=res://*/Model1.csdl|res://*/Model1.ssdl|res://*/Model1.msl;provider=System.Data.SqlClient;provider connection string=&amp;quot;data source=tanortega\sqlexpress2008;initial catalog=AdventureWorks2008R2;persist security info=True;user id=sa;password=dont4get;MultipleActiveResultSets=True;App=EntityFramework&amp;quot;&quot; providerName=&quot;System.Data.EntityClient"
      providerName="System.Data.EntityClient" />
  </connectionStrings>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  </entityFramework>  
</configuration>

christianamado
Top achievements
Rank 1
 answered on 19 Mar 2014
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?