Search found 6 matches

by lax4mike
Fri Feb 29, 2008 4:32 pm
Forum: JFreeChart
Topic: reverse order of axis
Replies: 2
Views: 2792

reverse order of axis

So i'm trying to get the numbers on the x axis to go backwards.
instead of:

Code: Select all

1  2  3  4  5  6
i want it to be:

Code: Select all

6  5  4  3  2  1
i'm using an XYPlot. i'm looking at the axis docs, but i don't see anything useful. is there another class that has something i can use? or am i missing something?
by lax4mike
Thu Feb 14, 2008 8:59 pm
Forum: JFreeChart
Topic: Help for refresh graph after dataset changed
Replies: 6
Views: 6416

i found an answer. i used chartPanel.setChart and chartPanel.repaint
by lax4mike
Wed Feb 13, 2008 6:56 pm
Forum: JFreeChart
Topic: Help for refresh graph after dataset changed
Replies: 6
Views: 6416

i looked for a refreshChart() function or something, but couldn't find one. does it exist?
by lax4mike
Wed Feb 13, 2008 6:23 pm
Forum: JFreeChart
Topic: Help for refresh graph after dataset changed
Replies: 6
Views: 6416

how did you do it?
by lax4mike
Mon Feb 04, 2008 9:06 pm
Forum: JFreeChart
Topic: set de max-min at y-axis
Replies: 5
Views: 6243

how do you get the axis?
by lax4mike
Fri Feb 01, 2008 12:02 am
Forum: JFreeChart
Topic: customizing a bar
Replies: 0
Views: 1855

customizing a bar

i'm looking to make the bar look similar to a stacked bar graph, but i only want to give it the 1 value. for example, i want all values under 75 to be green, 75 - 100 to be green with yellow on top. so if the value is 60, just a green bar will be shown. if the value is 80, a green bar will be shown ...