I am retrieving data in the following format
Column1 Column2
0.1 0.2
0.3 0.2
ultraChart1.DataSource = dataSet;
ultraChart1.DataBind();
I get the error: You must include at least one row and two numeric columns in Scatter Chart Appearance - ColumnX and ColumnY
Any suggestions?
Try using XYZDataPoint instead of XYDataPoint.
Hi,
I have defined my UltraChart as BubbleChart during design time and at run time I add the series and datapoints. I am getting the error "you must include one row and three numeric columns. Any ideas?
For your case you can try using:
XYSeries series1 = new XYSeries();
series1.Points.Add(new XYDataPoint(2, 0.2, "", false));
series2.Points.Add(new XYDataPoint(3, 0.2, "", false));
this.ultraChart1.Series.Add(series1);
this.ultraChart1.Series.Add(series2);
About your second question I'm not sure that I understand it.
Thank you!
How about if you want two different series to show up on a single graph.
ColumnX1 ColumnY1 ColumnX2 ColumnY2
1 0.1 3 0.2.
2 0.2 4 0.3
Is this doable?
Also, how can you hide Column1, Column2 from appearing at the top of the graph (from your example).
Thanks!