Show / Hide Table of Contents

Class OrgChartSpec

An org chart. Org charts require a unique set of labels in labels and may optionally include parent_labels and tooltips. parent_labels contain, for each node, the label identifying the parent node. tooltips contain, for each node, an optional tooltip. For example, to describe an OrgChart with Alice as the CEO, Bob as the President (reporting to Alice) and Cathy as VP of Sales (also reporting to Alice), have labels contain "Alice", "Bob", "Cathy", parent_labels contain "", "Alice", "Alice" and tooltips contain "CEO", "President", "VP Sales".

Inheritance
object
OrgChartSpec
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 OrgChartSpec : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Labels

The data containing the labels for all the nodes in the chart. Labels must be unique.

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

NodeColor

The color of the org chart nodes. Deprecated: Use node_color_style.

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

NodeColorStyle

The color of the org chart nodes. If node_color is also set, this field takes precedence.

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

NodeSize

The size of the org chart nodes.

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

ParentLabels

The data containing the label of the parent for the corresponding node. A blank value indicates that the node has no parent and is a top-level node. This field is optional.

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

SelectedNodeColor

The color of the selected org chart nodes. Deprecated: Use selected_node_color_style.

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

SelectedNodeColorStyle

The color of the selected org chart nodes. If selected_node_color is also set, this field takes precedence.

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

Tooltips

The data containing the tooltip for the corresponding node. A blank value results in no tooltip being displayed for the node. This field is optional.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX