Interface ILegend
public interface ILegend
Represents the legend in a chart.
-
Method Summary
Modifier and TypeMethodDescriptionvoiddelete()Deletes the object.getFont()Returns theIFontFormatobject that represents the font of thespecified object.Returns theIChartFormatobject.booleanGets whether to include a legend in the chart layout (True if a legend will occupy the chart layout space when a chart layout is being determined).Returns an object that represents a collection of legend entries for the legend.Returns the parent object for the specified object.Gets the position of the legend on the chart.voidsetIncludeInLayout(boolean value) Sets whether to include a legend in the chart layout (True if a legend will occupy the chart layout space when a chart layout is being determined).voidsetPosition(LegendPosition value) Sets the position of the legend on the chart.
-
Method Details
-
getFont
IFontFormat getFont()Returns theIFontFormatobject that represents the font of thespecified object. -
getFormat
IChartFormat getFormat()Returns theIChartFormatobject. -
getParent
IChart getParent()Returns the parent object for the specified object. -
getIncludeInLayout
boolean getIncludeInLayout()Gets whether to include a legend in the chart layout (True if a legend will occupy the chart layout space when a chart layout is being determined). The default value is True. -
setIncludeInLayout
void setIncludeInLayout(boolean value) Sets whether to include a legend in the chart layout (True if a legend will occupy the chart layout space when a chart layout is being determined). The default value is True. -
getPosition
LegendPosition getPosition()Gets the position of the legend on the chart. -
setPosition
Sets the position of the legend on the chart. -
getLegendEntries
ILegendEntries getLegendEntries()Returns an object that represents a collection of legend entries for the legend. -
delete
void delete()Deletes the object.
-