Search found 10 matches

by Bowser
Fri Aug 15, 2008 6:15 am
Forum: JFreeChart
Topic: Is this Chart Type available in JFreeChart?
Replies: 2
Views: 2318

Oh that's a pity.
But thanks for your answer!
by Bowser
Thu Aug 14, 2008 12:28 pm
Forum: JFreeChart
Topic: Is this Chart Type available in JFreeChart?
Replies: 2
Views: 2318

Is this Chart Type available in JFreeChart?

Hello folks, i'm quite new with Jfreechart and i'm looking for a special chart. Here is one Example: http://www.nevron.com/ImagesNewLine/Screenshots/chartnet.jpg I'm not sure how this chart is called. Maybe the official name is really "Manhatten Chart". I don't know... Is it possible to create this ...
by Bowser
Sat Jul 12, 2008 8:29 am
Forum: JFreeChart
Topic: How to get the X-Axis labels vertical instead of horizontal
Replies: 4
Views: 17302

Hi Roy, Thank You for your quick answer! But unfortunately it doesn't work. Maybe i've done something wrong? Here my Code: CategoryPlot catPlot = chart.getCategoryPlot(); CategoryAxis domainAxis = catPlot.getDomainAxis(); domainAxis.setVerticalTickLabels(true); Is there any misstake?
by Bowser
Fri Jul 11, 2008 1:50 pm
Forum: JFreeChart
Topic: How to get the X-Axis labels vertical instead of horizontal
Replies: 4
Views: 17302

How to get the X-Axis labels vertical instead of horizontal

Hi Folks, here is my problem: I have a Bar Chart Diagramm which has Date Values on the X-Axis. The Format is in 'DD.MM.YYYY' Now i've got the problem that the dates are written horizontal. So i can only show few values. But i want to show more values. So i need to switch the Dates to vertical. Is th...
by Bowser
Mon Jun 30, 2008 8:23 am
Forum: JFreeChart
Topic: Gaps in StackedAreaChart
Replies: 5
Views: 5087

Hello paradoxoff,

that works!
Thank You!
I don't know that such method exists. Thank you.
By the way is there any Method where i can set the colours for the series?
Something like series1.setColour(0,0,0)

Thank you!!!!
by Bowser
Mon Jun 30, 2008 6:48 am
Forum: JFreeChart
Topic: Gaps in StackedAreaChart
Replies: 5
Views: 5087

Hi Guys,

unfortunately it seems, that I am the only one who has this problem!
Could i get some Feedback please....
I'm not sure where the Problem is. I'm trying to resolve it but it looks not good...

please Help me!

Thank You
by Bowser
Fri Jun 27, 2008 10:21 am
Forum: JFreeChart
Topic: Gaps in StackedAreaChart
Replies: 5
Views: 5087

Maybe my Dataset is interesting for you. So it looks like this: DefaultCategoryDataset dataset = new DefaultCategoryDataset(); dataset.setValue(1.0, series1, category1); dataset.setValue(3.0, series2, category1); dataset.setValue(5.0, series1, category2); dataset.setValue(2.0, series2, category2); H...
by Bowser
Fri Jun 27, 2008 10:19 am
Forum: JFreeChart
Topic: Gaps in StackedAreaChart
Replies: 5
Views: 5087

Gaps in StackedAreaChart

Hello folks, 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: JFreeChart chart = ChartFactory.createStackedAreaChart( "MYStackedAreaChart", "Category", "Value", dataset, PlotOrientation.VERTICAL, true, true, fals...
by Bowser
Fri Jun 27, 2008 7:01 am
Forum: JFreeChart
Topic: Problems with Dataset for StackedAreaChart
Replies: 2
Views: 2857

Hi Richard, it's quit as simple as i thought! Thank You for your fast help! I did it like this: String series1 = "Series1"; String series2 = "Series2"; String category1 = "Type 1"; String category2 = "Type 2"; DefaultCategoryDataset dataset = new DefaultCategoryDataset(); dataset.setValue(1.0, serie...
by Bowser
Thu Jun 26, 2008 5:30 pm
Forum: JFreeChart
Topic: Problems with Dataset for StackedAreaChart
Replies: 2
Views: 2857

Problems with Dataset for StackedAreaChart

Hello Freecharter ;) I am a total starter with JFreeChart and i think i've got a simple question: I just want to create a StackedAreaChart. just for Testing if created a Dataset like this: double[][] testData = new double[][] { { 1.0, 4.0 } { 5.0, 7.0 }}; CategoryDataset dataset = DatasetUtilities.c...