StackedAxis.js revision e393eced613f9b4a5fb6bdd461d0e0bf5064d5ec
function StackedAxis(config)
{
}
{
/**
* @private
* Determines the maximum and minimum values for the axis.
*/
_updateMinAndMax: function()
{
var max = 0,
min = 0,
pos = 0,
neg = 0,
len = 0,
i = 0,
key,
num,
{
{
}
}
for(; i < len; ++i)
{
pos = 0;
neg = 0;
{
{
{
continue;
}
if(num >= 0)
{
}
else
{
}
}
}
if(pos > 0)
{
}
else
{
}
if(neg < 0)
{
}
else
{
}
}
}
});
Y.StackedAxis = StackedAxis;