From: Mike E. <mi...@mi...> - 2003-06-16 19:02:48
|
On Mon, 16 Jun 2003, Nathaniel G. Auvil wrote: > > > - can jcharts work as I have described the app window > > - six charts in the primary app window > > sure. You can have as many charts as you would like. > > > - can jcharts plot stock bars > > - I know it can do lines > currently, there are only lines for high,low,open,close. bars representing the open and close > range are not supported. I will add this as a feature request for the next release. > > > > - can jcharts handle the real-time update > > - if I need to manage the shifting of data to the left (older) that's fine > sure. > > > > - can jcharts work with an application (not applet) > > - I deliver all jar files using JNLP > yes. There should be no problem running with Java Web Start. > > > > - one odd thing I want to do is to eventially sync all charts to a single scroll > > bar at the bottom of the window > > - so that by moving the one scrollbar all charts are properly scrolled > > this is more of how you layout your charts in your application. I believe what you want are a > bunch of JPanel Objects in a single JScrollPane? I'm thinking of the main window like this +------------------------------+ | | | | | | | | | | | | | +-------+ | | | | | | | +-------+ | | | | | +-------+ | | | | | | | | | | | | | +------------------------------+ with a scrollbar at the bottom. Moving the scrollbar, its listener would know how to adjust the six charts in sync with each other. So no OHLC stock bars, but each open, high, low, close could be plotted as individual lines? How would the real-time updates work? Mike |