Skip to main content
A newer version of this page is available. .

UpDownBarsOptions.Visible Property

Gets or sets a value indicating whether up-down bars should be displayed on a 2-D line or stock chart.

Namespace: DevExpress.Spreadsheet.Charts

Assembly: DevExpress.Spreadsheet.v18.2.Core.dll

Declaration

bool Visible { get; set; }

Property Value

Type Description
Boolean

true, to display up-down bars; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to Visible
ChartView
.UpDownBars.Visible

Remarks

Use the Visible property to display up-down bars on a two-dimensional line chart with multiple series. Up-down bars are used to emphasize the difference between data points in the first and last series in the data series collection, as shown in the image below (the chart is displayed in Microsoft® Excel®).

LineChart_UpDownBars

The Open-High-Low-Close and Volume-Open-High-Low-Close stock charts display up-down bars by default. The bottom and top borders of a bar represent the Open and Close prices, respectively. By default, if the stock closes higher than its opening price, the hollow up bar is displayed. And if the stock closes lower than its opening price, the filled down bar is shown. To hide up-down bars on a stock chart, set the Visible property to false.

StockChart_UpDownBars

To specify format options to be applied to up-down bars, use the UpDownBarsOptions.UpBars and UpDownBarsOptions.DownBars properties.

Note that if you try to display up-down bars on a chart that does not support them, an exception occurs.

Note

Currently, the SpeadsheetControl does not display up-down bars on a line chart and does not allow changing the bar properties on a stock chart. However, display settings are loaded and stored in supported formats, and you can modify them programmatically.

See Also