com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface IPieSplitCustomPointCollection

  • All Superinterfaces:
    com.aspose.ms.System.Collections.IEnumerable<IChartDataPoint>, com.aspose.ms.System.Collections.Generic.IGenericCollection<IChartDataPoint>, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IChartDataPoint>, java.lang.Iterable<IChartDataPoint>
    All Known Implementing Classes:
    PieSplitCustomPointCollection


    public interface IPieSplitCustomPointCollection
    extends com.aspose.ms.System.Collections.Generic.IGenericCollection<IChartDataPoint>

    Represents a collection of points that shall be drawn in the second pie or bar on a bar-of-pie or pie-of-pie chart with a custom split.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      void add(int dataPointIndex)
      Adds data point by its index in parent series points collection.
      IChartDataPoint get_Item(int index)
      Returns chart data point by index.
      void remove(int dataPointIndex)
      Removes item from collection by it index in parent series points collection.
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericCollection

        addItem, clear, containsItem, copyToTArray, isReadOnly, removeItem, size
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable

        iterator
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • get_Item

        IChartDataPoint get_Item(int index)

        Returns chart data point by index.

        Parameters:
        index - Index of data-point.
        Returns:
        Chart data point.
      • add

        void add(int dataPointIndex)

        Adds data point by its index in parent series points collection.

        Parameters:
        dataPointIndex - Index of data point in parent series points collection.
      • remove

        void remove(int dataPointIndex)

        Removes item from collection by it index in parent series points collection.

        Parameters:
        dataPointIndex - Index of data point in parent series points collection..