ChartPlotArea

ChartPlotArea class

Represents rectangle where chart should be plotted.

public class ChartPlotArea : DomObject<Chart>, IChartPlotArea

Properties

NameDescription
ActualHeight { get; }Specifies actual height of the chart element. Call method IChart.ValidateChartLayout() before to get actual values. Read Single.
ActualWidth { get; }Specifies actual width of the chart element. Call method IChart.ValidateChartLayout() before to get actual values. Read Single.
ActualX { get; }Specifies actual x location (left) of the chart element relative to the left top corner of the chart. Call method IChart.ValidateChartLayout() before to get actual values. Read Single.
ActualY { get; }Specifies actual top of the chart element relative to the left top corner of the chart. Call method IChart.ValidateChartLayout() before to get actual values. Read Single.
Bottom { get; }Bottom. Read-only Single.
Chart { get; }Chart. Read-only IChart.
Format { get; }Returns the format of a plot area. Read-only IFormat.
Height { get; set; }Returns or sets the height of a plot area bounding box as a fraction of the height of the chart (from 0 to 1). Read/write Single.
IsLocationAutocalculated { get; }Defines how location should be calculated: true – calculated automatically; defined by the X, Y, Width, Height properties. Read-only Boolean.
LayoutTargetType { get; set; }If layout of the plot area defined manually this property specifies whether to layout the plot area by its inside (not including axis and axis labels) or outside (including axis and axis labels). Read/write LayoutTargetType.
Right { get; }Right. Read-only Single.
Width { get; set; }Returns or sets the width of a plot area bounding box as a fraction of the width of the chart (from 0 to 1). Read/write Single.
X { get; set; }Returns or sets the x coordinate of the upper left corner of plot area bounding box as a fraction of the width of the chart (from 0 to 1). Read/write Single.
Y { get; set; }Returns or sets the y coordinate of the upper left corner of plot area bounding box as a fraction of the height of the chart (from 0 to 1). Read/write Single.

See Also