Dundas.SharePoint.Charting.WebParts Send comments on this topic.
Select(Int32,Int32,ChartElementType,Boolean,String,Int32,ChartElementType,Object) Method
See Also 
Dundas.Charting.WebControl Namespace > ChartPicture Class > Select Method : Select(Int32,Int32,ChartElementType,Boolean,String,Int32,ChartElementType,Object) Method


x
x coordinate position
y
y coordinate position
requestedElement
Only this chart elements will be hit tested.
ignoreTransparent
Indicates that transparent elements should be ignored.
series
Selected data series
point
Selected data point
type
Chart element selectable type
obj
Selected object
Function, that returns a selected data point and selected series from x, and y coordinate position.

Syntax

Visual Basic (Declaration)  
Public Overloads Sub Select( _
   ByVal x As Integer, _
   ByVal y As Integer, _
   ByVal requestedElement As ChartElementType, _
   ByVal ignoreTransparent As Boolean, _
   ByRef series As String, _
   ByRef point As Integer, _
   ByRef type As ChartElementType, _
   ByRef obj As Object _
) 
Visual Basic (Usage) Copy Code
Dim instance As ChartPicture
Dim x As Integer
Dim y As Integer
Dim requestedElement As ChartElementType
Dim ignoreTransparent As Boolean
Dim series As String
Dim point As Integer
Dim type As ChartElementType
Dim obj As Object
 
instance.Select(x, y, requestedElement, ignoreTransparent, series, point, type, obj)
C#  
public void Select( 
   int x,
   int y,
   ChartElementType requestedElement,
   bool ignoreTransparent,
   out string series,
   out int point,
   out ChartElementType type,
   out object obj
)

Parameters

x
x coordinate position
y
y coordinate position
requestedElement
Only this chart elements will be hit tested.
ignoreTransparent
Indicates that transparent elements should be ignored.
series
Selected data series
point
Selected data point
type
Chart element selectable type
obj
Selected object

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also