DataManipulator.GroupByAxisLabel 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 from one or more series by axis labels.
Overloads
GroupByAxisLabel(String, Series, Series) |
Groups the data points in a series by axis labels, using one or more formulas. An output series is used to store the grouped data points. |
GroupByAxisLabel(String, String, String) |
Groups the data points in one or more series by axis labels, using one or more formulas. Output series are used to store the grouped data points. |
GroupByAxisLabel(String, Series) |
Groups data points in a series by axis labels, using one or more formulas. Original data point values are cleared, and the series then stores the new grouped data points. |
GroupByAxisLabel(String, String) |
Groups data points from one or more series by axis labels, using one or more formulas. Original data point values are cleared, and each of the series then stores its new grouped data points. |
GroupByAxisLabel(String, Series, Series)
Groups the data points in a series by axis labels, using one or more formulas. An output series is used to store the grouped data points.
public:
void GroupByAxisLabel(System::String ^ formula, System::Web::UI::DataVisualization::Charting::Series ^ inputSeries, System::Web::UI::DataVisualization::Charting::Series ^ outputSeries);
public void GroupByAxisLabel (string formula, System.Web.UI.DataVisualization.Charting.Series inputSeries, System.Web.UI.DataVisualization.Charting.Series outputSeries);
member this.GroupByAxisLabel : string * System.Web.UI.DataVisualization.Charting.Series * System.Web.UI.DataVisualization.Charting.Series -> unit
Public Sub GroupByAxisLabel (formula As String, 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.
- 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
GroupByAxisLabel(String, String, String)
Groups the data points in one or more series by axis labels, using one or more formulas. Output series are used to store the grouped data points.
public:
void GroupByAxisLabel(System::String ^ formula, System::String ^ inputSeriesName, System::String ^ outputSeriesName);
public void GroupByAxisLabel (string formula, string inputSeriesName, string outputSeriesName);
member this.GroupByAxisLabel : string * string * string -> unit
Public Sub GroupByAxisLabel (formula As String, 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.
- 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
GroupByAxisLabel(String, Series)
Groups data points in a series by axis labels, using one or more formulas. Original data point values are cleared, and the series then stores the new grouped data points.
public:
void GroupByAxisLabel(System::String ^ formula, System::Web::UI::DataVisualization::Charting::Series ^ inputSeries);
public void GroupByAxisLabel (string formula, System.Web.UI.DataVisualization.Charting.Series inputSeries);
member this.GroupByAxisLabel : string * System.Web.UI.DataVisualization.Charting.Series -> unit
Public Sub GroupByAxisLabel (formula As String, 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.
Applies to
GroupByAxisLabel(String, String)
Groups data points from one or more series by axis labels, using one or more formulas. Original data point values are cleared, and each of the series then stores its new grouped data points.
public:
void GroupByAxisLabel(System::String ^ formula, System::String ^ inputSeriesName);
public void GroupByAxisLabel (string formula, string inputSeriesName);
member this.GroupByAxisLabel : string * string -> unit
Public Sub GroupByAxisLabel (formula As String, 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.