I m developing a new site that graphs some operational metrics. As such about a dozen charts/graphs will be displayed on the site. I want to be able to have them dynamically scale down (within reason) based upon the size of the browser.
I m debating the pros/cons of generating these as one of these options:
- SVG. Great for scaling but may have limited support,
- HTML5. Clearly a great choice for the future and for FF customers, IE?
- PNG. This would require that I regenerate the PNG based upon the size of the DIV &c.
Which is the preferable option? I m leaning towards PNG just for ubiquitous support, but would like to have client-side scaling. What is the best solution given the state of affairs of SVG and HTML5 canvas support in browsers?