ChartPlotArea

Inheritance: java.lang.Object, com.aspose.slides.DomObject

All Implemented Interfaces: com.aspose.slides.IChartPlotArea

public class ChartPlotArea extends DomObject<Chart> implements IChartPlotArea

Represents rectangle where chart should be plotted.

Methods

MethodDescription
getFormat()Returns the format of a plot area.
getX()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).
setX(float value)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).
getY()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).
setY(float value)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).
getWidth()Returns or sets the width of a plot area bounding box as a fraction of the width of the chart (from 0 to 1).
setWidth(float value)Returns or sets the width of a plot area bounding box as a fraction of the width of the chart (from 0 to 1).
getHeight()Returns or sets the height of a plot area bounding box as a fraction of the height of the chart (from 0 to 1).
setHeight(float value)Returns or sets the height of a plot area bounding box as a fraction of the height of the chart (from 0 to 1).
getRight()Right.
getBottom()Bottom.
getChart()Chart.
isLocationAutocalculated()Defines how location should be calculated: true \u2013 calculated automatically; defined by the X, Y, Width, Height properties.
getLayoutTargetType()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).
setLayoutTargetType(int value)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).
getActualX()Specifies actual x location (left) of the chart element relative to the left top corner of the chart.
getActualY()Specifies actual top of the chart element relative to the left top corner of the chart.
getActualWidth()Specifies actual width of the chart element.
getActualHeight()Specifies actual height of the chart element.
getSlide()Returns the parent slide of a FillFormat.
getPresentation()Returns the parent presentation of a FillFormat.

getFormat()

public final IFormat getFormat()

Returns the format of a plot area. Read-only IFormat.

Returns: IFormat

getX()

public final float getX()

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 float.

Returns: float

setX(float value)

public final void setX(float value)

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 float.

Parameters:

ParameterTypeDescription
valuefloat

getY()

public final float getY()

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 float.

Returns: float

setY(float value)

public final void setY(float value)

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 float.

Parameters:

ParameterTypeDescription
valuefloat

getWidth()

public final float getWidth()

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 float.

Returns: float

setWidth(float value)

public final void setWidth(float value)

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 float.

Parameters:

ParameterTypeDescription
valuefloat

getHeight()

public final float getHeight()

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 float.

Returns: float

setHeight(float value)

public final void setHeight(float value)

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 float.

Parameters:

ParameterTypeDescription
valuefloat

getRight()

public final float getRight()

Right. Read-only float.

Returns: float

getBottom()

public final float getBottom()

Bottom. Read-only float.

Returns: float

getChart()

public final IChart getChart()

Chart. Read-only IChart.

Returns: IChart

isLocationAutocalculated()

public final boolean isLocationAutocalculated()

Defines how location should be calculated: true \u2013 calculated automatically; defined by the X, Y, Width, Height properties. Read-only boolean.

Returns: boolean

getLayoutTargetType()

public final int getLayoutTargetType()

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(#getLayoutTargetType.getLayoutTargetType/#setLayoutTargetType(int).setLayoutTargetType(int)).

Presentation presentation = new Presentation();
  try
  {
      ISlide slide = presentation.getSlides().get_Item(0);
      IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 100, 600, 400);
      chart.getPlotArea().setX(0.2f);
      chart.getPlotArea().setY(0.2f);
      chart.getPlotArea().setWidth(0.7f);
      chart.getPlotArea().setHeight(0.7f);
      chart.getPlotArea().setLayoutTargetType(LayoutTargetType.Inner);
      ...
  } finally {
      if (presentation != null) presentation.dispose();
  }

Returns: int

setLayoutTargetType(int value)

public final void setLayoutTargetType(int value)

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(#getLayoutTargetType.getLayoutTargetType/#setLayoutTargetType(int).setLayoutTargetType(int)).

Presentation presentation = new Presentation();
  try
  {
      ISlide slide = presentation.getSlides().get_Item(0);
      IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 100, 600, 400);
      chart.getPlotArea().setX(0.2f);
      chart.getPlotArea().setY(0.2f);
      chart.getPlotArea().setWidth(0.7f);
      chart.getPlotArea().setHeight(0.7f);
      chart.getPlotArea().setLayoutTargetType(LayoutTargetType.Inner);
      ...
  } finally {
      if (presentation != null) presentation.dispose();
  }

Parameters:

ParameterTypeDescription
valueint

getActualX()

public final float getActualX()

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 float.

Returns: float

getActualY()

public final float getActualY()

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 float.

Returns: float

getActualWidth()

public final float getActualWidth()

Specifies actual width of the chart element. Call method IChart.ValidateChartLayout() before to get actual values. Read float.

Returns: float

getActualHeight()

public final float getActualHeight()

Specifies actual height of the chart element. Call method IChart.ValidateChartLayout() before to get actual values. Read float.

Returns: float

getSlide()

public final IBaseSlide getSlide()

Returns the parent slide of a FillFormat. Read-only BaseSlide.

Returns: IBaseSlide

getPresentation()

public final IPresentation getPresentation()

Returns the parent presentation of a FillFormat. Read-only IPresentation.

Returns: IPresentation