Package com.microstrategy.web.objects
Interface WebGraphProperty
-
public interface WebGraphProperty
The WebGraphProperty interface reprsents a graph format property. Generally, these objects are stored in anWebGraphProperties
object.- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getAttributeID()
Returns the attribute ID of the graph property.int
getObjectID()
Returns the object ID of the graph property.int
getSeriesID()
Returns the series ID of the graph property.java.lang.String
getValue()
Returns the value of the graph property.void
setValue(java.lang.String value)
Sets the current value of the graph property.
-
-
-
Method Detail
-
getValue
java.lang.String getValue()
Returns the value of the graph property.- Returns:
- The current value of the graph property.
- See Also:
setValue(java.lang.String)
-
setValue
void setValue(java.lang.String value) throws java.lang.UnsupportedOperationException
Sets the current value of the graph property.- Parameters:
value
- The new value for the property.- Throws:
java.lang.UnsupportedOperationException
- thrown if the property is read-only.- See Also:
getValue()
-
getObjectID
int getObjectID()
Returns the object ID of the graph property. A graph is composed of multiple objects (e.g. Title, Legend, Axis Title, etc).- Returns:
- The object ID of the graph property.
-
getAttributeID
int getAttributeID()
Returns the attribute ID of the graph property. Each object ID may have multiple attributes.- Returns:
- The attribute ID of the graph property.
-
getSeriesID
int getSeriesID()
Returns the series ID of the graph property. The series ID denotes the index of the series of the graph. The values vary from [0..n] depending on the number of series for the graph. For graph properties that are not series-dependent, the series ID may be returned as -1- Returns:
- The series ID of the graph property.
- Since:
- MicroStrategy Web 8.0.1
-
-