Creates RadarChartAxisDataItem with specified property values. Colors specified as strings.

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

Syntax

C#
public RadarChartAxisDataItem(
	string id,
	string value,
	Nullable<int> width,
	string color_string,
	Nullable<byte> alpha,
	string fill_color_string,
	Nullable<byte> fill_alpha
)
Visual Basic (Declaration)
Public Sub New ( _
	id As String, _
	value As String, _
	width As Nullable(Of Integer), _
	color_string As String, _
	alpha As Nullable(Of Byte), _
	fill_color_string As String, _
	fill_alpha As Nullable(Of Byte) _
)
Visual C++
public:
RadarChartAxisDataItem(
	String^ id, 
	String^ value, 
	Nullable<int> width, 
	String^ color_string, 
	Nullable<unsigned char> alpha, 
	String^ fill_color_string, 
	Nullable<unsigned char> fill_alpha
)

Parameters

id
Type: System..::.String
Axis id
value
Type: System..::.String
Axis name
width
Type: System..::.Nullable<(Of <(Int32>)>)
Width
color_string
Type: System..::.String
Color as html string
alpha
Type: System..::.Nullable<(Of <(Byte>)>)
Opacity
fill_color_string
Type: System..::.String
Fill color as html string
fill_alpha
Type: System..::.Nullable<(Of <(Byte>)>)
Fill opacity

See Also