Creates ColumnChartSeriesDataItem with specified property values. Background color is passed as HTML compatible string.

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

Syntax

C#
public ColumnChartSeriesDataItem(
	string id,
	string value,
	string background_color_string,
	Nullable<byte> background_alpha
)
Visual Basic (Declaration)
Public Sub New ( _
	id As String, _
	value As String, _
	background_color_string As String, _
	background_alpha As Nullable(Of Byte) _
)
Visual C++
public:
ColumnChartSeriesDataItem(
	String^ id, 
	String^ value, 
	String^ background_color_string, 
	Nullable<unsigned char> background_alpha
)

Parameters

id
Type: System..::.String
Series item id
value
Type: System..::.String
Series item value
background_color_string
Type: System..::.String
Background color in HTML compatible text format
background_alpha
Type: System..::.Nullable<(Of <(Byte>)>)
Opacity of the background

See Also