Search found 3 matches

by aremington1612
Fri Sep 18, 2015 4:06 am
Forum: JFreeChart - Stockmarket
Topic: How to create Fatter Candlesticks?
Replies: 1
Views: 36055

How to create Fatter Candlesticks?

I'm developing a Swing app that displays daily financial data, and have chosen to use JFreeChart. I was able to learn how to create a candlestick chart, but my problem lies in customization. You see, what I'm aiming for is more along the lines of http://i.stack.imgur.com/G1WcF.png While, so far all ...
by aremington1612
Thu Sep 17, 2015 8:03 am
Forum: JFreeChart
Topic: How to enable panning via CTRL + mouse dragging?
Replies: 2
Views: 5677

Re: How to enable panning via CTRL + mouse dragging?

Nevermind guys - after returning to my project and doing some more digging around, I found out the ff: All one needs to do is use the getXYPlot() method of the newly created chart to get the XYPlot object. Then one uses two setters on this Plot object to set both values to true: a.)setDomainPannable...
by aremington1612
Thu Sep 17, 2015 3:22 am
Forum: JFreeChart
Topic: How to enable panning via CTRL + mouse dragging?
Replies: 2
Views: 5677

How to enable panning via CTRL + mouse dragging?

Hi guys, I've come here because I'm developing a very simple stock watching application. I was able to create a candlestick chart via the ChartFactory class and passing in a data set. It works very nicely. However, What I want to do is enable the CTRL + mouse dragging panning that I see in Dave Gilb...