I have managed to plot a data series on a C# (.NET) chart. However, because the data represents real world coordinates, I need the axes to be isotropic. I.e. the same acale should apply to both x & y axes so that circles remain circles etc.
I can set the axes properties to define exact ranges, but in reality the data is likely to expand, requiring an automatic redraw when the limits are reached.
User Profile
Collapse
-
How do I create isotropic axes on a C# chart?
-
how do I draw a filled polygon on a line data series chart?
I need to add a polygon to a data series in mschart.
I have tried the following:-
...using Systems.Windows .Forms;
...
formGraphics.Fi llPolygon(myBru sh,MyCurve);
{this works OK but on a plain form with no axes)
...
chart1.Series[0].Points.AddXY(1 .0, 2.0);
...
chart1.Series[0].Points.AddXY(5 .0, 20.0);
...
formGraphics.Fi llPolygon(MyBru sh, MyCurve));... -
How do I draw a filled polygon in mschart (on line plot)
How do I draw a filled polygon in mschart (on line plot). This needs to be on a chart form and not on a form directly.
No activity results to display
Show More