I am using 2009.2.
I am creating a Scatter chart and it works fine but I woudl like to connect the points with lines. How do I do that?
Ah, the Scatterline chart type is available only in the version of XamWebChart that ships with the Silverlight Data Visualization controls, and it sounds like you are using the chart packaged with the Silverlight Line of Business controls (http://es.infragistics.com/dotnet/netadvantage/silverlight/xam-web-chart.aspx#Overview). If you have access to both sets, make sure you are referencing the chart assembly from the Data Visualization controls. If not, possibly you could emulate this functionality using a line chart, depending on what your data looks like.
-Graham
Thanks for the reply. That seems like it should work excpet I do not have a ScatterLine option in the Infragistics.Silverlight.Chart.ChartType enumeration. The options I see are:
Bar, Bubble, Column, Line, Pie, Scatter.
We had this working with a beta version of the control and ScatterLine was an option. Since I went to the relaased version, that option does not exist.
I am using version 9.2.20092.1007 of the Infragistics.Silverlight.Chart.v9.2.dll.
Any suggestions?
If you are defining the series in XAML you should be able to set the chart type to scatter line like so:
<igChart:Series ChartType="ScatterLine">
series.ChartType = Infragistics.Silverlight.Chart.ChartType.ScatterLine
let me know if you have any trouble.
I guess I do mean a scatter line chart. How do I get the chart to act that way? I have several series of X-Y data and the chart is plotting the points fine. I want to connect the points with a line.
I did not see an chart type option for ScatterLine - how do I create one?
Do you mean a scatter line chart? http://help.infragistics.com/Help/NetAdvantage/DV/2009.2/CLR3.5/html/SL_DV_xamWebChart_Scatter_Line_Chart.html
Or do you mean something more like forming a hull from the outer points?