Raphaël is a small JavaScript library that should simplify your work with vector graphics on the web. In case you want to create your own specific chart or image crop-n-rotate widget, you can simply achieve it with this library.
Raphaël uses SVG and VML as a base for graphics creation. Because of that every created object is a DOM object so you can attach JavaScript event handlers or modify objects later. Raphaël’s goal is to provide an adapter that will make drawing cross-browser and easy. Currently library supports Firefox 3.0+, Safari 3.0+, Opera 9.5+ and Internet Explorer 6.0+.
## How to use it?
Download and include raphael.js into your HTML page, then use it as simply as:
// Creates canvas 320 × 200 at 10, 50
var paper = Raphael(10, 50, 320, 200);
// Creates circle at x = 50, y = 40, with radius 10
var circle = paper.circle(50, 40, 10);
// Sets the fill attribute of the circle to red (#f00)
circle.attr("fill", "#f00");
// Sets the stroke attribute of the circle to white (#fff)
circle.attr("stroke", "#fff");
## Reference
### Main Function
#### Raphael
Function that creates a canvas on which to draw.
##### Parameters
1. container HTMLElement or string
2. width number
3. height number
or
1. x number
2. y number
3. width number
4. height number
##### Usage
// Creates canvas 320 × 200 at 10, 50
var paper = Raphael(10, 50, 320, 200);
var paper = Raphael(document.getElementById("notepad"), 320, 200);
var paper = Raphael("notepad", 320, 200);
### Element’s generic methods
Each object created on the canvas share the same generic methods:
#### node
Gives you reference to DOM object, so you can assign event handlers or just randomly mess around.
##### Usage
var c = paper.circle(10, 10, 10);
c.node.onclick = function () { c.attr("fill", "red"); };
#### rotate
Rotates element by given degree around its center.
##### Parameters
1. degree number Degree of rotation (0 – 360°)
2. isAbsolute boolean [optional] Will rotation be relative or absolute
##### Usage
var c = paper.circle(10, 10, 10);
c.rotate(45);
#### translate
Moves element around the canvas by given dimensions.