Tagged Questions

Raphaël is a cross platform JavaScript library for outputting vector graphics in both standards compliant SVG (for Firefox, Chrome...) and VML for Internet Explorer.

learn more… | top users | synonyms (1)

118
votes
11answers
44k views

jQuery SVG vs. Raphael

I'm working on an interactive interface using SVG and JavaScript/jQuery, and I'm trying to decide between Raphael and jQuery SVG. I'd like to know What the trade-offs are between the two Where the ...
35
votes
6answers
21k views

Raphael JS Tutorial

My first impression on Raphael JS is so tempting, where should I go to learn more, other than its website?
16
votes
4answers
4k views

How can I combine objects in the Raphael javascript library?

Sorry for a long question but here goes. I am trying to modify the drag shapes around demo here: http://raphaeljs.com/graffle.html The demo works fine. What I want to do is put words inside the ...
11
votes
4answers
3k views

Scaling SVG (Raphael.js) like an SWF

I started using Raphael.js a few days ago and I'm really enjoying it. The only thing I haven't been able to figure out is how to get the "paper" or svg/vml tag to fill the browser window like an swf. ...
11
votes
3answers
6k views

Graphael line chart

Is there a good tutorial for Graphael (special line charts), I currently trying to implement such a graph with grafael http://www.highcharts.com/demo/?example=line-time-series&theme=default ...
11
votes
2answers
4k views

Raphael JS and Text positioning?

I'm trying to position text within the SVG canvas, by supplying x, y coordinates var t = paper.text(50, 50, "Raphaël\nkicks\nbutt!"); but does not position the text like all other objects... x, y ...
10
votes
1answer
291 views

SVG draws outside canvas boundary in Internet Explorer 9

I am using the Raphael Javascript library to do some rudimentary drawing for a web page. I am just drawing some lines that radiate out from a point. In Chrome, Firefox, and Opera, these lines are ...
10
votes
1answer
3k views

How to convert Illustrator or Inkscape SVG drawings into Raphael.js objects?

I am trying to figure out the best most reliable way to convert my SVG drawings from Illustrator or Inkscape into Raphael.js object code. I suppose I am looking for some type of parser but do not know ...
10
votes
1answer
3k views

How to modify raphael text?

After instantiating Raphael text like so var t = paper.text(50, 50, "Raphaël\nkicks\nbutt!"); how do I go about then modifying that text? t.text = "test"; did not work for me.
9
votes
3answers
628 views

Making vector points blink using Raphael and Javascript

I'm using the Raphael JS library, and I'm trying to figure out how to make a point appear on screen, then disappear. I use a for loop to create the points, and then I make them fade in. Is there a ...
9
votes
1answer
3k views

SVG animation along path with Raphael

I have a rather interesting issue with SVG animation. I am animating along a circular path using Raphael obj = canvas.circle(x, y, size); path = canvas.circlePath(x, y, radius); path ...
9
votes
5answers
8k views

Painting shapes in Javascript

Is there any good alternative to the html5-element canvas to paint shapes like hexagons using javascript, that works cross-browser (including the horrible IE6)? I have been using jQuery and jQuery ...
8
votes
4answers
1k views

Why won't my Raphael JS animation loop?

Hi there I've made this animation using the Raphael framework. I want the star (logoStar) to spin indefinitely but it only runs once. Can anyone help? Thanks window.onload = function () { ...
8
votes
2answers
3k views

How to do a tooltip on an SVG generated by Raphael

I'm doing a bit of a pedagogical exercise, converting XML to SVG with XSLT, Javascript and Raphael. I'm sure it's the hard way...but it's educational. The problem I've run into is creating tooltips. ...
8
votes
1answer
2k views

How to either determine SVG text box width, or force line breaks after 'x' characters?

I'm creating an SVG text box using the Raphael library, and filling it with a dynamic string which is extracted from an XML document. Sometimes, this string is longer than the canvas I am placing the ...
7
votes
6answers
3k views

Making paths and images dragable in Raphael js

Is it possible to be able to drag and drop objects other than just circles and rectangles around a page using Raphael js? I want to add in paths and images which you can then move around but its ...
7
votes
1answer
2k views

Raphael canvas filling a container div

Instead of specifying the width and height of a Raphael canvas, I need it to be 100% the size of its container. So I could just do a Raphael("container", containerElement.width, ...
7
votes
3answers
1k views

Saving raphaeljs image as png on Internet Explorer

I have some nice graphics done using raphaeljs and I want to add a feature to save it as a PNG. This is simple on every browser except IE because on non-IE browsers I get SVG as an output from ...
7
votes
3answers
3k views

How can one add drop shadows to Raphael.js objects?

I would like to find out how to add blurry edged drop shadows to Raphael.js objects/paths. As far as I know it is not possible with the library as is but is there a work around?
7
votes
3answers
1k views

Move active element loses mouseout event in internet explorer

In a library I am using I have the task of moving an element to the front of the dom when it is hovered over. (I make it bigger so I need to see it, then shrink it back when mouse out). The library I ...
7
votes
2answers
3k views

What are the pros and cons of HTML5 Canvas vs. SVG + Raphael.js?

I just started a project using the Canvas. But one of the things I need is to keep track of movable, clickable boxes as in this example : http://raphaeljs.com/graffle.html so I'm wondering if ...
7
votes
4answers
5k views

Raphael js text positioning: centering text in a circle

I am using Raphael js to draw circled numbers. The problem is that each number has a different width/height so using one set of coordinates to center the text isn't working. The text displays ...
6
votes
2answers
108 views

memory leak on game loop

I am creating a game in javascript and my gameloop is called every 30ms, it leaks a lot of memory as task manager shows the firefox memory usage to increase by 400mb in about 20 seconds. I am not ...
6
votes
1answer
257 views

Why this code does not work on IE 8?

Could anyone help me to figure out why this code does not work on IE 8 ? (It works on Chrome, firefox, Opera). The code use Raphäel.js library, the code allow user to mouse drag Raphäel.js elements ...
6
votes
3answers
1k views

how to add a css class to a Raphael object

I'm trying to create a webpage which using a lot of Raphael objects like lines, rectangles, circle. I'm using different colors for each of the event on these objects like onmouseover one color, ...
6
votes
3answers
2k views

Raphael canvas(background) onclick event

I have been working with Raphael to create drag and drop shapes on a canvas. I do this using the .drag() function (supplied in the Raphael framework) along with my event functions. I have no issues ...
6
votes
6answers
1k views

Creating a linear transparent gradient to a div

I'd like to create a linear transparent gradient to a div. Is there any way to do that with jquery? Or should I use some other library like raphaeljs? I'd like to achieve an effect like the following: ...
6
votes
4answers
4k views

Combining Raphael and jQuery to achieve browser compatibility

Having discovered that IE does not handle javascript onmouseout, I determined to use jQuery instead so the cross-browser compatibility would be taken care of automatically. I am making an area defined ...
6
votes
1answer
894 views

Raphael JS — animate .text()

So I'm using Raphael JS to try and animate. Here's what I've tried: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> ...
6
votes
4answers
3k views

What is the best way of converting SVG file into Raphaël?

I'm trying to open simple vector graphics using Raphaël JS and I can't find any converter that would do the whole job. Is there any way to transfer vector graphics (SVG or anything from Illustrator, ...
6
votes
3answers
2k views

Simplest way to clear a container using raphaeljs javascript graphical library

I have to clear and redraw a raphael javascript main container. I've tried with var paper = Raphael(10, 50, 320, 200); paper.remove(); // Doesn't work paper.node.removeNode(); //this neither ...
6
votes
2answers
4k views

How to create gradient object with Raphael

I was trying to use Raphael JS graphics library. I would like to use the attribute gradient which should accept an object. Documentation says to refer to SVG specs. I found the gradient object in SVG, ...
5
votes
2answers
184 views

Making a furniture layout tool, need some advice

I am making a web application that will mostly take place client side and have the data processed and stored on the server side (PHP/MySQL). The app lets you add different pieces of furniture to a ...
5
votes
1answer
268 views

direct canvas panning with raphael.js

i'm trying to do an app that when u click outside a figure it let you pan the viewport using setviewbox(); i have done something close to it, but i'm not pleased with it, i'm using a rectangle: ...
5
votes
2answers
605 views

backbone.js & raphäel.js / Backbone View <-> Raphäel Object

And now, for something complete different. How can I delegate events in a backbone view when the "dom" object is a raphäel object. Does that work at all? Like this: var NodeView = ...
5
votes
6answers
4k views

How to draw a vector path progressively? (Raphael.js)

How to animate a vector path like it's being drawn, progressively? In other words, slowly show the path pixel by pixel. I'm using Raphaël.js, but if your answer is not library specific—like maybe ...
5
votes
2answers
1k views

raphael js and real-time graph

i have used http://cristian.nexcess.net/ajax/svg_chart/ demo to create real-time graphs, but want to know if i can use raphael js to create similar line charts ? has anyone tried real-time graphs ...
5
votes
3answers
1k views

Raphael JS Implementing a “Pencil” tool efficiently

I am working on a project that requires end users to be able draw in the browser much like svg-edit and send SVG data to the server for processing. I've started playing with the Raphael framework and ...
5
votes
2answers
2k views

Problem saving as png a SVG generated by Raphael JS in a canvas

I'm trying to convert a SVG generated by Raphael JS (and the user, since you can drag and rotate the images). I followed this Conversion of SVG to Jpeg but still can't get it. It must be easy but I ...
5
votes
4answers
2k views

Random natural movement jquery

How can I recreate this type movement with jquery for images: http://www.istockphoto.com/stock-video-12805249-moving-particles-loop-soft-green-hd-1080.php I'm planning to use it as a web page ...
5
votes
2answers
1k views

Draggables and Resizables in SVG

I want to make an svg element (path, rect, or circle) be able to be draggable and give it resize handles. But unlike HTML DOM, not all elements have an upper left hand corner x,y coordinate and a ...
5
votes
1answer
764 views

Text links using Raphael in IE8

I'm having a lot of trouble getting a simple text link to work in IE8 using Raphael. I want text that behaves like a normal link. I've included some code below that I have been playing with. Got ...
5
votes
3answers
951 views

Programatically generate PNG from Raphael.JS image

I'm writing an app that lets users generate images with Raphael.JS. One of the secondary features I want is to generate a PNG of the Raphael canvas. Here's the general pipeline in my head: User ...
5
votes
4answers
7k views

Zooming and panning svg images using raphael.js or some other js library

Hi there first off all thanks for looking , I am in need of a small script that will display an SVG (vector image) within a frame that has 2 functions; 1 - The image can be panned (moved around to ...
4
votes
1answer
71 views

Resizing and dragging SVG polygons dynamically

I am struggling to find a way for resizing and dragging a svg polygon dynamically with the mouse. Unfortunately jQueryUi does not work for svg elements. I also checked the Raphael library, but cant ...
4
votes
1answer
70 views

Is there a way to transform a Raphael paper result to PNG/SVG in any browser (including older IEs)?

I've seen a lot of people fighting with this matter, but I can't find a proper solution, nor one that fit my needs. I'm doing some charts with Raphael, and I basically need to get them as PNG (for ...
4
votes
1answer
121 views

JavaScript draw database schema

I have the need to display a couple of database tables' structure (4-5 tops) in a HTML page. I have to show the columns, mark the primary key and also draw the foreign keys connections (arrows I ...
4
votes
1answer
196 views

Bezier curve with three handles misplaces the control points

I managed to draw four different curves with the examples of the Raphael library. Now, I would like to create a single curve with multiple handles in it. How do I add more handles in this example. ...
4
votes
1answer
143 views

register a font with Raphael using CSS3 @font-face

In my pages I often use custom fonts with the Raphaël .print with the .getFont. for SVG text, and the CSS3 @font-face (with Font Squirrel kits) for normal text. Is maybe possible to automatically ...
4
votes
2answers
483 views

Draw good-looking Bezier Curve through random points

I'm using javascript with RaphaelJS to draw a smooth line through random points in in SVG. Line goes strictly horizontally, without returning back in axis X. Currently, I'm using cubic Bezier curves ...

1 2 3 4 5 16