Can I add a scroll bar to the JFreeChart that allows me horizontally move the bar ?
JFreeChart chart = ChartFactory.createBarChart3D(
title,
"X",
"Y",
dataset,
PlotOrientation.VERTICAL,
true,
false,
false
);
Because the dataset could be very long that there's not enough width to show the result...
Can I use JSlide on it? or other methods?
If possible, please show me some sample code. Thank you!