Search found 4 matches

by tomiu
Mon Dec 26, 2011 1:23 pm
Forum: JFreeChart - Stockmarket
Topic: trend lines on mouse event
Replies: 14
Views: 103640

Re: trend lines on mouse event

Hello develop,

if you still have the code can you mail it to me too please?

my mail: tomislav11978[at]yahoo.com

Since develop doesn't react, has anyone else he's code???
Thx in advance,
tomiu
by tomiu
Tue Jun 21, 2011 11:14 am
Forum: JFreeChart
Topic: Y Axis values change for 2 timeseries
Replies: 1
Views: 3350

Re: Y Axis values change for 2 timeseries

so is there no way to manualy change the values on Y Axis?
by tomiu
Wed Jun 15, 2011 7:50 pm
Forum: JFreeChart
Topic: Y Axis values change for 2 timeseries
Replies: 1
Views: 3350

Y Axis values change for 2 timeseries

hi, i have a chart with 2 timeseries..the one has values between 100 and 200 and the second one 5000-12000....since the greatest value in the chart is 12000 and smallest 100, the data of the first timeserie are very compressed...is there any way to change the y range in this way: 50,100,150,200,5000...
by tomiu
Mon Jun 06, 2011 7:07 pm
Forum: JFreeChart
Topic: moving average from the difference of 2 other moving average
Replies: 0
Views: 2771

moving average from the difference of 2 other moving average

hi, i can calculate a moving average of one time serie(mav1) and than mav of a second time serie(mav2)..now i want to calculate the moving average of (mov1-mov2)..for example: TimeSeries mav1 = MovingAverage.createMovingAverage( numbers, "first moving average", 10, 10 ); TimeSeries mav2 = MovingAver...