Search found 105 matches

by wzwei28
Thu May 12, 2005 1:00 pm
Forum: JFreeChart - Stockmarket
Topic: (Candle Stick)Trim the Non-Market Trading Day of X-axis
Replies: 19
Views: 318204

:oops: :oops:
by wzwei28
Thu May 12, 2005 12:59 pm
Forum: JFreeChart - Stockmarket
Topic: (Candle Stick)Trim the Non-Market Trading Day of X-axis
Replies: 19
Views: 318204

:cry: :cry:
by wzwei28
Thu May 12, 2005 12:59 pm
Forum: JFreeChart - Stockmarket
Topic: (Candle Stick)Trim the Non-Market Trading Day of X-axis
Replies: 19
Views: 318204

the problem is I can't change the x-axis to a value axis(which I can assume the date is a value, and 210105 is larger than 200105(DDMMYYYY), but unlucky I only can use the public DefaultHighLowDataset(final String seriesName, final [color=red]Date[] date[/color], final double[] high, final double[] ...
by wzwei28
Thu May 12, 2005 12:59 pm
Forum: JFreeChart
Topic: (Candle Stick) Trim/Filter non-market day at x-axis
Replies: 5
Views: 3874

the problem is I can't change the x-axis to a value axis(which I can assume the date is a value, and 210105 is larger than 200105(DDMMYYYY), but unlucky I only can use the public DefaultHighLowDataset(final String seriesName, final [color=red]Date[] date[/color], final double[] high, final double[] ...
by wzwei28
Thu May 12, 2005 12:52 pm
Forum: JFreeChart
Topic: (Candle Stick) Trim/Filter non-market day at x-axis
Replies: 5
Views: 3874

(Candle Stick) Trim/Filter non-market day at x-axis

MMM :oops: ... I have a problem. I use Candle Stick sample from demo named 'CandlestickChartDemo1'. For easy understand of the question, I modify this sample's dataset and make it more like a real world trading mode. (which will not have any value in Saturday,Sunday and Public Holiday). Here is my c...
by wzwei28
Thu May 12, 2005 12:50 pm
Forum: JFreeChart - Stockmarket
Topic: (Candle Stick)Trim the Non-Market Trading Day of X-axis
Replies: 19
Views: 318204

(Candle Stick)Trim the Non-Market Trading Day of X-axis

MMM :oops: ... I have a problem. I use Candle Stick sample from demo named 'CandlestickChartDemo1'. For easy understand of the question, I modify this sample's dataset and make it more like a real world trading mode. (which will not have any value in Saturday,Sunday and Public Holiday). Here is my c...
by wzwei28
Tue Apr 05, 2005 4:42 am
Forum: JFreeChart
Topic: Travelling 1-8 April
Replies: 3
Views: 2865

Have a pleasant trip

Hope you have an pleasant holiday! Beware of earthquake & tsunami & beautiful woman. Lol 8)
by wzwei28
Fri Mar 25, 2005 11:09 am
Forum: JFreeChart - Stockmarket
Topic: Change color in area chart (area portion)
Replies: 8
Views: 29745

Solve problem of changing area portion color in area chart.

Thanks a lot, it works perfectly! I follow ur instruction and include these 3 lines, it change the area portion color from red(default) to Blue. Thanks! :lol: [color=red]XYAreaRenderer2 renderer2 = new XYAreaRenderer2(); plot.setRenderer(renderer2);[/color] [color=blue]renderer2.setPaint(Color.BLUE)...
by wzwei28
Fri Mar 25, 2005 3:36 am
Forum: JFreeChart - Stockmarket
Topic: Change color in area chart (area portion)
Replies: 8
Views: 29745

:D , :D , :D
by wzwei28
Thu Mar 24, 2005 5:00 am
Forum: JFreeChart - Stockmarket
Topic: Change color in area chart (area portion)
Replies: 8
Views: 29745

Complete Demo Code for Area Chart(only can't chg area color)

Thanks for ur advice, David. Yeah, u are true, the chart.setNotify(true) can't reset the renderer. And the area portion below time series line still using default color(red) and not able to change to blue/green. Main problem: Can't change color in area portion(below time series line ) from deafult r...
by wzwei28
Tue Mar 22, 2005 7:06 am
Forum: JFreeChart - Stockmarket
Topic: Change color in area chart (area portion)
Replies: 8
Views: 29745

:oops: , plz help, any idea? fellow friend
by wzwei28
Tue Mar 22, 2005 5:08 am
Forum: JFreeChart
Topic: Help! How to change color in area chart background(area part
Replies: 4
Views: 3922

Anybody know how to change color for the area chart (Area portion-below the line), i had try setSeriesPaint but not work
by wzwei28
Mon Mar 21, 2005 11:08 am
Forum: JFreeChart
Topic: Help! How to change color in area chart background(area part
Replies: 4
Views: 3922

Help! How to change color in area chart background(area part

private JFreeChart createChart(XYDataset dataset) { JFreeChart chart = ChartFactory.createTimeSeriesChart( null, null, null, dataset, false, false, false ); chart.setBackgroundPaint((new Color(0xFFCCFF)));//Light pink XYPlot plot = chart.getXYPlot(); plot.setBackgroundPaint(new Color(0xFFFFFF)); plo...
by wzwei28
Wed Mar 16, 2005 9:44 am
Forum: JFreeChart - Stockmarket
Topic: Change color in area chart (area portion)
Replies: 8
Views: 29745

Change color in area chart (area portion)

private JFreeChart createChart(XYDataset dataset) { JFreeChart chart = ChartFactory.createTimeSeriesChart( null, null, null, dataset, false, false, false ); chart.setBackgroundPaint((new Color(0xFFCCFF)));//Light pink XYPlot plot = chart.getXYPlot(); plot.setBackgroundPaint(new Color(0xFFFFFF)); plo...
by wzwei28
Wed Mar 16, 2005 9:39 am
Forum: JFreeChart
Topic: Modify, Change Color in AREA Chart (AREA portion)
Replies: 1
Views: 2055

Modify, Change Color in AREA Chart (AREA portion)

private JFreeChart createChart(XYDataset dataset) { JFreeChart chart = ChartFactory.createTimeSeriesChart( null, null, null, dataset, false, false, false ); chart.setBackgroundPaint((new Color(0xFFCCFF)));//Light pink XYPlot plot = chart.getXYPlot(); plot.setBackgroundPaint(new Color(0xFFFFFF)); plo...