dotnetCHARTING Send comments on this topic.
StoredProcedure Property
See Also 
dotnetCHARTING Namespace > Series Class : StoredProcedure Property



This property accepts the name of a stored procedure to be used in place of the SqlStatement property in order to obtain data for the chart.

Syntax

Visual Basic (Declaration) 
Public Property StoredProcedure As String
Visual Basic (Usage)Copy Code
Dim instance As Series
Dim value As String
 
instance.StoredProcedure = value
 
value = instance.StoredProcedure
C# 
public string StoredProcedure {get; set;}
C++/CLI 
public:
property String^ StoredProcedure {
   String^ get();
   void set (String^ value);
}

Remarks

See the SqlStatement property for details on how the return columns are expected. Stored Procedures also work with parameters, see the AddParameter method.

See Also