Hi all,
The first working version of AidaCharts is available here: http://mc.bioskop.fr/AidaCharts Lines, Bars, Points charts and some options are already working. Charts work like any other elements. You can test test it in your applications: | e chart | e := WebElement new. chart := WebChart new addData: {1@2. 2@3. 3@4. 4@5} label: 'label1'; addData: {1@4. 2@3. 3@1. 4@2. 5@3} label: 'label2'. chart legend show: true; position: 'nw'. charts lines show: true; lineWidth: 3. e add: chart. Or if you just want something simple: e := WebElement new. chart := WebChart new addData: {1@2. 2@3. 3@4. 4@5}. e add: chart Cheers! Nico -- Nicolas Petton http://nico.aidaweb.si ___ ooooooo OOOOOOOOO |Smalltalk| OOOOOOOOO ooooooo \ / [|] -------------------------------- Ma clé PGP est disponible ici : http://nico.aidaweb.si/pgp-key.html _______________________________________________ Aida mailing list [hidden email] http://lists.aidaweb.si/mailman/listinfo/aida |
Very nice, Nico! What are your next plans now?
Janko nico wrote: > Hi all, > > The first working version of AidaCharts is available here: > http://mc.bioskop.fr/AidaCharts > > > Lines, Bars, Points charts and some options are already working. > > Charts work like any other elements. > You can test test it in your applications: > > | e chart | > > e := WebElement new. > chart := WebChart new > addData: {1@2. 2@3. 3@4. 4@5} label: 'label1'; > addData: {1@4. 2@3. 3@1. 4@2. 5@3} label: 'label2'. > chart legend > show: true; > position: 'nw'. > charts lines > show: true; > lineWidth: 3. > e add: chart. > > Or if you just want something simple: > > e := WebElement new. > chart := WebChart new addData: {1@2. 2@3. 3@4. 4@5}. > e add: chart > > > Cheers! > > Nico > > > ------------------------------------------------------------------------ > > > ------------------------------------------------------------------------ > > _______________________________________________ > Aida mailing list > [hidden email] > http://lists.aidaweb.si/mailman/listinfo/aida -- Janko Mivšek AIDA/Web Smalltalk Web Application Server http://www.aidaweb.si _______________________________________________ Aida mailing list [hidden email] http://lists.aidaweb.si/mailman/listinfo/aida |
In reply to this post by Nicolas Petton
Hi,
yeah, looks really nice. Some ideas as brainstorming: for the practice it would be very helpful if you could give the data for one axis as one *plain* data lists. And for the future: lets say you have 3 data lists, but a 2D diagramm, it would be extreamly great if you could use the 3rd list for plotting someting for every point: its size, error bars, color.... really good for statistic applications :-) Great work ! Hans Am 19.11.2008 um 19:27 schrieb nico: > Hi all, > > The first working version of AidaCharts is available here: > http://mc.bioskop.fr/AidaCharts > > > Lines, Bars, Points charts and some options are already working. > > Charts work like any other elements. > You can test test it in your applications: > > | e chart | > > e := WebElement new. > chart := WebChart new > addData: {1@2. 2@3. 3@4. 4@5} label: 'label1'; > addData: {1@4. 2@3. 3@1. 4@2. 5@3} label: 'label2'. > chart legend > show: true; > position: 'nw'. > charts lines > show: true; > lineWidth: 3. > e add: chart. > > Or if you just want something simple: > > e := WebElement new. > chart := WebChart new addData: {1@2. 2@3. 3@4. 4@5}. > e add: chart > > > Cheers! > > Nico > -- > Nicolas Petton > http://nico.aidaweb.si > ___ > ooooooo > OOOOOOOOO > |Smalltalk| > OOOOOOOOO > ooooooo > \ / > [|] > -------------------------------- > Ma clé PGP est disponible ici : > http://nico.aidaweb.si/pgp-key.html > <Capture-1.png>_______________________________________________ > Aida mailing list > [hidden email] > http://lists.aidaweb.si/mailman/listinfo/aida _______________________________________________ Aida mailing list [hidden email] http://lists.aidaweb.si/mailman/listinfo/aida |
In reply to this post by Janko Mivšek
Hi,
I just published a new version of AidaCharts on http://mc.bioskop.fr. This version adds bug fixes, and important new features, like Pie chart now working, and a lot of chart options has been added. I think this version is quite stable already, and most if not all features of the js library are now working. I also added a demo application, but if like me you are somtimes to lazy to try someone else's code, I will put the demo online soon :) Next step: zoom feature and Control charts! Cheers! Nico -- Nicolas Petton http://nico.aidaweb.si ___ ooooooo OOOOOOOOO |Smalltalk| OOOOOOOOO ooooooo \ / [|] -------------------------------- Ma clé PGP est disponible ici : http://nico.aidaweb.si/pgp-key.html _______________________________________________ Aida mailing list [hidden email] http://lists.aidaweb.si/mailman/listinfo/aida signature.asc (204 bytes) Download Attachment |
Free forum by Nabble | Edit this page |