Lines Matching refs:props
849 * @param {Object} props properties to be applied to the text field.
852 _rotate: function(label, props)
854 var rot = props.rot,
855 x = props.x,
856 y = props.y,
860 transformOrigin = props.transformOrigin || [0, 0],
877 textAlpha = props.textAlpha;
887 offsetRect = matrix.getContentRect(props.labelWidth, props.labelHeight);
891 this._simulateRotateWithTransformOrigin(matrix, rot, transformOrigin, props.labelWidth, props.labelHeight);
975 props = this._getTextRotationProps(labelStyles);
976 props.transformOrigin = layout._getTransformOrigin(props.rot);
979 props.labelWidth = label.offsetWidth;
980 props.labelHeight = label.offsetHeight;
984 props.x = 0;
985 props.y = 0;
986 layout._setRotationCoords(props);
987 matrix.translate(props.x, props.y);
988 this._simulateRotateWithTransformOrigin(matrix, props.rot, props.transformOrigin, props.labelWidth, props.labelHeight);
989 return matrix.getContentRect(props.labelWidth, props.labelHeight);