IChartDataPointCollectionAddDataPointForBubbleSeries Method (IChartDataCell, IChartDataCell, IChartDataCell) |
Creates the new data point and adds it to the end of collection.
Applicable for series which chartType is one of Bubble subtypes (see also ChartTypeCharacterizer.IsChartTypeBubble(ChartType) method).
Namespace:
Aspose.Slides.Charts
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
SyntaxIChartDataPoint AddDataPointForBubbleSeries(
IChartDataCell xValue,
IChartDataCell yValue,
IChartDataCell bubbleSize
)
Function AddDataPointForBubbleSeries (
xValue As IChartDataCell,
yValue As IChartDataCell,
bubbleSize As IChartDataCell
) As IChartDataPoint
IChartDataPoint^ AddDataPointForBubbleSeries(
IChartDataCell^ xValue,
IChartDataCell^ yValue,
IChartDataCell^ bubbleSize
)
abstract AddDataPointForBubbleSeries :
xValue : IChartDataCell *
yValue : IChartDataCell *
bubbleSize : IChartDataCell -> IChartDataPoint
Parameters
- xValue
- Type: Aspose.Slides.ChartsIChartDataCell
Data point XValue - yValue
- Type: Aspose.Slides.ChartsIChartDataCell
Data point YValue - bubbleSize
- Type: Aspose.Slides.ChartsIChartDataCell
Data point BubbleSize
Return Value
Type:
IChartDataPointNew data point.
See Also