Skip to content
Discussion options

You must be logged in to vote

Hi @dprevato, here are some options you may find useful!

I recognize this is a difficult task currently, and making it easier is a high priority task in my triage list #1028

Change Data in Fixed-Length Arrays

If you plot data in fixed-length arrays, you can change the values in the original arrays and request a new render. This is extremely fast.

double[] xs = { /* your data */ }
double[] ys = { /* your data */ }

// plot your original data
formsPlot1.plt.AddScatterPlot(xs, ys);
formsPlot1.Render();

// modify the original data arrays and re-render
ys[5] = 123;
formsPlot.Render();

ScatterPlotList

This option is best if the number of data points changes often

This plot type is implemented …

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by dprevato
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1039 on May 20, 2021 00:19.