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
180
Need sample of scatter line chart
posted

I need sample code of scatter line chart. I want to show numeric series in X, Y and Y2 axis.

Sample Data like

X                 Y                 Y2

==               ==               ==

37.5            45.67         6.78

37.68         60.30          5.45

 

-Neeraj

Parents
  • 12333
    posted

    Hi,

    You can check out the following documentation that shows how to work with a 2D Scatter Chart:

    Help Topic

    The difference is that you must also show (which is hidden by default) the other axis...

                this.ultraChart1.Axis.X2.Visible = true;
                //or

                this.ultraChart1.Axis.Y2.Visible = true;

    ...as well as provide an Item format string (example code shown in the help topic) for mapping data from your underlying data model to the axis 2 labels

     

Reply Children