What would be the best method for creating graphs in HTML/JavaScript if the minimum browser support is IE9, Chrome 16, FF 13, Safari 5.1.& Opera 10 ? SVG or Canvas ?
Google Charts ?
What would be the best method for creating graphs in HTML/JavaScript if the minimum
Share
Going by https://stackoverflow.com/a/1651167/138772 and http://dev.opera.com/articles/view/svg-or-canvas-choosing-between-the-two/:
So basically, use SVG if you want to have nice vectored graphs and the ability to manipulate them via the DOM, but use Canvas if you just want them drawn and don’t need the vectoring (you could probably set it up so it would scale to the page/window size, anyway) or DOM usage. Personally I’d recommend SVG, though, as I like vector graphics.