Re: [Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-17 Thread Fabien Bodard
Lol, this was an old not corrected bug. Since that I've learn how to manage multiple class instance. Gb.chart have more than 5 year. And was a proof of concept. Now I want to make an independant component. We have doing the same for xml too witch is not based on libxml like the majority of other

Re: [Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-16 Thread Randall Morgan
Be sure to allow for more than one graph on a plot and for multiple plots per window. Or maybe building a gnuplot component would be the way to go to get a more robust system. On Wed, Oct 16, 2013 at 7:22 AM, Fabien Bodard wrote: > Well, so after reading and reading again about gnuplot, and Mat

Re: [Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-16 Thread Fabien Bodard
Well, so after reading and reading again about gnuplot, and MathGL (that is a good lib too), i've made my own opinion. What we need is nor the beauty of a spreadsheet tool, nor the power of a scientist renderer. I think there is a place for a simple tool in gambas that allow to draw basic 1D, 2D gr

Re: [Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-14 Thread richard terry
As I've previously mentioned we use gnuPlot with great success, shell out the data and get back the path to the png image generated to display where you want. regards richard On 14/10/13 17:30, Randall Morgan wrote: > NO, I allow python to open the chart window so it floats above the Gambas >

Re: [Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-14 Thread Fabien Bodard
I will work on that in 2 week to one month. I need to finish to harvest my grappes before and then finish the new report layout function. Well to all those are interesting. A first question : Is the structure for set the data to the chart is enouth easy to use and complete ? Then can you give me

Re: [Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-14 Thread Alberto Caballero
Ok, thanks! I will try to build a Gambas bar chart, just to check it works and then I suppose I will have to move to anything else in order to show different charts at the same time. Regards! Alberto 2013/10/14 Randall Morgan > NO, I allow python to open the chart window so it floats above t

Re: [Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-13 Thread Randall Morgan
NO, I allow python to open the chart window so it floats above the Gambas application. Same with Octave. On Sun, Oct 13, 2013 at 11:21 PM, Alberto Caballero wrote: > Hi Randall, > > Thanks for your advice. Do you then integrate the Python chart into the > Gambas application? How do you draw it

Re: [Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-13 Thread Alberto Caballero
Hi Randall, Thanks for your advice. Do you then integrate the Python chart into the Gambas application? How do you draw it inside a DrawingArea? Regards, Alberto 2013/10/13 Randall Morgan > I have been successful in using both Python and Octave for charting. > Basically, you write out your d

Re: [Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-13 Thread Randall Morgan
I have been successful in using both Python and Octave for charting. Basically, you write out your data into a file and then write a python or octave script and call it passing your data file. One note, use full paths as Gambas will prefix and relative path with the Gambas application's directory.

[Gambas-user] Charts in Gambas: alternatives to "Chart"

2013-10-13 Thread Alberto Caballero
Hi all, I am having many problems for showing several charts within my application using Gambas "Chart" object. It seems that there is some shared memory between all Chart objects defined. I was wondering if there is any other alternative for showing lines and bar charts in Gambas. Any other libr