See Also

Chart Class  | Chart Members

Language

Visual Basic

C#

JScript

Show All

See Also Languages dotnetCHARTING Send comments on this topic.

VolumeArea Property

Gets or sets a ChartArea object which represents the volume chart area on a financial chart.

[Visual Basic]
Public Property VolumeArea As ChartArea
[C#]
public ChartArea VolumeArea {get; set;}
[JScript]
public function get,set VolumeArea : ChartArea

Remarks

Setting Chart.VolumeArea.Visible = false hides the volume chart area.

Example

[C#] 

ChartArea chartAreaObj= new ChartArea(); 
 chartAreaObj.Background.Color = Color.LightBlue; 
 chartAreaObj.Line.Color=Color.Yellow; 
 chartAreaObj.InteriorLine.Color=Color.Blue; 
 chartAreaObj.Label.Text="Customized volume area"; 
 Chart.VolumeArea = chartAreaObj;

[Visual Basic] 

Dim chartAreaObj As ChartArea = new ChartArea()
chartAreaObj.Background.Color = Color.LightBlue
chartAreaObj.Line.Color=Color.Yellow
chartAreaObj.InteriorLine.Color=Color.Blue
chartAreaObj.Label.Text="Customized volume area"
Chart.VolumeArea = chartAreaObj

See Also

Chart Class  | Chart Members

 

 


2002 - 2004 Webavail Productions Inc. & Corporate Web Solutions Ltd.. All Rights Reserved.