Jump to content
Software FX Community

prasoon

Members
  • Posts

    3
  • Joined

  • Last visited

prasoon's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi I'm trying to plot 2048 datapoints in ChartFx Surface Chart but its taking longtime and plotting it as normal 2D Plot and sometimes its not Plotting..... thanks in advance!!!!
  2. 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
  3. Hi, Currently, I am trying to plot 2048 values in surface contour chart and chartfx is unable to plot it. From my testing, I found out that ChartFX - Surface Contour Chart can only 250 values(data points). Is ChartFX- Surface Contour Chart can only plot 250 data points? Is this limitation of chartfx? Advance thanks for the reply.
×
×
  • Create New...