Remove points: it is now possible to remove points from a function using the following methods:
remove_point(index)
pop_front_point()
pop_back_point()
Plot less samples: it is now possible to specify a "sampling window" of values that will be plotted, instead of plotting the whole function.
To do so, change the ChartProperties.max_samples default value (50) to a custom value x.
When plotting a function, the Chart node will display only the last x values of each function.
What kind of change does this PR introduce?
Implements features requested in #79
What is the current behavior?
What is the new behavior?
Remove points: it is now possible to remove points from a function using the following methods:
Plot less samples: it is now possible to specify a "sampling window" of values that will be plotted, instead of plotting the whole function. To do so, change the
ChartProperties.max_samples
default value (50) to a custom valuex
. When plotting a function, the Chart node will display only the lastx
values of each function.Additional context
closes #79