I have a report that I built for a client where i need to plot x 0-100, y 0-100. Lets imagine I have these points:
0,0 2,24 50,70 100,100
I need to represent these as a smoothed line chart, as the application of it is a dot gain graph for printing presses.
Heres the problem. The line draws fine from 100,100 (top right) down to 2,24. But then what happens is from 2,24 to 0,0 the line curves out off the left of the graph and then to down to 0,0. Imagine it putting a point at -10,10.
I understand this is because of the generic bezier curve algoritm it is using and the large seperation of control points, thus heavily weighting it.
I was wondering however if anyone knows a way I can control it. I have tried adding in averaged points between the existing control points but it still curves off the graph as if its still heavily weighted.
The only other answer I can think of is custom drawing a graph or looking into dundas charts and using its GDI+ drawing support.
But before I go that route anyone have any thoughts?