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
Hello Mike,
If you are looking for sample with SacterChart, please take a look at the attached sample for more details and let me know if you have any questions.
Regards
I get this error when clicking on your link:
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Web.HttpException: Unable to retrieve requested Product/Platform version informationSource Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[HttpException (0x80004005): Unable to retrieve requested Product/Platform version information] Infragistics.Documentation.OnlineViewer.Utilities.Settings.Reload() in C:\Work\Documentation\Dev\Online Help Program\source\Infragistics.Documentation.OnlineViewer.Web\Utilities\Settings.cs:259 Infragistics.Documentation.OnlineViewer._Default.LoadSettings() in C:\Work\Documentation\Dev\Online Help Program\source\Infragistics.Documentation.OnlineViewer.Web\Default.aspx.cs:164 Infragistics.Documentation.OnlineViewer._Default.Page_Init(Object sender, EventArgs e) in C:\Work\Documentation\Dev\Online Help Program\source\Infragistics.Documentation.OnlineViewer.Web\Default.aspx.cs:29 System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35 System.Web.UI.Control.OnInit(EventArgs e) +99 System.Web.UI.Page.OnInit(EventArgs e) +12 System.Web.UI.Control.InitRecursive(Control namingContainer) +333 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +378
So...
Wheree is source code sample?
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