Area Property
The Area property returns the positive calculated area under a line/scatter plot, ribbon/wall plot, or a 3D XYZ line/scatter plot. This is a read-only property.
Syntax
object.Area
object.Area = baseLine
Parameter | Type | Description |
baseLine | Variant | required, default is 0 |
Remarks
To find the area below the baseline, use the NegArea property.
Example
This example shows how to return the area under a curve without a specified baseline.
Debug.Print "Area under curve is ";LinePlot.Area
Example 2
This example shows how to return the area under a curve with a specified baseline.
Debug.Print "Area above 5 = ";LinePlot.Area("5")
Used by: AutoLinePlot object