Title.IsDockedInsideChartArea Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a flag that specifies whether the title should be docked within a ChartArea object.
public:
property bool IsDockedInsideChartArea { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)]
public bool IsDockedInsideChartArea { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)>]
member this.IsDockedInsideChartArea : bool with get, set
Public Property IsDockedInsideChartArea As Boolean
Property Value
true
if the title will be docked within a chart area; false
if the title will be docked outside the chart area. The default value is false
.
- Attributes
Remarks
If the IsDockedInsideChartArea property is set to false
, the title is docked to the outside edge of the plotted chart areas; if this property is set to true
, the title will be docked to the inside edge of the chart area. This property will have no effect if the name of a ChartArea object is not assigned to the DockedToChartArea property.
Note This behavior only applies if the Position property is set to Auto. If this is not the case, setting the IsDockedInsideChartArea property has no effect, because the position of the title is then determined by the Position property value.