Reputation: 3538
Does anyone know a good resource that I can use in the browser that will handle contour plots. I am already using Highcharts and have looked at dojo's dojox/charting, both of which are excellent but don't give me an out of the box contour plot charting solution. Others such as flot also have similar limitations.
I have been largely JavaScript focused and am avoiding Flash or similar plugins, but am open to other options. I'd rather not create the images, svg, etc on the server and then use them in the client.
My main aim is to give the user some interaction with a contour plot, with clickable areas for example, and dynamic data binding, otherwise I'd probably go for the server side approach.
I've also been avoiding 3D options as this does not fit my requirements for data visualisation.
Upvotes: 3
Views: 905
Reputation: 5020
D3 allows to make some kind of contour plots: http://bl.ocks.org/4241134
Upvotes: 1