theplot.setAutoZoomVisibleRange(0, true);
theplot.setAnimationPreview(false);
Datasets datasets = theplot.getDatasets();
Dataset d = theplot.getDatasets().get(0);
d.setIncrementalHandler(new IncrementalHandler() {
public void onDataNeeded(Interval domain, Dataset dataset,
IncrementalDataResponse response) {
}
});
view.getChart().redraw();