Package gov.nasa.gsfc.sscweb.schema
Class GraphFormatOptions
java.lang.Object
gov.nasa.gsfc.sscweb.schema.GraphFormatOptions
Manual scale values for an SSC graphing request.
<p>Java class for GraphFormatOptions complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="GraphFormatOptions">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="CustomLabelOptions" type="{http://sscweb.gsfc.nasa.gov/schema}GraphLabelOptions" minOccurs="0"/>
<element name="CharSize" type="{http://www.w3.org/2001/XMLSchema}float"/>
<element name="SymbolSize" type="{http://www.w3.org/2001/XMLSchema}float"/>
</sequence>
</restriction>
</complexContent>
</complexType>
}</pre>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected floatSpecifies the character size.protected GraphLabelOptionsSpecifies custom labels.protected floatSpecifies the symbol and tick size. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfloatSpecifies the character size.Specifies custom labels.floatSpecifies the symbol and tick size.voidsetCharSize(float value) Sets the value of the charSize property.voidSets the value of the customLabelOptions property.voidsetSymbolSize(float value) Sets the value of the symbolSize property.
-
Field Details
-
customLabelOptions
Specifies custom labels. If not present, use auto labeling. -
charSize
protected float charSizeSpecifies the character size. -
symbolSize
protected float symbolSizeSpecifies the symbol and tick size.
-
-
Constructor Details
-
GraphFormatOptions
public GraphFormatOptions()
-
-
Method Details
-
getCustomLabelOptions
Specifies custom labels. If not present, use auto labeling.- Returns:
- possible object is
GraphLabelOptions
-
setCustomLabelOptions
Sets the value of the customLabelOptions property.- Parameters:
value- allowed object isGraphLabelOptions- See Also:
-
getCharSize
public float getCharSize()Specifies the character size. -
setCharSize
public void setCharSize(float value) Sets the value of the charSize property. -
getSymbolSize
public float getSymbolSize()Specifies the symbol and tick size. -
setSymbolSize
public void setSymbolSize(float value) Sets the value of the symbolSize property.
-