Sustainable Growth Model for a Multiproduct Company

Probir Banerjee
Updated on 29-Jun-2022 12:55:44

266 Views

What is Sustainable Growth?Sustainable growth is a percentage measure of yearly growth in sales that is in sync with the firm’s financial policies meaning no fresh equity is issued. For a multiproduct company, sustainable growth can be calculated by the company’s growth at the corporate level in terms of growth of assets. Usually, companies set their target growth in terms of sales. To grow sales, the company needs to invest funds in assets. This investment can either be sourced from external sources or provided by the internal resources of a company.Therefore, the assets of a company will grow by an ... Read More

Lock Rectangle Rotation Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 11:52:19

699 Views

In this tutorial, we are going to learn how to lock the rotation of a Rectangle using FabricJS. Just as we can specify the position, colour, opacity and dimension of a rectangle object in the canvas, we can also specify whether we want it to rotate or not. This can be done by using the lockRotation property.Syntaxnew fabric.Rect({ lockRotation : Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke width, and a lot of other properties can be changed related to the object ... Read More

Lock Horizontal Skewing of Rectangle Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 11:47:51

511 Views

In this tutorial, we are going to learn how to lock the horizontal skewing of a Rectangle using FabricJS. Just as we can specify the position, colour, opacity and dimension of a rectangle object in the canvas, we can also specify whether we want to stop skewing an object horizontally. This can be done by using the lockSkewingX property.Syntaxnew fabric.Rect({ lockSkewingX : Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke width, and a lot of other properties can be changed related to ... Read More

Lock Horizontal Scaling of a Rectangle Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 11:44:36

486 Views

In this tutorial, we are going to learn how to lock the horizontal scaling of a Rectangle using FabricJS. Just as we can specify the position, colour, opacity and dimension of a rectangle object in the canvas, we can also specify whether we want to stop scaling an object horizontally. This can be done by using the lockScalingX property.Syntaxnew fabric.Rect({ lockScalingX : Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke width, and a lot of other properties can be changed related to ... Read More

Lock Horizontal Movement of Rectangle using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 11:36:13

446 Views

In this tutorial, we are going to learn how to lock the horizontal movement of a Rectangle using FabricJS. Just as we can specify the position, colour, opacity and dimension of a rectangle object in the canvas, we can also specify whether we want it to move only in the Y-axis. This can be done by using the lockMovementX property.Syntaxnew fabric.Rect({ lockMovementX: Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke width, and a lot of other properties can be changed related to ... Read More

Lock Flipping During Scaling of Rectangle Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 10:28:09

350 Views

In this tutorial, we are going to learn how to lock the flipping during scaling of a Rectangle using FabricJS. Just as we can specify the position, colour, opacity and dimension of a rectangle object in the canvas, we can also specify whether we want to stop flipping an object during scaling. This can be done by using the lockScalingFlip property.Syntaxnew fabric.Rect({ lockScalingFlip : Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke width, and a lot of other properties can be changed ... Read More

Hide Controlling Corners of a Rectangle Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 10:24:06

287 Views

In this tutorial, we are going to learn how to hide the controlling corners of a Rectangle using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas. The controlling corners of an object allow us to increase or decrease its scale, stretch or change its position.We can customize our controlling corners in many ways such as adding a specific colour to it, changing its size, etc. We can also hide them using the hasControls property.Syntaxnew fabric.Rect({ ... Read More

Hide Controlling Borders of a Rectangle Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 09:48:35

545 Views

In this tutorial, we are going to learn how to hide the controlling borders of a Rectangle using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas.We can customize our controlling borders in many ways such as adding a specific colour to it, a dash pattern, etc. However, we can also eliminate the borders completely by using the hasBorders property.Syntaxnew fabric.Rect({ hasBorders: Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations ... Read More

Flip a Rectangle Vertically Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 09:28:55

275 Views

In this tutorial, we are going to learn how we can flip a Rectangle object vertically using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas. We can flip a rectangle object vertically using the flipY property.Syntaxnew fabric.Rect({ flipY: Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke width and a lot of other properties can be changed related ... Read More

Flip Rectangle Horizontally Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 09:23:43

536 Views

In this tutorial, we are going to learn how we can flip a Rectangle object horizontally using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas. We can flip a rectangle object horizontally using the flipX property.Syntaxnew fabric.Rect({ flipX: Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke width and a lot of other properties can be changed related ... Read More

Advertisements