reporting

Cannot see all the labels on the x asis in an ssrs column chart

吃可爱长大的小学妹 提交于 2019-12-11 14:29:42
问题 I have a column graph as shown below. It shows only a few x axis labels. I want it to show all the x axis labels. Is there a way this can be done ? I tried changing the size of the chart and this doesnt work 回答1: Duplicate question: SSRS chart does not show all labels on Horizontal access Best answer was: To fix this, under the "Chart Axis" properties set the Interval value to "=1". Then all the labels will be shown 来源: https://stackoverflow.com/questions/21056447/cannot-see-all-the-labels-on

SSRS wont publish report but it returns successful as if it did

时光总嘲笑我的痴心妄想 提交于 2019-12-11 10:45:29
问题 public static void ListFolders() { HomeFolderListing = new List<string>(); ReportingServiceSoapClient rs = new ReportingServiceSoapClient(); rs.ClientCredentials.Windows.AllowedImpersonationLevel = TokenImpersonationLevel.Impersonation; CatalogItem[] HomeFolders = null; string reportPath = "/"; rs.ListChildren(reportPath, true, out HomeFolders); foreach (var homeF in HomeFolders) { if (homeF.Name.ToString().ToLower().Contains("base")) { if (homeF.Path.ToString().ToLower().Contains("/data

Error: “The call is ambiguous between the following methods or properties”?

最后都变了- 提交于 2019-12-11 10:06:50
问题 When I run my project,the following error message is displayed: The call is ambiguous between the following methods or properties: 'Microsoft.Reporting.WinForms.ReportDataSource.ReportDataSource(string, System.Collections.IEnumerable)' and 'Microsoft.Reporting.WinForms.ReportDataSource.ReportDataSource(string, System.Data.DataTable). Why? firstReportDBDataContext dc = new firstReportDBDataContext(); private void Form1_Load(object sender, EventArgs e) { dsFirstReport.dtLoaiHangDataTable dt =

In WPF, can you bind a ListView (NOT DataGrid) to a Matrix (Cross-Tab) DataSet?

拈花ヽ惹草 提交于 2019-12-11 09:37:41
问题 Is it possible in WPF to bind a ListView (NOT a DataGrid) to a Matrix (Cross-Tab) DataSet in which the columns are unknown beforehand? Using the Northwind database as an example: the simple query below will return a wellknown dataset which can easily be bound to a listview: SELECT Year(o.OrderDate) AS [Year], Month(o.OrderDate) AS [Month], COUNT(o.OrderID) AS [NumOrders] FROM Orders o GROUP BY Year(o.OrderDate), Month(o.OrderDate) ORDER BY 1, 2 To generate a more meaningful report, we might

Ruport - undefined method `each' for “”:String

≡放荡痞女 提交于 2019-12-11 08:56:59
问题 I am following the first example in this tutorial: http://ruportbook.com/printable_documents.html, but I'm getting undefined method `each' for "":String all the time, I created a new file with this code: class MultiTableController < Ruport::Controller stage :multi_table_report class PDF < Ruport::Formatter::PDF renders :pdf, :for => MultiTableController build :multi_table_report do data.each { |table| pad(10) { draw_table(table) } } render_pdf end end end Then, in an existing controller named

SSRS Show Textbox on last page separately

天大地大妈咪最大 提交于 2019-12-11 08:22:06
问题 I need to display a Textbox in the body of the report, but it has to be on a separate last page. It is actually a Word file that needs to be shown in each report, but seeing as how the only way to accomplish this is to put the file to the Report Server and then access it with a link, I decided to copy the contents of the file to a Textbox. This and this question on SE are similar, however it is not exactly what I need. 回答1: You can achieve this by adding items with appropriate page breaks to

.rdlc reporting bound to Object Data Source in Three layer Application

我们两清 提交于 2019-12-11 07:57:38
问题 i have the following situation, i have a Reporting layer(stand alone) in asp.net application(NOT website, this means NO App_Code folder exists), and i want just to create Object Data Source to take an Object in a separate layer(lets say from Data Access Layer), and then to use that Object Data Source to create a report, i have spent my whole day working around that, tons of work around's and articles on the web, but does not mention what i really want to do, any answer is appriciated... just

Open a new window and pass parameters to it vb.net asp

三世轮回 提交于 2019-12-11 07:28:59
问题 Hi I have a web app which has a listbox of all the available reports for a particular user. I want to open a new page 'ReportViewerPane' when a row is clicked and pass the report name and some parameters through to the reportviewer.aspx I then need to set the ReportViewer controls .reportpath to the correct (passed through) value and set the parameters values (also passed through). I the moment I have this in the parent page. 'PassParmString' is a textbox on the main form: function open_win()

Reporting Services E-Mail Subscription Is Always in Pending Status

自闭症网瘾萝莉.ら 提交于 2019-12-11 07:00:03
问题 We have many e-mail subscriptions on your report server; but e-mail subscription status's are always "Pending" more than 4 days. Newly configured subscriptions are pending also. Status is not changing and there is no exception or error or warning on report server logs. Is there anybody with any ideas? How can I trace subscription logs with more details? P.S. E-mails send with relay on our exchange server and our system team said that they couldn't trace e-mails with sending relay. Thanks in

RDLC Chart… remove series

泄露秘密 提交于 2019-12-11 05:06:02
问题 I am trying to use a Report item in Visual Studio 2012 to generate a chart based upon a populated dataset. I have the following columns in my dataset table: date usersvalue averagevalue (among others, but these are what I want to show in the chart.) I start with a blank report, set the data source, and add a generic line chart: Note that this starts with two series ( Series 1 and Series 2 ) listed. I cannot find where these are specified in any property page I look at. I want my usersvalue