pub struct BaselineValueFormat {
pub comparison_type: Option<String>,
pub description: Option<String>,
pub negative_color: Option<Color>,
pub negative_color_style: Option<ColorStyle>,
pub position: Option<TextPosition>,
pub positive_color: Option<Color>,
pub positive_color_style: Option<ColorStyle>,
pub text_format: Option<TextFormat>,
}Expand description
Formatting options for baseline value.
This type is not used in any activity, and only used as part of another schema.
Fields§
§comparison_type: Option<String>The comparison type of key value with baseline value.
description: Option<String>Description which is appended after the baseline value. This field is optional.
negative_color: Option<Color>Color to be used, in case baseline value represents a negative change for key value. This field is optional. Deprecated: Use negative_color_style.
negative_color_style: Option<ColorStyle>Color to be used, in case baseline value represents a negative change for key value. This field is optional. If negative_color is also set, this field takes precedence.
position: Option<TextPosition>Specifies the horizontal text positioning of baseline value. This field is optional. If not specified, default positioning is used.
positive_color: Option<Color>Color to be used, in case baseline value represents a positive change for key value. This field is optional. Deprecated: Use positive_color_style.
positive_color_style: Option<ColorStyle>Color to be used, in case baseline value represents a positive change for key value. This field is optional. If positive_color is also set, this field takes precedence.
text_format: Option<TextFormat>Text formatting options for baseline value. The link field is not supported.
Trait Implementations§
Source§impl Clone for BaselineValueFormat
impl Clone for BaselineValueFormat
Source§fn clone(&self) -> BaselineValueFormat
fn clone(&self) -> BaselineValueFormat
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more