Raphaël is a cross platform JavaScript library for outputting vector graphics in both standards compliant SVG (for Firefox, Chrome, Internet Explorer 9+ ...) and VML for older versions of Internet Explorer.
1
vote
1answer
19 views
Zooming specific elemens on paper
How can i zoom in the specific symbols on the paper. What I mean is, I can able to zoom whole page, but now I want to zoom in the specific elements.
While googling I found one example. However in ...
0
votes
0answers
21 views
Change image (svg) on click
I'm trying out Raphael + vectron, and i'm trying to change a svg image with a button click.
This is (of course) not possible due to that when the svg is rendered it's rendered as path:
<path ...
0
votes
0answers
13 views
setViewBox() in Raphael?
Fiddle!!
I have set this fiddle up to show what parameters are going into the setViewBox() function. The thing is, the way it is working makes no sense to me.
Why does setViewBox(0, 0, 625, 625) ...
0
votes
0answers
11 views
g.raphael : how to animate bar chart height?
is there any option to increase bar chart as animation from 0 to ?
bars.animate({'stroke':"#FF0"},1000); this can change attributes. Actually I need to change value of bar chart height and also ...
0
votes
2answers
31 views
Distort or shear or skew an image - Raphael, JavaScript or PHP
I am trying to distort/shear/skew an image something like this:
I am using Raphael Javascript Library to do it. But i found Raphael very tough. I saw some websites that are using Raphael Library ...
0
votes
0answers
15 views
g.raphael : how to put title one bar chart?
is there any option to put title with bar chart ?
the reason why I can't put text() on it because bar is going to be increasing animation
DEMO
0
votes
2answers
31 views
gRaphael : How to make border color for barchat?
Is there any solution to make border-color for bar chart in g.raphael ?
Here is my script
efficiency.barchart(0, 200, 400, 150, [
[10, 5, 32, 13, 2, 55, 8]
], {
vgutter: 0,
colors: ...
0
votes
2answers
31 views
SVG - crescent shape in raphael
I have a circle with a half circle in it which I'm going to use to create a shine effect - what I'd really like to do is make it a crescent shape
Does anybody know how to make the half circle a ...
0
votes
0answers
11 views
gRaphael : how to build responsive graph in gRaphaël?
is there any solution for Raphael to make responsive barchart ?
var efficiency = Raphael("overview", 600, 400);
efficiency.barchart(7, 10, 450, 290, [
[55, 20, 13, 32, 5, 1, 10],
[10, 5, 32, ...
0
votes
1answer
18 views
SVG get circle position in raphel
In the example (code below) http://raphaeljs.com/hand.html how do I get the circle position? if I do obj.attr.("cx") I get the same cx for each one because the code sets the angle not the actual ...
0
votes
0answers
27 views
Applying CSS style to Raphaël path elements using jQuery
I'm drawing a shape using Raphaël JS's path element. I want to apply a background image to this element using jQuery. Here's what I tried
leaf = paper.path("M"+leafStartPoint+" c0,0 -30,0 -30,-30 ...
0
votes
2answers
22 views
Clearing Raphael canvas on button click
I have a combo countdown timer using Raphael circular pie-chart countdown + a digit timer, running when the button #Timer60SecStart is clicked. I am cheating a bit here, the Raphael animation is ...
1
vote
0answers
38 views
SVG with pattern and image element conversion to PNG Image failed
I am trying to covert svg generated with Raphael.js into PNG image. Well, I converted the svg into image when svg has no pattern and image component. Then again when I add these two component into SVG ...
0
votes
1answer
24 views
Get subpath in Raphael.js between two points, not positions
I have a path in Raphael.js which is a bezier curve. Two lines intersect this path. I can get the points of the intersections with Raphael.pathIntersection(). I want to get the path string for the ...
0
votes
2answers
24 views
Raphael - Hover Animation
Im trying to have a little animation when you hover over raphael elements.
See Example here:
http://jsfiddle.net/GVEqf/24/
When you hover over the square it scales up and when you stop hovering it ...
0
votes
0answers
35 views
merge images from Raphael svg
I'm trying to create a page
Step 1 - Let users upload images through Ajax, Raphael and Raphael freetransform.
Step 2 - Click button to show one image from merge upload images. (problem here)
I have ...
1
vote
2answers
40 views
Raphael transform object diagonally and infinite setIntervals
I'm working on a small animation where the user drags a circle and the circle returns back to the starting point. I figured out a way to have the circle return to the starting point. The only problem ...
-1
votes
0answers
5 views
How to convert svg path and filled image to image? [closed]
I need to convert this one :
<path id="path_1" style="cursor: pointer;" fill="#ffffff" stroke="#000000" ...
4
votes
1answer
31 views
Why can't I see the colors on the Raphael.js pie chart demo?
I've replicated the Raphael pie chart demo at http://jsfiddle.net/s6dEW/:
Raphael.fn.pieChart = function (cx, cy, r, values, labels, stroke) {
var paper = this,
rad = Math.PI / 180,
...
0
votes
2answers
44 views
use raphael animations on images
following situation:
i have a raphael.js circle and when im clicking its popping out big. that easing effects makes it look like a charm
circle = paper.circle(1000, 500, 25);
circle.click(function() ...
0
votes
0answers
31 views
Transform out of position on drag
I'm using RaphaelJS and the FreeTransform-plugin.
When i'm dragging an element, I want to do something but when I use the following code, the freetransform-handles our out of position:
var paper = ...
0
votes
2answers
50 views
finding point in SVG after transform
I have a set of paths that i have created a geographical map with in inkscape and used Raphael to put on a webpage. When i load them through Raphael i am applying a transform so that the map fills the ...
0
votes
2answers
42 views
How to use SVG code converted to Raphaël JS on a web page?
I have seen several threads that adress this question but nothing that really solves my problem. I have a SVG file with Finland counties.. What I want to do is map like this: ...
0
votes
1answer
27 views
Raphael.js how to find click on path's stroke?
How can I find out with Raphael.js (when the user click on a SVG path) the click was on the stroke?
Here is the path:
var polycoords = [['M',10,10],['L',30,10],['L',35,50],['L',5,45],['Z]];
var poly ...
-1
votes
1answer
29 views
How to add events like onClick on SVG image placed over normal <img > tag in HTML code
/* here i just have an image with a svg over it */
<!DOCTYPE html>
<html>
<body>
<div>
<img src="test.jpg" alt="Shirt Image" />
...
0
votes
2answers
21 views
Raphael.js how to find degrees between coordinates of last click and mouse current position?
When I click on paper I store the position in lastX and lastY values:
lastX = e.screenX;
lastY = e.screenY;
On mousemove I update the currentX and currentY values:
currentX = e.screenX;
currentY = ...
6
votes
2answers
46 views
Rapheal Pie Chart Rendering Issue in IE 9
I have got an issue in IE9 like "SVG4601: SVG Path data has incorrect format and could not be completely parsed" while drawing pie chart in HTML5 page using Raphael JS and SVG.
...
0
votes
1answer
30 views
Perfomance Issue using selectAll in ie8 and ie9
We are using selectAll function in this we are passing data to plot objects . Data contains array of 2000 elements while plotting this it's taking so much time in ie8 and while loading it ask to ...
0
votes
0answers
25 views
is it possible to shrink svg container?
Is it possible to adjust rendering of svg content on safari and chrome to resemble more ff rendering?
Problem I'm facing is that Safari 5 doesn't support pointer events on svg element, thus blocking ...
0
votes
1answer
26 views
Raphael.js how to find click position on a path?
Is there any way to access a click-on-path coordinates? And one other: is possible to find out whitch is the previous closest corner on the path?
I was read this, but not so helpful:
Raphaeljs: ...
0
votes
1answer
13 views
Raphael.js: How to unbind mousemove on set()?
I have this code with Raphael.js:
var set = paper.set();
// ... here push some elements to set: path, circles, etc.
set.mousedown(function() { ... });
set.mousemove(function() { ... });
...
0
votes
1answer
33 views
Zoom image in raphaeljs
I have a problem.
I create zooming image in canvas, but i can't transfer this in raphaeljs
How make zooming in cursor coordinats?
Raphaeljs:
http://jsfiddle.net/qCzqF/2/
function zoomTo (x,y,z) {
...
1
vote
2answers
55 views
Raphael.js - can I use .show/.hide with fade effect?
Is there a way to make element fade in or fade out using Raphael.js? My code is something like:
var elem = paper.circle(10, 10, 10)
elem.hide();
Is there an attribute to .hide() to make fade ...
0
votes
1answer
15 views
Animateing stroke-width of a path in rapahel.js
Is there a way to animate the stroke-width property of a path in Raphael.js?
I want some arc paths to increase and decrease in their width by animation.
I wrote the following code but it didn't work.
...
0
votes
1answer
36 views
How to decrease the size of the svg used in : animated skills diagram with Raphael
I implemented the following plugin into my website http://tympanus.net/codrops/2011/04/22/animated-skills-diagram/comment-page-3/#comments
Unfortunately the set width of the svg used is 600px x ...
0
votes
2answers
77 views
How to add a div over another div with JavaScript?
First, I have this:
Now, what I want to do is, to make "zoom" of some nodes. Once I double click on some of the nodes, I want to see the whole node on the page:
Now, because every time I zoom a ...
0
votes
1answer
111 views
How to change the size of an animated circle onclick using raphael js
I've got a animated circle which looks like this:
the blue part counts down, so for example from full to nothing in 10 seconds. The orange circle is just a circle. But I want that the circle will ...
0
votes
1answer
96 views
Cannot read property … of undefined in backbone
I'm trying to convert this simple project I made with raphael.js to use backbone.js, but I keep running into this same error and I'm not sure why. In functions in my Model, i try to access variables ...
0
votes
1answer
27 views
Raphael js get element's rotation
Is there a way to get an elements rotation value using the raphaeljs library? I'm sure there is but I can't find it anywhere in the documentation. I imagine its goes something like this ...
2
votes
2answers
71 views
Raphael js. Fill color along a curve
I have created a circle in which I can choose two points along the circumference of of circle.
I want to fill the portion between those two points.
Demo
If you see the demo, I want to fill the ...
0
votes
1answer
38 views
Draw lines with jointjs via web
Im building a small uml modeler with jointjs and raphael for a small project Im doing... I already draw classes by clicking on a button.
What I want to know specifically is how to get the onclick ...
0
votes
1answer
30 views
Retrieving data from database on click
I have a Raphael circle in my page and I want to retrieve some data from database when the circle is clicked.
My piece of code for this purpose is:
var circle = R.circle(x, y, ...
0
votes
1answer
35 views
Why Raphael js Graph doesn't work using .html()
I have a problem with my code. the code will display the table but not the graph the some.php is located in a folder named bin and the js are also located in that folder i really have no idea why it ...
0
votes
1answer
19 views
Viewing text on mouse over in Raphael.js
I have some Rapahel circles and I need to view some text over them when I hover on them. Here is my code:
var text = R.text(X, Y, "some text");
R.circle(X, Y, 10).attr({"fill-opacity":0.8, ...
0
votes
2answers
75 views
Open a link from a Iframe(fancybox) in a new window
I'm building an Europe Map with raphael script using fancybox popup when clicking on country, it's displaying an iframe.
When clicking on a link inside the iframe the new page opened inside the ...
0
votes
1answer
32 views
Raphael SketchPad extract final image from json
I'm using Raphael to sketch in my web application: http://ianli.com/sketchpad/
Raphael SketchPad allows to generate json code from the sketch, and to redraw it back, as you can see in the demo.
Now ...
1
vote
1answer
17 views
Paths and subpath don't manage the arc curve the same way
I'm having issue with generating arc curves with Raphael.
I created a reduced example here: http://jsfiddle.net/vaxilart/m6cHw/3/
As you can see, the first path drawn isn't the same as the second ...
0
votes
1answer
22 views
How to calculate a gradual rounded border on a path in SVG
I'm trying to create a path following linear curved border in SVG. A bit like this:
I was wondering how can this be calculated in SVG path syntax? I tried some options, but haven't got anywhere ...
0
votes
1answer
32 views
Raphael JS move/rotate group of drawings as one?
I have a little tool that draws up a grid of circles(representing holes) that allows the user to add text and lines to these circles. Right now I have it set up so if the user clicks on any of the ...
-1
votes
1answer
41 views
RaphaelJS SVG to PNG
I am currently struggling to convert SVG and its contents to a png using PHP. I am using raphaeljs to draw shapes onto an image and then i covert the shapes and image to a SVG. I have the svg tag and ...





