Hi Paul,
Thanks for the update
I have following queries.
1.I want to implement a graph with values beginning from 60-100 on X axis .I'm using Begin() API accordingly.
Let me know how to scale it for exact same bandwidth
XBounds = (float)((float)StrokePath.Bounds.w/(float)40); //to accomodate (60-100) point on X Axis
Path.Scale(XBounds,YBounds);
Path.Begin(0,60,500);
with the above scale I'm not able to see the curve.I think its scaling X-axis from 0-40 only
After this I changed XBounds = (float)((float)StrokePath.Bounds.w/(float)100);
Now the curve is visible as I'm scaling it from 0-100
I want to scale/plot only for intermediate values eg 60 - 100 how it can be done
Regards
Kunal