Class CTChartFormat

java.lang.Object
org.xlsx4j.sml.CTChartFormat
All Implemented Interfaces:
Child

public class CTChartFormat
extends java.lang.Object
implements Child

Java class for CT_ChartFormat complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="CT_ChartFormat">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="pivotArea" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_PivotArea"/>
       </sequence>
       <attribute name="chart" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="format" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="series" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected long chart  
    protected long format  
    protected CTPivotArea pivotArea  
    protected java.lang.Boolean series  
  • Constructor Summary

    Constructors
    Constructor Description
    CTChartFormat()  
  • Method Summary

    Modifier and Type Method Description
    void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    long getChart()
    Gets the value of the chart property.
    long getFormat()
    Gets the value of the format property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    CTPivotArea getPivotArea()
    Gets the value of the pivotArea property.
    boolean isSeries()
    Gets the value of the series property.
    void setChart​(long value)
    Sets the value of the chart property.
    void setFormat​(long value)
    Sets the value of the format property.
    void setParent​(java.lang.Object parent)  
    void setPivotArea​(CTPivotArea value)
    Sets the value of the pivotArea property.
    void setSeries​(java.lang.Boolean value)
    Sets the value of the series property.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • pivotArea

      protected CTPivotArea pivotArea
    • chart

      protected long chart
    • format

      protected long format
    • series

      protected java.lang.Boolean series
  • Constructor Details

    • CTChartFormat

      public CTChartFormat()
  • Method Details

    • getPivotArea

      public CTPivotArea getPivotArea()
      Gets the value of the pivotArea property.
      Returns:
      possible object is CTPivotArea
    • setPivotArea

      public void setPivotArea​(CTPivotArea value)
      Sets the value of the pivotArea property.
      Parameters:
      value - allowed object is CTPivotArea
    • getChart

      public long getChart()
      Gets the value of the chart property.
    • setChart

      public void setChart​(long value)
      Sets the value of the chart property.
    • getFormat

      public long getFormat()
      Gets the value of the format property.
    • setFormat

      public void setFormat​(long value)
      Sets the value of the format property.
    • isSeries

      public boolean isSeries()
      Gets the value of the series property.
      Returns:
      possible object is Boolean
    • setSeries

      public void setSeries​(java.lang.Boolean value)
      Sets the value of the series property.
      Parameters:
      value - allowed object is Boolean
    • getParent

      public java.lang.Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent​(java.lang.Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
      This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.