Show / Hide Table of Contents

Class InterpolationPoint

A single interpolation point on a gradient conditional format. These pin the gradient color scale according to the color, type and value chosen.

Inheritance
System.Object
InterpolationPoint
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class InterpolationPoint : object, IDirectResponseSchema

Properties

Color

The color this interpolation point should use.

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

ColorStyle

The color this interpolation point should use. If color is also set, this field takes precedence.

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

ETag

The ETag of the item.

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

Type

How the value should be interpreted.

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

Value

The value this interpolation point uses. May be a formula. Unused if type is MIN or MAX.

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

Implements

IDirectResponseSchema
Back to top