Search found 6 matches

by Aquajock
Tue Jan 08, 2013 10:06 pm
Forum: JFreeChart - Stockmarket
Topic: Private variables
Replies: 2
Views: 32466

Re: Private variables

I am implementing drag-to-resize subplots in CombinedDomainXYPlot. For this, the subplotAreas instance variable contains exactly the information I need, but it is private and has no accessor. Short of breaking into the jar and recompiling it (thanks for the possibility, but I really don't like to do...
by Aquajock
Tue Jan 08, 2013 9:33 pm
Forum: JFreeChart - Stockmarket
Topic: Private variables
Replies: 2
Views: 32466

Private variables

I'm running into problems extending things because variables I really need to get at are declared private and have no accessor. In a similar vein, invoking protected methods from another class in a package works within your delivered jar, but keeps me from extending things outside the jar. With very...
by Aquajock
Tue Jan 08, 2013 1:08 am
Forum: JFreeChart - Stockmarket
Topic: BUG: CombinedDomainXYPlot with CandlestickRenderer
Replies: 3
Views: 34614

Re: BUG: CombinedDomainXYPlot with CandlestickRenderer

Thank you. BTW Nice piece of work, this.
by Aquajock
Mon Dec 10, 2012 5:30 pm
Forum: JFreeChart - Stockmarket
Topic: CobinedDomainXYPlot
Replies: 3
Views: 34950

Re: CobinedDomainXYPlot

VeraKeisey wrote:
Aquajock wrote:This is explained in Chapter 14 of the Developer Guide.
And where i find it?
You buy it from the JFreeChart website.
$65.
Cheap.
by Aquajock
Fri Dec 07, 2012 12:21 am
Forum: JFreeChart - Stockmarket
Topic: CobinedDomainXYPlot
Replies: 3
Views: 34950

Re: CobinedDomainXYPlot

This is explained in Chapter 14 of the Developer Guide.
by Aquajock
Fri Dec 07, 2012 12:08 am
Forum: JFreeChart - Stockmarket
Topic: BUG: CombinedDomainXYPlot with CandlestickRenderer
Replies: 3
Views: 34614

BUG: CombinedDomainXYPlot with CandlestickRenderer

package chart; import java.awt.EventQueue; import java.util.Calendar; import javax.swing.JFrame; import javax.swing.WindowConstants; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; import org.jfree.chart.axis.DateAxis; import org.jfree.chart.axis.NumberAxis; import org.jfree.c...