XmlMappedRange.DataSeries 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.
Creates a data series in the XmlMappedRange control.
public object DataSeries (object Rowcol, Microsoft.Office.Interop.Excel.XlDataSeriesType Type = Microsoft.Office.Interop.Excel.XlDataSeriesType.xlDataSeriesLinear, Microsoft.Office.Interop.Excel.XlDataSeriesDate Date = Microsoft.Office.Interop.Excel.XlDataSeriesDate.xlDay, object Step, object Stop, object Trend);
abstract member DataSeries : obj * Microsoft.Office.Interop.Excel.XlDataSeriesType * Microsoft.Office.Interop.Excel.XlDataSeriesDate * obj * obj * obj -> obj
Public Function DataSeries (Optional Rowcol As Object, Optional Type As XlDataSeriesType = Microsoft.Office.Interop.Excel.XlDataSeriesType.xlDataSeriesLinear, Optional Date As XlDataSeriesDate = Microsoft.Office.Interop.Excel.XlDataSeriesDate.xlDay, Optional Step As Object, Optional Stop As Object, Optional Trend As Object) As Object
Parameters
- Rowcol
- Object
Can be the xlRows or xlColumns constant to have the data series entered in rows or columns, respectively. If this argument is omitted, the size and shape of the range is used.
- Type
- XlDataSeriesType
Can be one of the following XlDataSeriesType constants: xlAutoFillxlDataSeriesLinearxlChronologicalxlGrowth
- Date
- XlDataSeriesDate
If the Type
argument is xlChronological, the Date
argument indicates the step date unit.Can be one of the following XlDataSeriesDate constants:
xlDayxlWeekdayxlMonthxlYear
- Step
- Object
The step value for the series. The default value is 1 (one).
- Stop
- Object
The stop value for the series. If this argument is omitted, Microsoft Office Excel fills to the end of the range.
- Trend
- Object
true
to create a linear trend or growth trend; false
to create a standard data series. The default value is false
.
Returns
Remarks
Optional Parameters
For information on optional parameters, see Optional Parameters in Office Solutions.