com.aspose.slides
Class ChartDataPointCollection

java.lang.Object
  extended by com.aspose.slides.ChartDataPointCollection
All Implemented Interfaces:
com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IChartDataPoint>, com.aspose.ms.System.Collections.ICollection<IChartDataPoint>, com.aspose.ms.System.Collections.IEnumerable<IChartDataPoint>, IChartDataPointCollection, java.lang.Iterable<IChartDataPoint>

public class ChartDataPointCollection
extends java.lang.Object
implements IChartDataPointCollection

Represents collection of a series data point.


Method Summary
 IChartDataPoint addDataPointForAreaSeries(double value)
           
 IChartDataPoint addDataPointForAreaSeries(IChartDataCell value)
           
 IChartDataPoint addDataPointForBarSeries(double value)
           
 IChartDataPoint addDataPointForBarSeries(IChartDataCell value)
           
 IChartDataPoint addDataPointForBubbleSeries(double xValue, double yValue, double bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(double xValue, double yValue, IChartDataCell bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(double xValue, IChartDataCell yValue, double bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(double xValue, IChartDataCell yValue, IChartDataCell bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(IChartDataCell xValue, double yValue, double bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(IChartDataCell xValue, double yValue, IChartDataCell bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(IChartDataCell xValue, IChartDataCell yValue, double bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(IChartDataCell xValue, IChartDataCell yValue, IChartDataCell bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(java.lang.String xValue, double yValue, double bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(java.lang.String xValue, double yValue, IChartDataCell bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(java.lang.String xValue, IChartDataCell yValue, double bubbleSize)
           
 IChartDataPoint addDataPointForBubbleSeries(java.lang.String xValue, IChartDataCell yValue, IChartDataCell bubbleSize)
           
 IChartDataPoint addDataPointForLineSeries(double value)
           
 IChartDataPoint addDataPointForLineSeries(IChartDataCell value)
           
 IChartDataPoint addDataPointForPieSeries(double value)
           
 IChartDataPoint addDataPointForPieSeries(IChartDataCell value)
           
 IChartDataPoint addDataPointForRadarSeries(double value)
           
 IChartDataPoint addDataPointForRadarSeries(IChartDataCell value)
           
 IChartDataPoint addDataPointForScatterSeries(double xValue, double yValue)
           
 IChartDataPoint addDataPointForScatterSeries(double xValue, IChartDataCell yValue)
           
 IChartDataPoint addDataPointForScatterSeries(IChartDataCell xValue, double yValue)
           
 IChartDataPoint addDataPointForScatterSeries(IChartDataCell xValue, IChartDataCell yValue)
           
 IChartDataPoint addDataPointForScatterSeries(java.lang.String xValue, double yValue)
           
 IChartDataPoint addDataPointForScatterSeries(java.lang.String xValue, IChartDataCell yValue)
           
 IChartDataPoint addDataPointForSurfaceSeries(double value)
           
 IChartDataPoint addDataPointForSurfaceSeries(IChartDataCell value)
           
 void clear()
           Removes all elements from the collection.
 void copyTo(com.aspose.ms.System.Array array, int arrayIndex)
           
 int get_Item(IChartDataPoint pt)
           Return index of data point in this collection.
 IChartDataPoint get_Item(int index)
           
 int getDataSourceTypeForBubbleSizes()
           Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual in data points BubbleSize property object.
 int getDataSourceTypeForValues()
           Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual in data points Value property object.
 int getDataSourceTypeForXValues()
           Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual in data points XValue property object.
 int getDataSourceTypeForYValues()
           Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual in data points YValue property object.
 IChartDataPoint getOrCreateDataPointByIdx(long idx)
           
 java.lang.Object getSyncRoot()
           
 boolean isSynchronized()
           
 com.aspose.ms.System.Collections.Generic.IGenericEnumerator<IChartDataPoint> iterator()
           Returns an enumerator that iterates through the collection.
 void setDataSourceTypeForBubbleSizes(int value)
           
 void setDataSourceTypeForValues(int value)
           
 void setDataSourceTypeForXValues(int value)
           
 void setDataSourceTypeForYValues(int value)
           
 int size()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

get_Item

public IChartDataPoint get_Item(int index)
Specified by:
get_Item in interface IChartDataPointCollection

get_Item

public int get_Item(IChartDataPoint pt)

Return index of data point in this collection.

Specified by:
get_Item in interface IChartDataPointCollection

getDataSourceTypeForXValues

public int getDataSourceTypeForXValues()

Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual in data points XValue property object. In other words it specifies the type of value of ChartDataPoint.XValue.Data property.

Specified by:
getDataSourceTypeForXValues in interface IChartDataPointCollection

setDataSourceTypeForXValues

public void setDataSourceTypeForXValues(int value)
Specified by:
setDataSourceTypeForXValues in interface IChartDataPointCollection

getDataSourceTypeForYValues

public int getDataSourceTypeForYValues()

Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual in data points YValue property object. In other words it specifies the type of value of ChartDataPoint.YValue.Data property.

Specified by:
getDataSourceTypeForYValues in interface IChartDataPointCollection

setDataSourceTypeForYValues

public void setDataSourceTypeForYValues(int value)
Specified by:
setDataSourceTypeForYValues in interface IChartDataPointCollection

getDataSourceTypeForBubbleSizes

public int getDataSourceTypeForBubbleSizes()

Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual in data points BubbleSize property object. In other words it specifies the type of value of ChartDataPoint.BubbleSize.Data property.

Specified by:
getDataSourceTypeForBubbleSizes in interface IChartDataPointCollection

setDataSourceTypeForBubbleSizes

public void setDataSourceTypeForBubbleSizes(int value)
Specified by:
setDataSourceTypeForBubbleSizes in interface IChartDataPointCollection

getDataSourceTypeForValues

public int getDataSourceTypeForValues()

Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual in data points Value property object. In other words it specifies the type of value of ChartDataPoint.Value.Data property.

Specified by:
getDataSourceTypeForValues in interface IChartDataPointCollection

setDataSourceTypeForValues

public void setDataSourceTypeForValues(int value)
Specified by:
setDataSourceTypeForValues in interface IChartDataPointCollection

getOrCreateDataPointByIdx

public IChartDataPoint getOrCreateDataPointByIdx(long idx)
Specified by:
getOrCreateDataPointByIdx in interface IChartDataPointCollection

size

public int size()
Specified by:
size in interface com.aspose.ms.System.Collections.ICollection<IChartDataPoint>

copyTo

public void copyTo(com.aspose.ms.System.Array array,
                   int arrayIndex)
Specified by:
copyTo in interface com.aspose.ms.System.Collections.ICollection<IChartDataPoint>

isSynchronized

public boolean isSynchronized()
Specified by:
isSynchronized in interface com.aspose.ms.System.Collections.ICollection<IChartDataPoint>

getSyncRoot

public java.lang.Object getSyncRoot()
Specified by:
getSyncRoot in interface com.aspose.ms.System.Collections.ICollection<IChartDataPoint>

iterator

public com.aspose.ms.System.Collections.Generic.IGenericEnumerator<IChartDataPoint> iterator()

Returns an enumerator that iterates through the collection.

Specified by:
iterator in interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IChartDataPoint>
Specified by:
iterator in interface com.aspose.ms.System.Collections.IEnumerable<IChartDataPoint>
Specified by:
iterator in interface java.lang.Iterable<IChartDataPoint>
Returns:
A T:System.Collections.Generic.IEnumerator`1 that can be used to iterate through the collection.

addDataPointForLineSeries

public IChartDataPoint addDataPointForLineSeries(IChartDataCell value)
Specified by:
addDataPointForLineSeries in interface IChartDataPointCollection

addDataPointForLineSeries

public IChartDataPoint addDataPointForLineSeries(double value)
Specified by:
addDataPointForLineSeries in interface IChartDataPointCollection

addDataPointForScatterSeries

public IChartDataPoint addDataPointForScatterSeries(IChartDataCell xValue,
                                                    IChartDataCell yValue)
Specified by:
addDataPointForScatterSeries in interface IChartDataPointCollection

addDataPointForScatterSeries

public IChartDataPoint addDataPointForScatterSeries(double xValue,
                                                    IChartDataCell yValue)
Specified by:
addDataPointForScatterSeries in interface IChartDataPointCollection

addDataPointForScatterSeries

public IChartDataPoint addDataPointForScatterSeries(java.lang.String xValue,
                                                    IChartDataCell yValue)
Specified by:
addDataPointForScatterSeries in interface IChartDataPointCollection

addDataPointForScatterSeries

public IChartDataPoint addDataPointForScatterSeries(IChartDataCell xValue,
                                                    double yValue)
Specified by:
addDataPointForScatterSeries in interface IChartDataPointCollection

addDataPointForScatterSeries

public IChartDataPoint addDataPointForScatterSeries(double xValue,
                                                    double yValue)
Specified by:
addDataPointForScatterSeries in interface IChartDataPointCollection

addDataPointForScatterSeries

public IChartDataPoint addDataPointForScatterSeries(java.lang.String xValue,
                                                    double yValue)
Specified by:
addDataPointForScatterSeries in interface IChartDataPointCollection

addDataPointForRadarSeries

public IChartDataPoint addDataPointForRadarSeries(IChartDataCell value)
Specified by:
addDataPointForRadarSeries in interface IChartDataPointCollection

addDataPointForRadarSeries

public IChartDataPoint addDataPointForRadarSeries(double value)
Specified by:
addDataPointForRadarSeries in interface IChartDataPointCollection

addDataPointForBarSeries

public IChartDataPoint addDataPointForBarSeries(IChartDataCell value)
Specified by:
addDataPointForBarSeries in interface IChartDataPointCollection

addDataPointForBarSeries

public IChartDataPoint addDataPointForBarSeries(double value)
Specified by:
addDataPointForBarSeries in interface IChartDataPointCollection

addDataPointForAreaSeries

public IChartDataPoint addDataPointForAreaSeries(IChartDataCell value)
Specified by:
addDataPointForAreaSeries in interface IChartDataPointCollection

addDataPointForAreaSeries

public IChartDataPoint addDataPointForAreaSeries(double value)
Specified by:
addDataPointForAreaSeries in interface IChartDataPointCollection

addDataPointForPieSeries

public IChartDataPoint addDataPointForPieSeries(IChartDataCell value)
Specified by:
addDataPointForPieSeries in interface IChartDataPointCollection

addDataPointForPieSeries

public IChartDataPoint addDataPointForPieSeries(double value)
Specified by:
addDataPointForPieSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(IChartDataCell xValue,
                                                   IChartDataCell yValue,
                                                   IChartDataCell bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(double xValue,
                                                   IChartDataCell yValue,
                                                   IChartDataCell bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(java.lang.String xValue,
                                                   IChartDataCell yValue,
                                                   IChartDataCell bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(IChartDataCell xValue,
                                                   double yValue,
                                                   IChartDataCell bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(double xValue,
                                                   double yValue,
                                                   IChartDataCell bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(java.lang.String xValue,
                                                   double yValue,
                                                   IChartDataCell bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(IChartDataCell xValue,
                                                   IChartDataCell yValue,
                                                   double bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(double xValue,
                                                   IChartDataCell yValue,
                                                   double bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(java.lang.String xValue,
                                                   IChartDataCell yValue,
                                                   double bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(IChartDataCell xValue,
                                                   double yValue,
                                                   double bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(double xValue,
                                                   double yValue,
                                                   double bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForBubbleSeries

public IChartDataPoint addDataPointForBubbleSeries(java.lang.String xValue,
                                                   double yValue,
                                                   double bubbleSize)
Specified by:
addDataPointForBubbleSeries in interface IChartDataPointCollection

addDataPointForSurfaceSeries

public IChartDataPoint addDataPointForSurfaceSeries(IChartDataCell value)
Specified by:
addDataPointForSurfaceSeries in interface IChartDataPointCollection

addDataPointForSurfaceSeries

public IChartDataPoint addDataPointForSurfaceSeries(double value)
Specified by:
addDataPointForSurfaceSeries in interface IChartDataPointCollection

clear

public void clear()

Removes all elements from the collection.

Specified by:
clear in interface IChartDataPointCollection