Creates LineChartSeriesDataItem with specified property values. Colors are passed as HTML compatible strings.

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

Syntax

C#
public LineChartSeriesDataItem(
	string id,
	string value,
	bool force_show,
	string event_start_id,
	string event_end_id,
	string event_text_color_string,
	string event_description,
	string event_color_string,
	Nullable<byte> event_alpha
)
Visual Basic (Declaration)
Public Sub New ( _
	id As String, _
	value As String, _
	force_show As Boolean, _
	event_start_id As String, _
	event_end_id As String, _
	event_text_color_string As String, _
	event_description As String, _
	event_color_string As String, _
	event_alpha As Nullable(Of Byte) _
)
Visual C++
public:
LineChartSeriesDataItem(
	String^ id, 
	String^ value, 
	bool force_show, 
	String^ event_start_id, 
	String^ event_end_id, 
	String^ event_text_color_string, 
	String^ event_description, 
	String^ event_color_string, 
	Nullable<unsigned char> event_alpha
)

Parameters

id
Type: System..::.String
Series item id
value
Type: System..::.String
Series item value
force_show
Type: System..::.Boolean
If this is set to true, the X-axis values and grid lines of this series will always be visible. By default, this is set to false.
event_start_id
Type: System..::.String
The event will start from this point. The attribute value is a unique identifier of the event.
event_end_id
Type: System..::.String
The event will end at this point. The attribute value is a unique identifier of the event.
event_text_color_string
Type: System..::.String
The color of the text in the event description.
event_description
Type: System..::.String
When the viewer clicks on the event background, a balloon will appear, displaying this text.
event_color_string
Type: System..::.String
The color of the event background (hex color code).
event_alpha
Type: System..::.Nullable<(Of <(Byte>)>)
The opacity of the event background (number between 0 and 100, where 0 is completely transparent and 100 is completely solid).

See Also