Package com.microsoft.graph.models
Class WorkbookChart
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.WorkbookChart
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class WorkbookChart
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workbook Chart.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Axes.The Data Labels.The Format.The Height.The Left.The Legend.The Name.The Series.The Title.The Top.The Width.The Worksheet. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
height
The Height. Represents the height, in points, of the chart object. -
left
The Left. The distance, in points, from the left side of the chart to the worksheet origin. -
name
The Name. Represents the name of a chart object. -
top
The Top. Represents the distance, in points, from the top edge of the object to the top of row 1 (on a worksheet) or the top of the chart area (on a chart). -
width
The Width. Represents the width, in points, of the chart object. -
axes
The Axes. Represents chart axes. Read-only. -
dataLabels
@SerializedName(value="dataLabels", alternate="DataLabels") @Expose @Nullable public WorkbookChartDataLabels dataLabelsThe Data Labels. Represents the datalabels on the chart. Read-only. -
format
@SerializedName(value="format", alternate="Format") @Expose @Nullable public WorkbookChartAreaFormat formatThe Format. Encapsulates the format properties for the chart area. Read-only. -
legend
@SerializedName(value="legend", alternate="Legend") @Expose @Nullable public WorkbookChartLegend legendThe Legend. Represents the legend for the chart. Read-only. -
series
@SerializedName(value="series", alternate="Series") @Expose @Nullable public WorkbookChartSeriesCollectionPage seriesThe Series. Represents either a single series or collection of series in the chart. Read-only. -
title
The Title. Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. -
worksheet
@SerializedName(value="worksheet", alternate="Worksheet") @Expose @Nullable public WorkbookWorksheet worksheetThe Worksheet. The worksheet containing the current chart. Read-only.
-
-
Constructor Details
-
WorkbookChart
public WorkbookChart()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-