Package com.microsoft.graph.models
Class WorkbookChartAxis
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.WorkbookChartAxis
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class WorkbookChartAxis
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workbook Chart Axis.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Format.The Major Gridlines.com.google.gson.JsonElement
The Major Unit.com.google.gson.JsonElement
The Maximum.com.google.gson.JsonElement
The Minimum.The Minor Gridlines.com.google.gson.JsonElement
The Minor Unit.The Title. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
majorUnit
@SerializedName(value="majorUnit", alternate="MajorUnit") @Expose @Nullable public com.google.gson.JsonElement majorUnitThe Major Unit. Represents the interval between two major tick marks. Can be set to a numeric value or an empty string. The returned value is always a number. -
maximum
@SerializedName(value="maximum", alternate="Maximum") @Expose @Nullable public com.google.gson.JsonElement maximumThe Maximum. Represents the maximum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number. -
minimum
@SerializedName(value="minimum", alternate="Minimum") @Expose @Nullable public com.google.gson.JsonElement minimumThe Minimum. Represents the minimum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number. -
minorUnit
@SerializedName(value="minorUnit", alternate="MinorUnit") @Expose @Nullable public com.google.gson.JsonElement minorUnitThe Minor Unit. Represents the interval between two minor tick marks. 'Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number. -
format
@SerializedName(value="format", alternate="Format") @Expose @Nullable public WorkbookChartAxisFormat formatThe Format. Represents the formatting of a chart object, which includes line and font formatting. Read-only. -
majorGridlines
@SerializedName(value="majorGridlines", alternate="MajorGridlines") @Expose @Nullable public WorkbookChartGridlines majorGridlinesThe Major Gridlines. Returns a gridlines object that represents the major gridlines for the specified axis. Read-only. -
minorGridlines
@SerializedName(value="minorGridlines", alternate="MinorGridlines") @Expose @Nullable public WorkbookChartGridlines minorGridlinesThe Minor Gridlines. Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. -
title
@SerializedName(value="title", alternate="Title") @Expose @Nullable public WorkbookChartAxisTitle titleThe Title. Represents the axis title. Read-only.
-
-
Constructor Details
-
WorkbookChartAxis
public WorkbookChartAxis()
-
-
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:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-