Login Register

Getting off the ground..with charts

I was off to a good start with my project (dojox chartin improvements) with the candle plot. We basically followed the same model as in columns and did it.
Actually it's clustered columns. I don't know whether this is a valid thing in these type of plots... Anyway I thought is a nice feature to add so that you can actually add more than one series
Add Series for chart looked something like below...

chart.addSeries("Series A", [{lx:1,lq:2,md:3,uq:9,ux:10},{lx:1,lq:2,md:3,uq:7,ux:8}]);

But Eugene Suggested that it would be more appropriate to have long names like..

chart.addSeries("Series A", [{low:1,open:2,median:3,close:9,high:10},{low:1,open:2,median:3,close:7,high:8}]);

I also feel like that is a better way except for taking up little more space which is bad! Anyway your suggestions are most welcomed!
So here is the sample screen....
Candle Plot
Also you may call this box or finacial plot too. Eventhough I can't find any differences you might.. So please comment if you want to add/remove/modify any features..

AttachmentSize
CandlePlot7.54 KB

It's great to see graph

It's great to see graph additions like this. I'm really looking forward to playing with the final product!

I recommend long names. It's a few more characters, but the code readability is much, much better.