Show / Hide Table of Contents

Class BubbleChartSpec

A bubble chart.

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

Properties

BubbleBorderColor

The bubble border color.

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

BubbleBorderColorStyle

The bubble border color. If bubble_border_color is also set, this field takes precedence.

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

BubbleLabels

The data containing the bubble labels. These do not need to be unique.

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

BubbleMaxRadiusSize

The max radius size of the bubbles, in pixels. If specified, the field must be a positive value.

Declaration
[JsonProperty("bubbleMaxRadiusSize")]
public virtual int? BubbleMaxRadiusSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

BubbleMinRadiusSize

The minimum radius size of the bubbles, in pixels. If specific, the field must be a positive value.

Declaration
[JsonProperty("bubbleMinRadiusSize")]
public virtual int? BubbleMinRadiusSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

BubbleOpacity

The opacity of the bubbles between 0 and 1.0. 0 is fully transparent and 1 is fully opaque.

Declaration
[JsonProperty("bubbleOpacity")]
public virtual float? BubbleOpacity { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

BubbleSizes

The data containing the bubble sizes. Bubble sizes are used to draw the bubbles at different sizes relative to each other. If specified, group_ids must also be specified. This field is optional.

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

BubbleTextStyle

The format of the text inside the bubbles. Strikethrough, underline, and link are not supported.

Declaration
[JsonProperty("bubbleTextStyle")]
public virtual TextFormat BubbleTextStyle { get; set; }
Property Value
Type Description
TextFormat

Domain

The data containing the bubble x-values. These values locate the bubbles in the chart horizontally.

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

ETag

The ETag of the item.

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

GroupIds

The data containing the bubble group IDs. All bubbles with the same group ID are drawn in the same color. If bubble_sizes is specified then this field must also be specified but may contain blank values. This field is optional.

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

LegendPosition

Where the legend of the chart should be drawn.

Declaration
[JsonProperty("legendPosition")]
public virtual string LegendPosition { get; set; }
Property Value
Type Description
System.String

Series

The data containing the bubble y-values. These values locate the bubbles in the chart vertically.

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

Implements

IDirectResponseSchema
In This Article
Back to top