ChartArea.InnerPlotPosition Property

Definition

Gets or sets an ElementPosition object, which defines the inner plot position of a chart area object.

public:
 property System::Web::UI::DataVisualization::Charting::ElementPosition ^ InnerPlotPosition { System::Web::UI::DataVisualization::Charting::ElementPosition ^ get(); void set(System::Web::UI::DataVisualization::Charting::ElementPosition ^ value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.DataVisualization.Charting.ElementPositionConverter))]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.DataVisualization.Charting.ElementPosition InnerPlotPosition { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.DataVisualization.Charting.ElementPositionConverter))>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.InnerPlotPosition : System.Web.UI.DataVisualization.Charting.ElementPosition with get, set
Public Property InnerPlotPosition As ElementPosition

Property Value

An ElementPosition object, which defines the inner plot position of a ChartArea object.

Attributes

Remarks

The InnerPlotPosition property defines the rectangle within a chart area element that is used for plotting data; it excludes tick marks, axis labels, and so forth.

The coordinates used for this property (0,0 to 100,100) are related to the ChartArea object, and not to the entire Chart.

The InnerPlotPosition property can be used to align multiple chart areas. However, if one chart area has tick marks and axis labels and another one does not, their axis lines cannot be aligned.

Important

This property can also be used to change the size of charts, such as pie or doughnut, without changing the size of the generated chart image.

To change the position of an entire ChartArea object use the Position property instead.

Applies to