Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
125
how to use the horizontal scroll bar and vertical in UltraChart
posted

how I can use the horizontal scroll bar and vertical, as I have to show a lot of data in a Gantt chart I found those functions in the UltraChart

With UltraChart1

.HorizontalScroll .Enabled (Boolean)

.LargeChange (integer)

.Maximum (integer)

.Minimum (integer)

.SmallChange (integer)

.Value (integer)

.Visible (Boolean)

End With

the same for VerticalScroll please as I can make it work and display all data, without making small graph, to navigate in the graph, both horizontally and vertically I hope I have explained thank you in advance for your support, and sorry for my bad English. Use Visual Basic 2005

Parents
No Data
Reply
  • 25
    Suggested Answer
    posted

    Dear Sir,

     

    You can enable the Scroll in ultrachart using the following code,

      'For Enabling the Scroll Bar Along the X Axis
                uichart.Axis.X.ScrollScale.Visible = True


                'For Enabling the Scroll Bar Along the Y Axis
                uichart.Axis.Y.ScrollScale.Visible = True

    Please note that scroll will not be applicable for all charts.

     

     

Children