Creates XyChartDataItem with specified property values

Namespace:  am.Charts
Assembly:  am.Charts (in am.Charts.dll)
Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public XyChartDataItem(
	Object x,
	Object y,
	Object value,
	XyChartBulletTypes bullet,
	string bullet_url,
	Nullable<int> bullet_size,
	Color bullet_color,
	Nullable<byte> bullet_alpha,
	string url,
	string description
)
Visual Basic (Declaration)
Public Sub New ( _
	x As Object, _
	y As Object, _
	value As Object, _
	bullet As XyChartBulletTypes, _
	bullet_url As String, _
	bullet_size As Nullable(Of Integer), _
	bullet_color As Color, _
	bullet_alpha As Nullable(Of Byte), _
	url As String, _
	description As String _
)
Visual C++
public:
XyChartDataItem(
	Object^ x, 
	Object^ y, 
	Object^ value, 
	XyChartBulletTypes bullet, 
	String^ bullet_url, 
	Nullable<int> bullet_size, 
	Color bullet_color, 
	Nullable<unsigned char> bullet_alpha, 
	String^ url, 
	String^ description
)

Parameters

x
Type: System..::.Object
The data point's position along the X-axis.
y
Type: System..::.Object
The data point's position along the Y-axis.
value
Type: System..::.Object
The size of the bubble. This acts like a third dimension of data - instead of a position along an axis, the data is represented by size.
bullet
Type: am.Charts..::.XyChartBulletTypes
Bullet type
bullet_url
Type: System..::.String
Custom bullet file URL
bullet_size
Type: System..::.Nullable<(Of <(Int32>)>)
Size of standard bullet
bullet_color
Type: System.Drawing..::.Color
Bullet color
bullet_alpha
Type: System..::.Nullable<(Of <(Byte>)>)
Standard bullet opacity
url
Type: System..::.String
Hyperlink URL
description
Type: System..::.String
Description of the value

See Also