I have created a chart that has uses a single ScatterLine. I need to have the X and Y values for proper display. The line inbetween all the points seems to look soomthe and I need it to be straight with sharp angles. Escpecially when viewed on larger and better resolutions. The line looks smooth and the angles blurred together. Anybody have any thoughts on this?
Thanks!
Steve
i don't see any smoothing effect when i generate 100 points with incrementing X and random Y values, and display it on a 1000x1000 chart. i've attached an image; is this different from what you're seeing?
StrokeThickness="3" Fill="Black" for the series.
In code, I set the ChartType = ChartType.ScatterLine and set 30 X and Y points and add them to series within a for each loop. I am not sure why it looks smooth. Time permitting, I may put together a xaml (no procedural) version of the dataset to post...
-Steve
I tried different data points that are more outside the range and got a chart that looks similar to yours. I think its the way the lines are connected and how its rendered. Ultimately its a product of the data....
Thanks,
i don't think there is any artificial smoothing happening. what you are seeing is just several connected System.Windows.Shapes.Line objects.
maybe you could use markers to make the individual points more distinct?