SSRS Report Builder 3.0 chart not showing all data points - sql-server

I'm creating a drill down report using a column chart to display data for a given day. Each column shows the max value in that hour of the day. When I click a column the same query is run in a line chart but the date range is changed to be for only that hour of data, passing through the field value of testDate as a parameter fromDate the date range looks like this: testDate >= fromDate AND testDate < DATEADD(HOUR, 1, fromDate). So only that hour of data is got.
My problem is that not all values within the hour are always displayed, most reports when clicked into show the whole hour: Whole hour but some of them show only the first 35 minutes and cut off before an expected very large number: Cut off data In this case a value of 948 should occur at around 7:47 but just doesn't appear.
Any help would be greatly appreciated.
EDIT:
I bumped it up to a 2 hour window which showed all of the data and it will do the job, but I'm still curious as to why it wasn't working before, here is an image of data from 07:00 to 09:00, Two hour window

Related

Time Series chart showing dates with intervals filled with dots

I have a datastudio time series chart where the x axis represents the dates in a month which is got from a query and the y axis represents the cpu utilization value for a instance, The break down dimension is the instancename. When I create the time series chart, the x-axis does not display all the datas, it displays dates with 2 days interval which is filled by dots. Is there any way i can fill the dates instead of the dots in a continuous pattern.
Update
As per the given answer below I have updated this question. Now the unnecessary dots have been removed and it displays the dots only for which there is data, but is there any ways that the dates can be continuous for which there is data, ex as per the below chart there is data for all the dates between July8 to July 23 for the particular instance gcp-wsus, but it still displays dates with a 2 day gap interval July8,July11,July14 etc.
Can this gap be filled with dates also? Thanks
In a Time Series Chart, It can be achieved by changing the Missing Data value from the default (Line to Zero) to Linear Interpolation:
Google Data Studio Report and a GIF to elaborate:

angularjs gantt hide specific hour column

Is it possible to hide specific hour column in angularjs-gantt chart.
Say I have:
headers="['month', 'day', 'hour']"
This will show all the hours from 0 through 24. But I only like to show working hours which is 8 to 19.
Also can i have provision to give specific width for each hour colomn, with some calculation on what hour is

Keep PivotTable report filter after data refresh

I have a PivotTable (actually it is five PivotTables, each on its own separate sheet) that is created from a query of an outside database. Each of the PivotTables represents a day (i.e. Today, Tomorrow, Today+2, Today+3, and Today+4). For the report filter for the first two, we use a date range filter of today and tomorrow which automatically filters the data and allows it to roll over. We created custom date ranges for the other three days, but upon every external data refresh we have to go into each sheet and reselect the report filter from all to the specified time frame. This data rolls over every day so we can see the lineup for the next 96 hours out.
Is there a way to either keep the PivotTable report filter criteria (VBA and macros are both acceptable, although we are also fairly new to both)?
Or is there some super secret way to extend the report filter from just today and tomorrow to a time range (48 hours, 96 hours) instead of next month?
I need the days to be separated, so next week will not work because all the days will populate on one page.
Without seeing a real example it's hard to tell, but how about changing the query to a relative date index, i.e. something like
SELECT DATEDIFF('day', GETDATE(), report_dt) AS days_from_today FROM reporting_table
And then set your report filters on this relative date index (days_from_today = 1 for tomorrow, etc)? You can always create another Excel column in the report =TODAY() + days_from_today to get your absolute date back. (Assuming you are just dealing with one time zone for reporting purposes.)
I.e., instead of rolling filters, keep the filters on constant indices, and let the indices cover a rolling date range. I'm not sure Excel is smart enough to do the rolling filters thing.

Reporting Services 3.0 Chart calling stored procedure with date time value , how to sort?

I have a Stored Procedure in SQL Server 2008. One of the values returned is:
SELECT DATEADD(mm, DATEDIFF(mm,0,e.Day), 0) AS [Month],
So I get values like: 2012-05-01 00:00:00.000
I want to display the month in the X axis for a chart report, obviously sorted chronologically. It would be great if I can display the month as "May-2012" or "2012 - May". Right now it displays the whole thing as 5/1/2012 12:00:00 AM and it is sorted alphabetically instead of by month.
When I check the Sorting it shows the field [Month] and order A to Z, so I assume it is not "seeing" it as a datetime value.
How do I get the sorting right?
How do I change the format to display the month as "May-2012" ?
Thanks in advance!
OK, work around:
I talked to my DBA, asked him to return a formatted field from the stored procedure, with values like "2012-05" and '2012-12' and sort by that field. Then I used that new field on the Report builder Chart, and remove all sorting.
Works for now, but still need to understand how to do it right for future reports.

Grouping by week and daily breakdowns in SSRS

I have a query concerning SSRS and displaying data. My report will consist of a weekly breakdown of week numbers and sum of hours. Showing something like this
12/06/10 351
19/06/10 342
26/06/10 399
And then on clicking/toggling the week data cell(s) a breakdown by day will be displayed. I have completed the daily breakdown and written a function to return all weeks in 2010 but my difficulty lies in grouping by the week.
In the layout tab for SSRS, I have created a group on the week value and date value, and have the week value appearing in the group cell, but it creates an additional blank line below each day breakdown.
Could anyone help me?
Thanks very much

Resources