Page 1 of 1

wxFreeChart powerful charting library

Posted: Fri Dec 04, 2009 9:44 am
by MAB
wxFreeChart is a powerful charting library, designed with flexibility in mind. It has a Model-Controller-View design and it can draw the following chart types:
- line/point charts based on XY coordinates
- category (bar) charts
- OHLC financial charts
- pie charts
- bubble chars
- Gantt charts

More info: http://wxcode.sourceforge.net/components/freechart/

Posted: Fri Dec 04, 2009 10:51 am
by orbitcowboy
Are there screenshots available?

Posted: Fri Dec 04, 2009 12:54 pm
by MAB
orbitcowboy wrote:Are there screenshots available?
http://wxcode.sourceforge.net/components/freechart/
In screenshots section.

Posted: Sat Dec 05, 2009 1:16 pm
by orbitcowboy
MAB wrote:
orbitcowboy wrote:Are there screenshots available?
http://wxcode.sourceforge.net/components/freechart/
In screenshots section.
Thanks, i have asked because this site is not available:

(see screenshot)

Posted: Sat Dec 05, 2009 10:25 pm
by jfouche
I use it and love it. One thing is really missing, in my point of view : manage mouse event to have information about x/y values of mouse position.
May be it's possible to extend this facility by the user himself (but I don't know how).

Posted: Sun Dec 06, 2009 3:22 am
by MAB
orbitcowboy wrote:
MAB wrote:
orbitcowboy wrote:Are there screenshots available?
http://wxcode.sourceforge.net/components/freechart/
In screenshots section.
Thanks, i have asked because this site is not available:

(see screenshot)
Yes, this problem exists, when you click on "screenshots" link. :-( Please see screenshots section, and click on screenshot thumbnails. :-)

Posted: Sun Dec 06, 2009 3:25 am
by MAB
jfouche wrote:I use it and love it. One thing is really missing, in my point of view : manage mouse event to have information about x/y values of mouse position.
May be it's possible to extend this facility by the user himself (but I don't know how).
Yes, it's possible. But it need additional code.
First you need to translate mouse position to chart data coordinate space, by calling AxisPlot::ToData.

Posted: Sun Dec 06, 2009 3:05 pm
by MAB
http://mab72.livejournal.com/1607.html
Here is tutorial for creating simple xy chart.

Posted: Mon Dec 07, 2009 7:05 pm
by timg
Can it do log axis also? Or just linear?

Posted: Tue Dec 08, 2009 3:20 pm
by JenT
jfouche wrote:I use it and love it. One thing is really missing, in my point of view : manage mouse event to have information about x/y values of mouse position.
May be it's possible to extend this facility by the user himself (but I don't know how).
Ya,this function is good idea.
I use it for candlesticks chart, but as you think.
Miss:manage mouse event to hit bar of chart and to show something

:o

Posted: Tue Dec 08, 2009 3:20 pm
by JenT
jfouche wrote:I use it and love it. One thing is really missing, in my point of view : manage mouse event to have information about x/y values of mouse position.
May be it's possible to extend this facility by the user himself (but I don't know how).
Ya,this function is good idea.
I use it for candlesticks chart, but as you think.
Miss:manage mouse event to hit bar of chart and to show something

:o

Posted: Wed Dec 09, 2009 6:44 am
by MAB
timg wrote:Can it do log axis also? Or just linear?
Log - mean logarithmic? Logarithmic axis is in future plans. :)
Today only linear axis supported.

Posted: Wed Feb 17, 2010 4:16 pm
by MAB
Yesterday i made new wxFreeChart release, where added logarithmic axes, data markers, XY dynamic dataset. Dll export problems were fixed.