Does jFreeChart
support creating a histogram from an array of bin values? I'd like to plot an array of bin values update the chart as new samples arrive. I would need to support multiple series on this chart and update it dynamically if possible. Can this be done with SimpleHistogramDataset
and SimpleHistogramBin
?
I know I can use the SimpleHistogramDataset
which allows dynamic updates but I have not tried two datasets at once. I'd also like to know if the normal HistogramDataset
allows dynamic updates, I kind of assumed it does not since you have to specify the values array argument up front.