com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface IErrorBarsFormat

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      IFormat getFormat()
      Represents the format of the error bars.
      int getType()
      Gets or sets type of error bars.
      float getValue()
      Gets or sets value which is used with Fixed, Percentage and StandardDeviation value types to determine the length of the error bars.
      int getValueType()
      Represents possible ways to determine the length of the error bars.
      boolean hasEndCap()
      Specifies an end cap is not drawn on the error bars.
      boolean isVisible()
      Gets or sets Error Bars visibility.
      void setEndCap(boolean value)
      Specifies an end cap is not drawn on the error bars.
      void setFormat(IFormat value)
      Represents the format of the error bars.
      void setType(int value)
      Gets or sets type of error bars.
      void setValue(float value)
      Gets or sets value which is used with Fixed, Percentage and StandardDeviation value types to determine the length of the error bars.
      void setValueType(int value)
      Represents possible ways to determine the length of the error bars.
      void setVisible(boolean value)
      Gets or sets Error Bars visibility.
    • Method Detail

      • getType

        int getType()

        Gets or sets type of error bars. Read/write ErrorBarType.

      • setType

        void setType(int value)

        Gets or sets type of error bars. Read/write ErrorBarType.

      • setValueType

        void setValueType(int value)

        Represents possible ways to determine the length of the error bars. In case of custom value type to specify value use IChartDataPoint.getErrorBarsCustomValues() property of specific data point in DataPoints collection of series. Read/write ErrorBarValueType.

      • hasEndCap

        boolean hasEndCap()

        Specifies an end cap is not drawn on the error bars. Read/write boolean.

      • setEndCap

        void setEndCap(boolean value)

        Specifies an end cap is not drawn on the error bars. Read/write boolean.

      • getValue

        float getValue()

        Gets or sets value which is used with Fixed, Percentage and StandardDeviation value types to determine the length of the error bars. Read/write float.

      • setValue

        void setValue(float value)

        Gets or sets value which is used with Fixed, Percentage and StandardDeviation value types to determine the length of the error bars. Read/write float.

      • getFormat

        IFormat getFormat()

        Represents the format of the error bars. Read/write IFormat.

      • setFormat

        void setFormat(IFormat value)

        Represents the format of the error bars. Read/write IFormat.

      • isVisible

        boolean isVisible()

        Gets or sets Error Bars visibility. Read/write boolean.

      • setVisible

        void setVisible(boolean value)

        Gets or sets Error Bars visibility. Read/write boolean.