c# - How to populate 3D chart in Winforms Chart -
i create 3d plots using winforms in c#. can find on microsoft site how turn on 3d mode. there no examples of how populate data x,y , z values. examples use datapoints, have x , y. can point me example series of x y , z values?
winform charts don't support 'real' 3d plots. 3d surface plots supports extending of multiple data series in depth dimension.
or interpretation: y-values of data series function values of functions on x-[data series index] plane.
so create data series x-y-values , data series index z-value.
Comments
Post a Comment