I am a new User of JFreeChart an i've got a Problem with the StackedAreaChart.
My Dataset works fine and this is how i create the Chart:
Code: Select all
JFreeChart chart = ChartFactory.createStackedAreaChart(
"MYStackedAreaChart",
"Category",
"Value",
dataset,
PlotOrientation.VERTICAL,
true,
true,
false
);
I Don't know why the Chart is creating the gaps...
I don't have special settings for the plot or something else. Just the create Statements that i've posted.
I hope you can help me, that i'm able to fix the Problem.
Thank you!!!!