Represents a delegate to create a custom summary function for the specific series point argument.
Namespace:DevExpress.XtraCharts
Assembly:DevExpress.XtraCharts.v19.2.dll

Syntax
C# |
public delegate ISeriesPoint[] SummaryFunction(
Series series,
object argument,
String[] functionArguments,
DataSourceValues[] values,
Object[] colors
)
|
VB |
Public Delegate Function SummaryFunction(
ByVal series As Series,
ByVal argument As Object,
ByVal functionArguments As String[],
ByVal values As DataSourceValues[],
ByVal colors As Object[]
) As ISeriesPoint[]
|
Parameters
-
series
-
Type: Series
A Series object, containing information about the series for which the custom summary function should be calculated.
-
argument
-
Type: Object
A System.Object representing an original argument of a series point for which the custom summary function should be calculated.
-
functionArguments
-
Type: String[]
An array of System.String values that specify the names of function arguments, if any. These names can be used to obtain data source values from the dictionary, passed as the values parameter.
-
values
-
Type: DataSourceValues[]
An array of DataSourceValues objects representing data source values to be used for summarizing. This object represents a dictionary, which allows you to obtain a specific data source value by its name.
-
colors
-
Type: Object[]
An array of objects representing colors obtained from a datasource.
Return value
Type: ISeriesPoint[]
An array of SeriesPoint objects representing the resulting series points.

See Also