Version

DataPoint Class

Represents the a specific data point in a Series.
Syntax
'Declaration
 
Public Class DataPoint 
   Inherits ChartObject
public class DataPoint : ChartObject 
Remarks

This class encapsulates an individual point of data in a Series.

A data point manifests differently depending on the chart type; for example, on a bar chart it represents the bar itself, and for a line chart, it represents a point on the line. For pie and doughnut charts, a data point represents a slice or wedge in the pie/doughnut.

Many of the properties exposed by this class are also found on the Series class; setting the property on the series affects all points on the series, whereas setting a property on this class affects only one individual point in the series.

In cases where most of the data points share the same property values, use the property of the Series class, overriding the property values for any individual points using this class.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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