voidlabs / elycharts

Interactive Javascript (SVG|VML) Charting Library
http://elycharts.com
Other
10 stars 6 forks source link

Axe title doesn't rotate (with Raphael 2.0+) #27

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Downloaded jquery 1.8.3 and raphael 2.1.0
2. Try to recreate the example #1 from example page (copy and paste)

What is the expected output?
Everything just like I see on the web

What do you see instead?
The l title wich is not vertically oriented

What version of the product are you using?
Elycharts 2.1.4-SNAPSHOT

On what operating system?
Windows 7 Professional

Please provide any additional information below.
Tested on: Firefox 17.0.1 and Chrome 23.0.1271.95 m (latest builds available at 
the moment)

Original issue reported on code.google.com by nicola.m...@gmail.com on 7 Dec 2012 at 4:59

GoogleCodeExporter commented 9 years ago
The solution is change the Raphael version. I updated to 1.5.2 and the l title 
is vertically oriented. Go to https://github.com/voidlabs/ElyCharts and 
download the example. demo.html have vertically oriented tile in left and right 
axis.

Original comment by fal...@gmail.com on 17 Jan 2013 at 5:21

GoogleCodeExporter commented 9 years ago
Raphael 2 deprecated the transformation methods (rotate,scale,translate). I was 
expecting "deprecate" means they still work but they will be removed and so 
they should be removed, but if this doesn't work it means that their 
interpretation of deprecate is different.

I just fixed animation issues with Raphael 2, now I'm looking at this.

Original comment by stefano....@gmail.com on 14 Jan 2014 at 11:59

GoogleCodeExporter commented 9 years ago
The problem were not the deprecated methods (that in fact still works) but the 
.rotation, .scale, .translation attributes that do not exists anymore.
So I had to change a bit of how we generate vertical axis in order to not use 
.rotation attribute in favor of the new transform method (that is no more an 
attribute of an element but a transformation for the element)

Original comment by stefano....@gmail.com on 14 Jan 2014 at 3:33

GoogleCodeExporter commented 9 years ago

Original comment by stefano....@gmail.com on 14 Jan 2014 at 3:33