com.microstrategy.web.objects.WebGraphProperty |
The WebGraphProperty interface reprsents a graph format property. Generally,
these objects are stored in an WebGraphProperties
object.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract int |
getAttributeID()
Returns the attribute ID of the graph property.
| ||||||||||
abstract int |
getObjectID()
Returns the object ID of the graph property.
| ||||||||||
abstract int |
getSeriesID()
Returns the series ID of the graph property.
| ||||||||||
abstract String |
getValue()
Returns the value of the graph property.
| ||||||||||
abstract void |
setValue(String value)
Sets the current value of the graph property.
|
Returns the attribute ID of the graph property. Each object ID may have multiple attributes.
Returns the object ID of the graph property. A graph is composed of multiple objects (e.g. Title, Legend, Axis Title, etc).
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 value of the graph property.
Sets the current value of the graph property.
value | The new value for the property. |
---|
UnsupportedOperationException | thrown if the property is read-only. |
---|