Struct google_fusiontables2::StyleFunctionGradient[][src]

pub struct StyleFunctionGradient {
    pub max: Option<f64>,
    pub colors: Option<Vec<StyleFunctionGradientColors>>,
    pub min: Option<f64>,
}

Gradient function that interpolates a range of colors based on column value.

This type is not used in any activity, and only used as part of another schema.

Fields

Higher-end of the interpolation range: rows with this value will be assigned to colors[n-1].

Array with two or more colors.

Lower-end of the interpolation range: rows with this value will be assigned to colors[0].

Trait Implementations

impl Default for StyleFunctionGradient
[src]

Returns the "default value" for a type. Read more

impl Clone for StyleFunctionGradient
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StyleFunctionGradient
[src]

Formats the value using the given formatter. Read more

impl NestedType for StyleFunctionGradient
[src]

impl Part for StyleFunctionGradient
[src]

Auto Trait Implementations