views:

91

answers:

6

I need to create chart using javascript. should be look like as in link below (click play to see chart sample):

Please suggest me which control should i use/purchase, which allows me to create chart in such style shown in link. chart data will be in xml format and i am asp.net developer thanks

+1  A: 

Google charts have a good api and are free.

http://code.google.com/apis/chart/

Q_the_dreadlocked_ninja
+1  A: 

If you are looking for JS candlestick charts, jQPlot has them.

If you want to look at other options, here's a list of JS charts:
http://www.splashnology.com/blog/javascripts/290.html

Some of these are also interactive. If I remember correctly, StackOverflow uses Flot for the reputation graph.

NullUserException
A: 

The best option, in my opinion is Google Api Chart. Easy to learn and usefully as said Q_the_novice.

Fredy87
A: 

I personally like YUI for charting (at least YUI2). I wrote a tutorial on using YUI to create charts, which you can see here:

http://www.devseo.co.uk/blog/view/using-the-yui-chart-component

It's fundamentally easy to do, the charts are drawn in flash and you can customise most of their look and feel. Read more:

http://developer.yahoo.com/yui/charts/

Alex
+1  A: 

For charting in HTML5 pages is good to use javascript library. I recomand these charting.

this one is like your charting.. http://www.jqplot.com/tests/OHLCTests.php http://code.google.com/apis/chart/docs/gallery/compound_charts.html#candlestick_charts

Others http://www.splashnology.com/blog/javascripts/290.html http://www.highcharts.com/ http://developer.yahoo.com/yui/examples/charts/index.html

J S Jodha
+1  A: 

Just have to sneak my favorite answer in here: Raphael.js and it's charting plugin, gRaphael

Ryan Kinal