Jump to content
Software FX Community

Unable to point 2048 datapoints in Surface Chart


prasoon

Recommended Posts

Hi

I'm trying to plot 2048 datapoints in ChartFx Surface Chart but its taking longtime and plotting it as normal 2D Plot.....Code I have used to plot is as follows

int pt = 2048;

ChartSMAX.Data.Series = pt;

ChartSMAX.Data.Points = pt;

for (int series = 0; series < pt; series++)

{

for (int point = 0; point < pt; point++)

{

ChartSMAX.Data[series, point] = VectorSD[series]; //VectorSD is double Array With 2048 Values.

}

}

but whne i put pt=250 its plotting well in 3D.Is there any otherway to plot morethan 250 datapoints in Surface Chart??

ThankYou For Your Reply

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...