Nabab
Nabab

Reputation: 2644

Creating a complex interactive wheel as a web app

How would you do to create a chart like this, interactive (i.e. with links and tooltips), in an HTML page?

enter image description here

From what I know about SVG I think it's the right direction to take (no Flash anyway), but I'd like to know what would be the path you'd take first in order to have an interactive chart looking like this on a web page.

I'm not asking for the details but just where to begin to look. I know JavaScript quite well, but I have never dealt with any SVG libraries.

Upvotes: 0

Views: 1199

Answers (2)

goat
goat

Reputation: 31813

checkout d3.js examples, this example looks very close to your pic.

Upvotes: 3

Mehdi Yeganeh
Mehdi Yeganeh

Reputation: 2129

I offer to use Raphael library (http://raphaeljs.com/) and if you like to make more complex or using 3d objects you can use webgl with treejs library (http://threejs.org/) .. you can find example and demo for charts or other documents in websites..

Upvotes: 1

Related Questions