We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Histograms do not have a clearAllSeries method as the TimeSeriesChartGenerator. How can I do to reset a histogram graph on each execution?
clearAllSeries
TimeSeriesChartGenerator
I found a workaround using the moveSeries method on the chart generator which calls a protected update method:
moveSeries
update
alphaHistogramChart.moveSeries(alphaHistogramAttributes.getSeriesIndex(), true);
I'm wondering if there is a better way of doing this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Histograms do not have a
clearAllSeries
method as theTimeSeriesChartGenerator
. How can I do to reset a histogram graph on each execution?I found a workaround using the
moveSeries
method on the chart generator which calls a protectedupdate
method:I'm wondering if there is a better way of doing this.
The text was updated successfully, but these errors were encountered: