DataManipulator.Group Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Groups data points for one or more series, using one or more formulas.
Overloads
Group(String, Double, IntervalType, String) |
Groups data points 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, Series) |
Groups data points in a series 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 points 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 points in a series 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 points 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 points in a series 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 data points for 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 data points in 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 points 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.
public:
void Group(System::String ^ formula, double interval, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalType, System::String ^ inputSeriesName);
public void Group (string formula, double interval, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalType, string inputSeriesName);
member this.Group : string * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * string -> unit
Public Sub Group (formula As String, interval As Double, intervalType As IntervalType, inputSeriesName As String)
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.
Applies to
Group(String, Double, IntervalType, Series)
Groups data points in a series using one or more formulas. The series that is grouped is cleared of its original data, and used to store the new data points.
public:
void Group(System::String ^ formula, double interval, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalType, System::Windows::Forms::DataVisualization::Charting::Series ^ inputSeries);
public void Group (string formula, double interval, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalType, System.Windows.Forms.DataVisualization.Charting.Series inputSeries);
member this.Group : string * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * System.Windows.Forms.DataVisualization.Charting.Series -> unit
Public Sub Group (formula As String, interval As Double, intervalType As IntervalType, inputSeries As Series)
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.
Applies to
Group(String, Double, IntervalType, String, String)
Groups data points for one or more series, using one or more formulas. Output series are used to store the grouped data points.
public:
void Group(System::String ^ formula, double interval, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalType, System::String ^ inputSeriesName, System::String ^ outputSeriesName);
public void Group (string formula, double interval, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalType, string inputSeriesName, string outputSeriesName);
member this.Group : string * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * string * string -> unit
Public Sub Group (formula As String, interval As Double, intervalType As IntervalType, inputSeriesName As String, outputSeriesName As String)
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.
- 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
Group(String, Double, IntervalType, Series, Series)
Groups data points in a series using one or more formulas. An output series is used to store the grouped data points.
public:
void Group(System::String ^ formula, double interval, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalType, System::Windows::Forms::DataVisualization::Charting::Series ^ inputSeries, System::Windows::Forms::DataVisualization::Charting::Series ^ outputSeries);
public void Group (string formula, double interval, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalType, System.Windows.Forms.DataVisualization.Charting.Series inputSeries, System.Windows.Forms.DataVisualization.Charting.Series outputSeries);
member this.Group : string * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * System.Windows.Forms.DataVisualization.Charting.Series * System.Windows.Forms.DataVisualization.Charting.Series -> unit
Public Sub Group (formula As String, interval As Double, intervalType As IntervalType, inputSeries As Series, outputSeries As Series)
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.
- 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
Group(String, Double, IntervalType, Double, IntervalType, String)
Groups data points 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.
public:
void Group(System::String ^ formula, double interval, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalType, double intervalOffset, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalOffsetType, System::String ^ inputSeriesName);
public void Group (string formula, double interval, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalType, double intervalOffset, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalOffsetType, string inputSeriesName);
member this.Group : string * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * string -> unit
Public Sub Group (formula As String, interval As Double, intervalType As IntervalType, intervalOffset As Double, intervalOffsetType As IntervalType, inputSeriesName As String)
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.
Applies to
Group(String, Double, IntervalType, Double, IntervalType, Series)
Groups data points in a series using one or more formulas. The series that is grouped is cleared of its original data, and used to store the new data points.
public:
void Group(System::String ^ formula, double interval, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalType, double intervalOffset, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalOffsetType, System::Windows::Forms::DataVisualization::Charting::Series ^ inputSeries);
public void Group (string formula, double interval, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalType, double intervalOffset, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalOffsetType, System.Windows.Forms.DataVisualization.Charting.Series inputSeries);
member this.Group : string * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * System.Windows.Forms.DataVisualization.Charting.Series -> unit
Public Sub Group (formula As String, interval As Double, intervalType As IntervalType, intervalOffset As Double, intervalOffsetType As IntervalType, inputSeries As Series)
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.
Applies to
Group(String, Double, IntervalType, Double, IntervalType, String, String)
Groups data points for 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.
public:
void Group(System::String ^ formula, double interval, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalType, double intervalOffset, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalOffsetType, System::String ^ inputSeriesName, System::String ^ outputSeriesName);
public void Group (string formula, double interval, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalType, double intervalOffset, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalOffsetType, string inputSeriesName, string outputSeriesName);
member this.Group : string * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * string * string -> unit
Public Sub Group (formula As String, interval As Double, intervalType As IntervalType, intervalOffset As Double, intervalOffsetType As IntervalType, inputSeriesName As String, outputSeriesName As String)
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.
- 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
Group(String, Double, IntervalType, Double, IntervalType, Series, Series)
Groups data points in 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.
public:
void Group(System::String ^ formula, double interval, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalType, double intervalOffset, System::Windows::Forms::DataVisualization::Charting::IntervalType intervalOffsetType, System::Windows::Forms::DataVisualization::Charting::Series ^ inputSeries, System::Windows::Forms::DataVisualization::Charting::Series ^ outputSeries);
public void Group (string formula, double interval, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalType, double intervalOffset, System.Windows.Forms.DataVisualization.Charting.IntervalType intervalOffsetType, System.Windows.Forms.DataVisualization.Charting.Series inputSeries, System.Windows.Forms.DataVisualization.Charting.Series outputSeries);
member this.Group : string * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * double * System.Windows.Forms.DataVisualization.Charting.IntervalType * System.Windows.Forms.DataVisualization.Charting.Series * System.Windows.Forms.DataVisualization.Charting.Series -> unit
Public Sub Group (formula As String, interval As Double, intervalType As IntervalType, intervalOffset As Double, intervalOffsetType As IntervalType, inputSeries As Series, outputSeries As Series)
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.
- 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.