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
80
Scrollbars in WebChart
posted

 

Hi,

In my graphs, I have this certain "threshold" then when reached, I enable the scrollbars. This seems to work perfectly fine on the Column chart. However, I tried it on AreaChart 3D and Stack3DBarChart and it doesn't work.  

 

I basically have this code:

 

If datasource.Rows.Count > threshold

Me.UltraChart1.EnableScrollBar = True

End If

 

Am I missing something here? We have a license for Infragistics version 10.2 and I'm using it on VS2008 .NET 3.5.

 

I read somewhere that scrollbars are not supported on all charts. Is there any listing anywhere that states which charts are supported and which are not? I have tried searching for this to no avail. 

 

Thanks.

Parents
  • 26458
    Offline posted

    Only 2d charts support scrollable axes. This is mostly because 3d charts can be rotated and are commonly drawn showing various degrees of depth. Scrolling the asp.net chart is a clientside feature and scrolling in 3d would require a new chart image to be constantly generated on the server (to show new depth). Hopefully, this makes sense.

Reply Children