Interface ITickLabels
public interface ITickLabels
Represents the tick mark labels associated with tick marks on a chart axis.
-
Method Summary
Modifier and TypeMethodDescriptionGets the text direction.getFont()Returns theIFontFormatobject that represents the font of thespecified object.Gets the format code for the object.booleanGets whether the number format is linked to the cells (True if the number format is linked to the cells, so that the number format changes in the labels when it changes in the cells).intGets the distance between the levels of labels and the distance between the first level and the axis line.intGets the text orientation.Returns the parent object for the specified object.voidsetDirection(TextDirection value) Sets the text direction.voidsetNumberFormat(String value) Sets the format code for the object.voidsetNumberFormatLinked(boolean value) Sets whether the number format is linked to the cells (True if the number format is linked to the cells, so that the number format changes in the labels when it changes in the cells).voidsetOffset(int value) Sets the distance between the levels of labels and the distance between the first level and the axis line.voidsetOrientation(int value) Sets the text orientation.
-
Method Details
-
getFont
IFontFormat getFont()Returns theIFontFormatobject that represents the font of thespecified object. -
getNumberFormat
String getNumberFormat()Gets the format code for the object. -
setNumberFormat
Sets the format code for the object. -
getNumberFormatLinked
boolean getNumberFormatLinked()Gets whether the number format is linked to the cells (True if the number format is linked to the cells, so that the number format changes in the labels when it changes in the cells). -
setNumberFormatLinked
void setNumberFormatLinked(boolean value) Sets whether the number format is linked to the cells (True if the number format is linked to the cells, so that the number format changes in the labels when it changes in the cells). -
getOffset
int getOffset()Gets the distance between the levels of labels and the distance between the first level and the axis line. -
setOffset
void setOffset(int value) Sets the distance between the levels of labels and the distance between the first level and the axis line. -
getOrientation
int getOrientation()Gets the text orientation. -
setOrientation
void setOrientation(int value) Sets the text orientation. Can be an integer value from –90 to 90 degrees. -
getDirection
TextDirection getDirection()Gets the text direction. -
setDirection
Sets the text direction. -
getParent
IAxis getParent()Returns the parent object for the specified object.
-