Search found 5 matches

by jimmy6
Sun Aug 09, 2015 12:22 pm
Forum: JFreeChart
Topic: How to fix the RangeAxis?
Replies: 1
Views: 3588

How to fix the RangeAxis?

What is the setting to fix the scale of y? I set the scale of y from -100 to +100 because i wan the horizontal line start from the middle of chart but after i right click and drag left in the chart, the scale start from 0.

chart.getXYPlot().getRangeAxis(axisno).setRange(-100, 100);
by jimmy6
Mon Apr 28, 2014 5:21 pm
Forum: JFreeChart
Topic: How to get start and end date in axis x when change
Replies: 1
Views: 2892

How to get start and end date in axis x when change

How to get start and end date in axis x when change?
by jimmy6
Sat Dec 14, 2013 3:10 pm
Forum: JFreeChart
Topic: add annotation to anywhere without series/point in series
Replies: 0
Views: 2713

add annotation to anywhere without series/point in series

How to add annotation to anywhere without series/point in series?
by jimmy6
Sun Aug 18, 2013 6:47 am
Forum: JFreeChart - Stockmarket
Topic: CandlestickChart not working with ValueMarker?
Replies: 2
Views: 32404

Re: CandlestickChart not working with ValueMarker?

why this is sooo hard to answer???
Anyone got sample for this?
by jimmy6
Fri Aug 09, 2013 4:12 pm
Forum: JFreeChart - Stockmarket
Topic: CandlestickChart not working with ValueMarker?
Replies: 2
Views: 32404

CandlestickChart not working with ValueMarker?

The following code cant manage to show marker. Why? final JFreeChart chart = ChartFactory.createCandlestickChart("Candlestick Demo", "Time", "Price", dataset, true); ............. final Hour hour = new Hour(1, new Day(1, 7, 2013)); final Marker originalEnd = new ValueMarker(hour.getFirstMillisecond(...