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
595
Markers in 3D ScatterLine Chart
posted

Hi,

I am trying to put markers into a 3D Scatter Line Chart (as you have in the xamFeatureBrowser).  My code looks something like:

	var s1 = new Series
        {
	        ChartType = ChartType.ScatterLine,
		Label = "1",
		DataMapping = "ValueX=X; ValueY=Y; ValueZ=Z",
		DataSource  = data,
		Marker = new Marker { Type = MarkerType.Circle, Fill = Brushes.Red, MarkerSize = 2}
	};
        Chart.Series.Add(s1);

This doesn't seem to be working.  Also, I'd love to make the line thinner (I have a large number of series), but cannot get that to happen either.

Thanks!