Do you guys have an estimated time frame as to when the 100% bug will be fixed?
It clearly doesn't work. I've tried several chart in JS. It works fine if you specify pixels
but if you take the same code and specify percent it doesn't render anything. there is no error and no chart.
I looked at your code in int.as and I see the following
//Get chart width and height
var _chartWidth : Number = Stage.width;
var _chartHeight : Number = Stage.height;
//Get chart horizontal and vertical center
var _chartXCenter : Number = _chartWidth / 2;
var _chartYCenter : Number = _chartHeight / 2;
I am not very well versed in Action Script but it seems like the code is simply taking what's passed in and casting it as a number