Interface IPoint
public interface IPoint
Represents a single point in a chart series.
-
Method Summary
Modifier and TypeMethodDescriptionReturns theIDataLabelobject that represents the data labelassociated with the point.intGets the explosion value for a pie-chart or doughnut-chart slice.Returns theIChartFormatobject.booleanGets whether a point has a three-dimensional appearance.booleanGets whether the point has a data label.booleanGets whether Microsoft Excel inverts the pattern in the item when it corresponds to a negative number.booleanGets whether the point is a total data point.Gets the marker format for this point.intGets the data marker size in points.Gets the marker style for a point or series in a line, scatter, or radar chart.Returns the parent object for the specified object.Gets the way pictures are displayed on a column or bar picture chart.doubleGets the unit for each picture on the chart if the PictureType property is set to StackScale (if not, this property is ignored).booleanGets whether the point is in a secondary section (True if the point is in the secondary section of a pie or bar section of a pie chart).voidsetExplosion(int value) Sets the explosion value for a pie-chart or doughnut-chart slice.voidsetHas3DEffect(boolean value) Sets whether a point has a three-dimensional appearance.voidsetHasDataLabel(boolean value) Sets whether the point has a data label.voidsetInvertIfNegative(boolean value) Sets whether Microsoft Excel inverts the pattern in the item when it corresponds to a negative number.voidsetIsTotal(boolean value) Sets whether the point is a total data point.voidsetMarkerSize(int value) Sets the data marker size in points.voidsetMarkerStyle(MarkerStyle value) Sets the marker style for a point or series in a line, scatter, or radar chart.voidsetPictureType(DrawingPictureType value) Sets the way pictures are displayed on a column or bar picture chart.voidsetPictureUnit(double value) Sets the unit for each picture on the chart if the PictureType property is set to StackScale (if not, this property is ignored).voidsetSecondaryPlot(boolean value) Sets whether the point is in a secondary section (True if the point is in the secondary section of a pie or bar section of a pie chart).
-
Method Details
-
getDataLabel
IDataLabel getDataLabel()Returns theIDataLabelobject that represents the data labelassociated with the point. -
getExplosion
int getExplosion()Gets the explosion value for a pie-chart or doughnut-chart slice. Returns 0 (zero) if there is no explosion (the tip of the slice is in the center of the pie). -
setExplosion
void setExplosion(int value) Sets the explosion value for a pie-chart or doughnut-chart slice. Returns 0 (zero) if there is no explosion (the tip of the slice is in the center of the pie). -
getFormat
IChartFormat getFormat()Returns theIChartFormatobject. -
getHas3DEffect
boolean getHas3DEffect()Gets whether a point has a three-dimensional appearance. -
setHas3DEffect
void setHas3DEffect(boolean value) Sets whether a point has a three-dimensional appearance. -
getHasDataLabel
boolean getHasDataLabel()Gets whether the point has a data label. -
setHasDataLabel
void setHasDataLabel(boolean value) Sets whether the point has a data label. -
getInvertIfNegative
boolean getInvertIfNegative()Gets whether Microsoft Excel inverts the pattern in the item when it corresponds to a negative number. -
setInvertIfNegative
void setInvertIfNegative(boolean value) Sets whether Microsoft Excel inverts the pattern in the item when it corresponds to a negative number. -
getMarkerFormat
IChartFormat getMarkerFormat()Gets the marker format for this point. -
getMarkerSize
int getMarkerSize()Gets the data marker size in points. -
setMarkerSize
void setMarkerSize(int value) Sets the data marker size in points. -
getMarkerStyle
MarkerStyle getMarkerStyle()Gets the marker style for a point or series in a line, scatter, or radar chart. -
setMarkerStyle
Sets the marker style for a point or series in a line, scatter, or radar chart. -
getParent
ISeries getParent()Returns the parent object for the specified object. -
getPictureType
DrawingPictureType getPictureType()Gets the way pictures are displayed on a column or bar picture chart. -
setPictureType
Sets the way pictures are displayed on a column or bar picture chart. -
getPictureUnit
double getPictureUnit()Gets the unit for each picture on the chart if the PictureType property is set to StackScale (if not, this property is ignored). -
setPictureUnit
void setPictureUnit(double value) Sets the unit for each picture on the chart if the PictureType property is set to StackScale (if not, this property is ignored). -
getSecondaryPlot
boolean getSecondaryPlot()Gets whether the point is in a secondary section (True if the point is in the secondary section of a pie or bar section of a pie chart). Applies only to points on the pie or bar section of pie charts. -
setSecondaryPlot
void setSecondaryPlot(boolean value) Sets whether the point is in a secondary section (True if the point is in the secondary section of a pie or bar section of a pie chart). Applies only to points on the pie or bar section of pie charts. -
getIsTotal
boolean getIsTotal()Gets whether the point is a total data point. Valid only for waterfall charts. -
setIsTotal
void setIsTotal(boolean value) Sets whether the point is a total data point. Valid only for waterfall charts.
-