Returns X/Y coordinates for specified date/time/index and value in specified graph.

Namespace:  AmCharts.Windows.Stock
Assembly:  AmCharts.Windows.Stock (in AmCharts.Windows.Stock.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
public Point GetValueCoordinates(
	Graph graph,
	DateTime date,
	Nullable<int> index,
	double value
)
Visual Basic (Declaration)
Public Function GetValueCoordinates ( _
	graph As Graph, _
	date As DateTime, _
	index As Nullable(Of Integer), _
	value As Double _
) As Point
Visual C++
public:
Point GetValueCoordinates(
	Graph^ graph, 
	DateTime date, 
	Nullable<int> index, 
	double value
)

Parameters

graph
Type: AmCharts.Windows.Stock..::.Graph
Graph to which data item belongs.
date
Type: System..::.DateTime
DateTime value.
index
Type: System..::.Nullable<(Of <(Int32>)>)
AggregateDataItem index.
value
Type: System..::.Double
Value.

Return Value

Point representing requested coordinates.

See Also