I have a report in SQL Server Business Intelligence Studio that is a .rdl file(Report Definition/Report Designer). Currently, the report graphs a line chart given the a LOAN_AMOUNT(Y-AXIS) for a given Day of the Month (X-AXIS). Everyday of the month is not represented as data being retrieved from the database. As a result, certain parts of a line may be discontinuous. How do I make this line continuous even if no data-points exist?
SQL Server Business Intelligence Studio: Discontinuous Line Chart
722 Views Asked by dionysus At
1
There are 1 best solutions below
Related Questions in VISUAL-STUDIO-2008
- Automatically Compile .Net UserControls
- Error code 31 returned from mt.exe when building C++ projects in Visual Studio 2013
- Issue with Referenced DLL's on compiled EXE in Visual Studio 2008
- How can I prevent picture boxes from intersecting, while they are in constant movement?
- Microsoft TFS and Visual Studio 2008 - project hierarchy changing on server
- Disable clock edit on windows 6.5
- How to static link EDK II library into application in Visual Studio 2008 tool chain
- MFC Feature Pack 2008 CPaneDialog as CDialogBar
- Can we highlight single word of from Text Property (have multiple words)of Label Control
- Getting exception while compiling in 64bit visual studio 9.0 sp1
- Error LNK2019 LNK2001
- Desktop Shortcut Icon is different than Application Icon
- Trying to reduce size of memory allocations in debug compilations for C++
- c++ wofstream issue in unicode program
- How to set parameters as optional while adding crystal reports in central management consol
Related Questions in RDL
- How to build rptproj using C#
- RDL, IIF statement in DataElementOutput tag
- SSRS mdx report: use dimension on columns
- RDL file runtime design viewer VS 2013 or RDL file Header viewer without data source
- Redirect SSRS Report When Under Maintenance
- RDL is taking very longtime to render the report
- Cannot edit RDL report definition form in visual studio 2015
- Is CheckBox checked or not in RDL reportview
- Rdlc: dynamically hide item in footer
- Hide/Show tablix row based on subreport results
- how to add hyperlink to a column in .rdl file
- SSRS 2008 how to get rid of white space from page breaks when parameters hidden?
- repeat column headers on the rdl report table
- SQL Server Business Intelligence Studio: Discontinuous Line Chart
- Java script In rdlc
Related Questions in REPORT-DESIGNER
- Error when I convert to string value in Report Designer
- Pentaho 5.3 - How to read a property in PRPT files
- Pentaho report designer bulk change file location in subreports
- design report using visual studio 2013 report designer - how to begin?
- Pentaho Report Designer Concatenate + Date formating
- Datename format in Pentaho Report Designer (Bar Graph)
- SQL Server Business Intelligence Studio: Discontinuous Line Chart
- query designer failed to open in pentaho report designer
- RDLC/Reporting Services: Gauge inside table is cut off
- Reporting services: why is there all this blank space at the start of my chart?
- Acumatica Report designer IF,AND, SUM formula
- Error in querying a remote Oracle Database from Pentaho Report Designer
- Empty reports in Pentaho Client Console
- Incorrect values in array
- Format field based on number of rows - Report Designer 1.0
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You should use a function like this:
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61519
To generate all dates, even if they are not in the database and assign the loan amount to 0.
For instance, if in february (no leap year) and your database has values for feb 1, and feb 14 only then you should use the date function posted to get all dates and assign the value 0 to loan amount of all other dates. Only then should you use this as your datasource for your report (I assume you are using stored procedures and not a direct table).