DataManipulator.Group Method

Definition

Groups data for one or more series, using one or more formulas.

Overloads

Group(String, Double, IntervalType, String)

Groups data using one or more formulas, for one or more series. Series are cleared of their original data and used to store the new data points.

Group(String, Double, IntervalType, Series)

Groups data using one or more formulas. The series that is grouped is cleared of its original data, and used to store the new data points.

Group(String, Double, IntervalType, String, String)

Groups data for one or more series, using one or more formulas. Output series are used to store the grouped data points.

Group(String, Double, IntervalType, Series, Series)

Groups data using one or more formulas. An output series is used to store the grouped data points.

Group(String, Double, IntervalType, Double, IntervalType, String)

Groups data for one or more series, using one or more formulas. Series are cleared of their original data and used to store the new data points.

Group(String, Double, IntervalType, Double, IntervalType, Series)

Groups data using one or more formulas. The series that is grouped is cleared of its original data, and used to store the new data points.

Group(String, Double, IntervalType, Double, IntervalType, String, String)

Groups one or more series, using one or more formulas. Output series are used to store the grouped data points, and an offset can be used for intervals.

Group(String, Double, IntervalType, Double, IntervalType, Series, Series)

Groups a series using one or more formulas. An output series is used to store the grouped data points, and an offset can be used for intervals.

Group(String, Double, IntervalType, String)

Groups data using one or more formulas, for one or more series. Series are cleared of their original data and used to store the new data points.

C#
public void Group(string formula, double interval, System.Web.UI.DataVisualization.Charting.IntervalType intervalType, string inputSeriesName);

Parameters

formula
String

A comma-separated list of one or more formulas to be used for calculating the grouped data point values.

interval
Double

The size of the interval checked for missing data points.

intervalType
IntervalType

The unit of measurement for the interval parameter.

inputSeriesName
String

A comma-separated list of names of the Series to be grouped.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Group(String, Double, IntervalType, Series)

Groups data using one or more formulas. The series that is grouped is cleared of its original data, and used to store the new data points.

C#
public void Group(string formula, double interval, System.Web.UI.DataVisualization.Charting.IntervalType intervalType, System.Web.UI.DataVisualization.Charting.Series inputSeries);

Parameters

formula
String

A comma-separated list of one or more formulas to be used for calculating the grouped data point values.

interval
Double

The size of the interval checked for missing data points.

intervalType
IntervalType

The unit of measurement for the interval parameter.

inputSeries
Series

The Series object to be grouped.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Group(String, Double, IntervalType, String, String)

Groups data for one or more series, using one or more formulas. Output series are used to store the grouped data points.

C#
public void Group(string formula, double interval, System.Web.UI.DataVisualization.Charting.IntervalType intervalType, string inputSeriesName, string outputSeriesName);

Parameters

formula
String

A comma-separated list of one or more formulas to be used for calculating the grouped data point values.

interval
Double

The size of the interval checked for missing data points.

intervalType
IntervalType

The unit of measurement for the interval parameter.

inputSeriesName
String

A comma-separated list of names of the Series to be grouped.

outputSeriesName
String

A comma-separated list of names of the Series that will store the grouped data points. If a series does not exist, it will be created; if it does exist, it will first be cleared of all data before storing grouped data points. The number of output series must equal the number of input series, or an exception will be thrown.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Group(String, Double, IntervalType, Series, Series)

Groups data using one or more formulas. An output series is used to store the grouped data points.

C#
public void Group(string formula, double interval, System.Web.UI.DataVisualization.Charting.IntervalType intervalType, System.Web.UI.DataVisualization.Charting.Series inputSeries, System.Web.UI.DataVisualization.Charting.Series outputSeries);

Parameters

formula
String

A comma-separated list of one or more formulas to be used for calculating the grouped data point values.

interval
Double

The size of the interval checked for missing data points.

intervalType
IntervalType

The unit of measurement for the interval parameter.

inputSeries
Series

The Series object to be grouped.

outputSeries
Series

The Series that will store the new data points created by the grouping operation. If it does not exist, an exception will be thrown.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Group(String, Double, IntervalType, Double, IntervalType, String)

Groups data for one or more series, using one or more formulas. Series are cleared of their original data and used to store the new data points.

C#
public void Group(string formula, double interval, System.Web.UI.DataVisualization.Charting.IntervalType intervalType, double intervalOffset, System.Web.UI.DataVisualization.Charting.IntervalType intervalOffsetType, string inputSeriesName);

Parameters

formula
String

A comma-separated list of one or more formulas to be used for calculating the grouped data point values.

interval
Double

The size of the interval checked for missing data points.

intervalType
IntervalType

The unit of measurement for the interval parameter.

intervalOffset
Double

The interval offset size.

intervalOffsetType
IntervalType

The unit of measurement for the interval offset.

inputSeriesName
String

A comma-separated list of names of the Series to be grouped.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Group(String, Double, IntervalType, Double, IntervalType, Series)

Groups data using one or more formulas. The series that is grouped is cleared of its original data, and used to store the new data points.

C#
public void Group(string formula, double interval, System.Web.UI.DataVisualization.Charting.IntervalType intervalType, double intervalOffset, System.Web.UI.DataVisualization.Charting.IntervalType intervalOffsetType, System.Web.UI.DataVisualization.Charting.Series inputSeries);

Parameters

formula
String

A comma-separated list of one or more formulas to be used for calculating the grouped data point values.

interval
Double

The size of the interval checked for missing data points.

intervalType
IntervalType

The unit of measurement for the interval parameter.

intervalOffset
Double

The interval offset size.

intervalOffsetType
IntervalType

The unit of measurement for the interval offset.

inputSeries
Series

The Series object to be grouped.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Group(String, Double, IntervalType, Double, IntervalType, String, String)

Groups one or more series, using one or more formulas. Output series are used to store the grouped data points, and an offset can be used for intervals.

C#
public void Group(string formula, double interval, System.Web.UI.DataVisualization.Charting.IntervalType intervalType, double intervalOffset, System.Web.UI.DataVisualization.Charting.IntervalType intervalOffsetType, string inputSeriesName, string outputSeriesName);

Parameters

formula
String

A comma-separated list of one or more formulas to be used for calculating the grouped data point values.

interval
Double

The size of the interval checked for missing data points.

intervalType
IntervalType

The unit of measurement for the interval parameter.

intervalOffset
Double

The interval offset size.

intervalOffsetType
IntervalType

The unit of measurement for the interval offset.

inputSeriesName
String

A comma-separated list of names of the Series to be grouped.

outputSeriesName
String

A comma-separated list of names of the Series that will store the grouped data points. If a series does not exist, it will be created; if it does exist, it will first be cleared of all data before storing grouped data points. The number of output series must equal the number of input series, or an exception will be thrown.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Group(String, Double, IntervalType, Double, IntervalType, Series, Series)

Groups a series using one or more formulas. An output series is used to store the grouped data points, and an offset can be used for intervals.

C#
public void Group(string formula, double interval, System.Web.UI.DataVisualization.Charting.IntervalType intervalType, double intervalOffset, System.Web.UI.DataVisualization.Charting.IntervalType intervalOffsetType, System.Web.UI.DataVisualization.Charting.Series inputSeries, System.Web.UI.DataVisualization.Charting.Series outputSeries);

Parameters

formula
String

A comma-separated list of one or more formulas to be used for calculating the grouped data point values.

interval
Double

The size of the interval checked for missing data points.

intervalType
IntervalType

The unit of measurement for the interval parameter.

intervalOffset
Double

The interval offset size.

intervalOffsetType
IntervalType

The unit of measurement for the interval offset.

inputSeries
Series

The Series object to be grouped.

outputSeries
Series

The Series that will store the new data points created by the grouping operation. If it does not exist, an exception will be thrown.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1