Click here to Skip to main content
15,886,578 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends,

Here we are Developing a Windows Application using Rdlc Reports.In that rdlc reports i want to put Scroll Bar for Graphs Charts.Because we are displaying the Huge amount of data in that Graph,So the Graph is not looking Properly.So is there any Option to put a Scroll Bar to that Bar Chart in Rdlc Reports.If any information Regarding this please share with me.



Regards,

AnilKumar.D
Posted

1 solution

Refer below code

Dim MyChart As New Microsoft.Reporting.WinForms.ReportViewer

MyChart .Size = New System.Drawing.Size(1000, 350)
MyChart .ShowRefreshButton = False
MyChart .HorizontalScroll.Enabled = True
MyChart .HorizontalScroll.Visible = True
 
Share this answer
 
Comments
Anil Honey 206 24-Jan-13 22:54pm    
In Rdlc Report i have a Graph for that Graph i want to put scroll bar.Not in Reportviewer.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900