PriceDownColor

Gets or Sets the DataPoint color which is used to indicate a decreasing price. When the Close value is less than the Open value, then the price is considered as decreasing.

 

Type: Brush

Namespace: Visifire.Charts

Assembly:

Silverlight:

SLVisifire.Charts (in SLVisifire.Charts.dll)

WPF:

WPFVisifire.Charts (in WPFVisifire.Charts.dll)

 

This attribute applies to:

 

Syntax:

<vc:Chart ... >

<vc:Chart.Series>

<vc:DataSeries PriceDownColor="Red">

 

</vc:DataSeries>

</vc:Chart.Series>

</vc:Chart>

 

Below is the chart after setting PriceDownColor property.

 

 

 

Remarks:

  1. This attribute is applicable only to CandleStick Charts.

  2. PriceDownColor will be applied only to the filled rectangular region (open-close rectangle) of the CandleStick DataPoint. The high-low line will take color from PriceUpColor.

  3. PriceDownColor will be same for all series in Chart.

  4. If Color property is set in DataPoint having PriceDownColor, then color will be applied to the high-low line and border of the open-close rectangle of a CandleStick. By default BorderThickness property is set to zero, So border of the open-close rectangle may not be visible. You can set proper value for BorderThickness property to show the border of the open-close rectangle.

  5. PriceDownColor property cannot be null if set from XAML.