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
370
How to add scrollbar to the 2D Ultrachart columnchart graph.
posted

Hi,

I faced some problems in the infragistic graph in scoll bar adding.

Made the ultraChart1.Axis.X.ScrollScale.Visible = true;

but all the data coming in the same size of graph .

Is there any way to add scroll bar in the graph.

Here I am attaching the image of the graph.

Thanks In Advance.

Parents
No Data
Reply
  • 53790
    Suggested Answer
    posted

    Hello Manaswini,

    Looking at the screenshot, I see that your Scrollbar is visible, but if you want  to be able to scrolling, you need to "Zoom IN" your chart. You could do that with code. For example:

    axisX.ScrollScale.Visible = true;
    axisX.ScrollScale.Scale = 0.25;

    or by press "+"/ "-" signs at the left side of your scrollbar.
    Please let me know if you have any questions.
    Regards

Children