vote up 8 vote down star
13

Hi, I want to include some charts on my website and I'm looking for a good cross-browser charting package - what are my options?

flag

16 Answers

vote up 16 vote down check

I prefer jQuery one:
http://code.google.com/p/flot/

Examples:
http://people.iola.dk/olau/flot/examples/

link|flag
Flot uses HTML5 Canvas so doesn't work well in IE – AutomatedTester Aug 4 at 13:08
3  
@AutomatedTester: "The plugin is known to work with Internet Explorer 6/7/8 (IE8 only in development version), Firefox 2.x+, Safari 3.0+, Opera 9.5+ and Konqueror 4.x+. If you find a problem, please report it. Drawing is done with the canvas tag introduced by Safari and now available on all major browsers, except Internet Explorer where the excanvas Javascript emulation helper is used." From the first link in the answer. – voyager Aug 4 at 13:10
I like the jQuery ones as well - eye-catching and clear. I am looking at these examples in IE7 and they look okay to me. – shambleh Aug 4 at 13:32
And if javascript is disabled? – F5ToDebug Aug 5 at 11:49
1  
Flot works fine in IE6 and up. Well, slowish, but fine for most charts. That's what Stack Overflow uses. – Nosredna Aug 14 at 0:50
vote up 12 vote down

Google Chart API is really powerful, and unlike flot does not rely on javascript being enabled.

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

link|flag
1  
Thanks,this one is nice. – Andrejs Cainikovs Aug 4 at 13:09
I like this but I just don't like the way I can't download it and put it on my own server. – DLauer Aug 15 at 13:21
Browser cache my friend... browser cache. That or look at whats retreived in firebug's NET tab. – Zoidberg Aug 19 at 13:13
vote up 10 vote down

Can you be a bit more descriptive about what style charts you're looking for? Simple charts like line, bar and pie graphs are understandably more widely implemented. If you're looking for more complex ones such as gantt, sparklines or real-time / data streaming charts it narrows your options substantially.

As far as being cross browser compatible, flash and HTML canvas are both pretty well supported and most people will be able to view the charts if you use either method of delivery.

There are several free flash charting solutions that work superbly well.

XML/SWF Charts is free to download and use. The free, unregistered version contains all the features except for:

- Clicking a chart takes the user to the XML/SWF Charts web site. 
- No displaying charts inside another flash file.
- No technical support, and no product updates by e-mail.

« The click redirect makes me prefer fusioncharts

Then as Justin Niessner mentioned, there is also Open Flash Chart.

If you prefer to go the HTML Canvas route, try: - http://code.google.com/p/flot/ (as mentioned by Andrejs Cainikovs) - http://www.liquidx.net/plotkit/

If you're using PHP, here's one : http://naku.dohcrew.com/libchart/

If None of the Above are a viable option and you want a really simple chart (bar, line) then consider using CSS charts:

link|flag
vote up 6 vote down

Not quite charting, but lightweight SVG/VRML cross-browser graphic library: raphaeljs.com.

Very easy to make charts.

link|flag
That's pretty cool looking. – DLauer Aug 15 at 12:45
vote up 2 vote down

If you consider Flash to be cross browser and don't mind spending some money this is a good option:

http://www.fusioncharts.com/

link|flag
Well, except for mobile, I guess Flash is cross-browser. Some of the JavaScript ones work on iPhone. – Nosredna Aug 14 at 0:49
vote up 2 vote down

Why don't you try the jQuery Visualize plugin. It's very simple to implement, all you need is a table with your data in and then in JavaScript call the plugin and bam it'll work.

For cross-browser support they say:

We have tested this plugin in the following browsers: IE6, IE7, IE8, Firefox 2, Firefox 3.5, Safari 3 and 4, Opera 9.

link|flag
vote up 2 vote down

Got to go with gchart.

I've used this in several browsers.

Short tutorial.

link|flag
Nice - hadn't heard of this - GWT charts with no round-trips. – DLauer Aug 18 at 15:54
vote up 1 vote down

If it's possible for your project, you might also want to check out some of the Flash charting packages like Open Flash Chart.

You could also try using some of the Flex functionality.

That way no matter what browser your user is using, you're running on a consistant runtime.

link|flag
vote up 1 vote down

Flot is nice. Not the most fully-featured charting system, but it does what it does really well.

link|flag
vote up 1 vote down

Dojo charting also works OK (and uses SVG/VML rather than Canvas/ExCanvas, which means you can do funkier things with it if you look at its internals), but flot is nicer to program with imo.

link|flag
vote up 1 vote down

Another Flash & cash solution is amCharts.

link|flag
vote up 1 vote down

I would second Open Flash Chart, I have used it extensively and would especially recommend the DZ patched version at OFC-2.

You can see it in use at Red5 Analytics Demo

link|flag
vote up 0 vote down

Try : http://thejit.org/

link|flag
Hm, very sexy tree-representations, shame that it seems to require a canvas object to be already created to work; a bit of a jquery outer wrapper on it to make it like flot would make it lovely. – ijw Aug 20 at 15:20
Yeah, it could use a little lovein' but it's a great set of graphs – Doomspork Aug 20 at 17:16
vote up 0 vote down

You should be able to use SVG for this. Sadly, IE can't display it without installing an unsupported third party add-in.

link|flag
Dojo's 2D graphics package, underlying their graphs, uses SVG on most browsers and VML on IE. There may be other similar implementations around. – ijw Aug 20 at 15:03
Indeed, thevs' answer above mentions another. – ijw Aug 20 at 15:06
And one more comment for luck: Google's got an 'SVG for IE' plugin, keep an eye out for people writing graphics packages that target that rather than canvas/excanvas. For graphing, SVG is more appropriate than canvas. – ijw Aug 26 at 17:04
vote up 0 vote down

SQL Reporting Services

link|flag
vote up 0 vote down

For true cross-browser support I would recommend image graphs generated on the server.

If this isn't attainable use Flash-based plugins. This is the most widely-supported clientside solution. Otherwise resort to Javascript - it may require HTML5, or non-IE browsers, or ..

If you're seeking a simple graph in HTML table see here. Far from recommended though!

link|flag
The HTML graph has its uses. Specifically, if you'r e trying to do a 100-column bar graph - and yes, it does have its uses - then doing it horizontally is fine, because you expect it to run off-page and scroll, and doing it with images is distinctly not fine, because the image ends up huge. – ijw Aug 20 at 15:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.