Show / Hide Table of Contents

Class BasicChartSeries

A single series of data in a chart. For example, if charting stock prices over time, multiple series may exist, one for the "Open Price", "High Price", "Low Price" and "Close Price".

Inheritance
object
BasicChartSeries
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class BasicChartSeries : IDirectResponseSchema

Properties

Color

The color for elements (such as bars, lines, and points) associated with this series. If empty, a default color is used. Deprecated: Use color_style.

Declaration
[JsonProperty("color")]
public virtual Color Color { get; set; }
Property Value
Type Description
Color

ColorStyle

The color for elements (such as bars, lines, and points) associated with this series. If empty, a default color is used. If color is also set, this field takes precedence.

Declaration
[JsonProperty("colorStyle")]
public virtual ColorStyle ColorStyle { get; set; }
Property Value
Type Description
ColorStyle

DataLabel

Information about the data labels for this series.

Declaration
[JsonProperty("dataLabel")]
public virtual DataLabel DataLabel { get; set; }
Property Value
Type Description
DataLabel

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

LineStyle

The line style of this series. Valid only if the chartType is AREA, LINE, or SCATTER. COMBO charts are also supported if the series chart type is AREA or LINE.

Declaration
[JsonProperty("lineStyle")]
public virtual LineStyle LineStyle { get; set; }
Property Value
Type Description
LineStyle

PointStyle

The style for points associated with this series. Valid only if the chartType is AREA, LINE, or SCATTER. COMBO charts are also supported if the series chart type is AREA, LINE, or SCATTER. If empty, a default point style is used.

Declaration
[JsonProperty("pointStyle")]
public virtual PointStyle PointStyle { get; set; }
Property Value
Type Description
PointStyle

Series

The data being visualized in this chart series.

Declaration
[JsonProperty("series")]
public virtual ChartData Series { get; set; }
Property Value
Type Description
ChartData

StyleOverrides

Style override settings for series data points.

Declaration
[JsonProperty("styleOverrides")]
public virtual IList<BasicSeriesDataPointStyleOverride> StyleOverrides { get; set; }
Property Value
Type Description
IList<BasicSeriesDataPointStyleOverride>

TargetAxis

The minor axis that will specify the range of values for this series. For example, if charting stocks over time, the "Volume" series may want to be pinned to the right with the prices pinned to the left, because the scale of trading volume is different than the scale of prices. It is an error to specify an axis that isn't a valid minor axis for the chart's type.

Declaration
[JsonProperty("targetAxis")]
public virtual string TargetAxis { get; set; }
Property Value
Type Description
string

Type

The type of this series. Valid only if the chartType is COMBO. Different types will change the way the series is visualized. Only LINE, AREA, and COLUMN are supported.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX