Version

DataAppearance Class

An Appearance object that encapsulates those properties related to the data for a chart, and how that data should be filtered.
Syntax
'Declaration
 
Public Class DataAppearance 
   Inherits ChartAppearance
   Implements Infragistics.UltraChart.Resources.IProvideChartComponent 
Remarks

The DataAppearance class manages the appearance of the data in the chart, including it's filtering (even if the application doesn't already take advantage of the filtering capabilities of the DataView class).

The primary purpose of this Appearance object that all developers need to be comfortable with is using the DataSource property and DataBind method to set the data source and initiate binding to that data source. Data sources that support the Framework's IBindingList interface (this includes data tables) support live updates to the chart reflecting changes within the data.

Additional filter support in DataAppearance includes whether the chart should be Zero-aligned to a linear, numeric axis (see the ZeroAligned property), exclusive limits that establish a band of data that should be presented (see the MinValue, MaxValue and UseMinMax properties), and whether the rows and columns in the data source should be transposed prior to charting (see the SwapRowsAndColumns property).

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also