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
.HorizontalScroll .Enabled (Boolean)
.LargeChange (integer)
.Maximum (integer)
.Minimum (integer)
.SmallChange (integer)
.Value (integer)
.Visible (Boolean)
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
thank you, thank you very much, is what I needed
Muchas Gracias, Saludos,
Greetings
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.