Class CTChartFormat

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

public class CTChartFormat extends 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 Details

    • pivotArea

      protected CTPivotArea pivotArea
    • chart

      protected long chart
    • format

      protected long format
    • series

      protected 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(Boolean value)
      Sets the value of the series property.
      Parameters:
      value - allowed object is Boolean
    • getParent

      public 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(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, 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.