[][src]Struct vega_lite_3::AreaConfig

pub struct AreaConfig {
    pub align: Option<Align>,
    pub angle: Option<f64>,
    pub baseline: Option<TextBaseline>,
    pub color: Option<String>,
    pub corner_radius: Option<f64>,
    pub cursor: Option<Cursor>,
    pub dir: Option<Dir>,
    pub dx: Option<f64>,
    pub dy: Option<f64>,
    pub ellipsis: Option<String>,
    pub fill: Option<String>,
    pub filled: Option<bool>,
    pub fill_opacity: Option<f64>,
    pub font: Option<String>,
    pub font_size: Option<f64>,
    pub font_style: Option<String>,
    pub font_weight: Option<FontWeight>,
    pub height: Option<f64>,
    pub href: Option<String>,
    pub interpolate: Option<Interpolate>,
    pub limit: Option<f64>,
    pub line: Option<Line>,
    pub opacity: Option<f64>,
    pub order: Option<bool>,
    pub orient: Option<Orientation>,
    pub point: Option<PointUnion>,
    pub radius: Option<f64>,
    pub shape: Option<String>,
    pub size: Option<f64>,
    pub stroke: Option<String>,
    pub stroke_cap: Option<StrokeCap>,
    pub stroke_dash: Option<Vec<f64>>,
    pub stroke_dash_offset: Option<f64>,
    pub stroke_join: Option<StrokeJoin>,
    pub stroke_miter_limit: Option<f64>,
    pub stroke_opacity: Option<f64>,
    pub stroke_width: Option<f64>,
    pub tension: Option<f64>,
    pub text: Option<String>,
    pub theta: Option<f64>,
    pub tooltip: RemovableValue<TooltipUnion>,
    pub width: Option<f64>,
    pub x: Option<XUnion>,
    pub x2: Option<XUnion>,
    pub y: Option<YUnion>,
    pub y2: Option<XUnion>,
}

Area-Specific Config

Fields

align: Option<Align>

The horizontal alignment of the text. One of "left", "right", "center".

angle: Option<f64>

The rotation angle of the text, in degrees.

baseline: Option<TextBaseline>

The vertical alignment of the text. One of "top", "middle", "bottom".

Default value: "middle"

color: Option<String>

Default color. Note that fill and stroke have higher precedence than color and will override color.

Default value: "#4682b4"

Note: This property cannot be used in a style config.

corner_radius: Option<f64>

The radius in pixels of rounded rectangle corners.

Default value: 0

cursor: Option<Cursor>

The mouse cursor used over the mark. Any valid CSS cursor type can be used.

dir: Option<Dir>

The direction of the text. One of "ltr" (left-to-right) or "rtl" (right-to-left). This property determines on which side is truncated in response to the limit parameter.

Default value: "ltr"

dx: Option<f64>

The horizontal offset, in pixels, between the text label and its anchor point. The offset is applied after rotation by the angle property.

dy: Option<f64>

The vertical offset, in pixels, between the text label and its anchor point. The offset is applied after rotation by the angle property.

ellipsis: Option<String>

The ellipsis string for text truncated in response to the limit parameter.

Default value: "…"

fill: Option<String>

Default Fill Color. This has higher precedence than config.color

Default value: (None)

filled: Option<bool>

Whether the mark's color should be used as fill color instead of stroke color.

Default value: false for point, line and rule; otherwise, true.

Note: This property cannot be used in a style config.

fill_opacity: Option<f64>

The fill opacity (value between [0,1]).

Default value: 1

font: Option<String>

The typeface to set the text in (e.g., "Helvetica Neue").

font_size: Option<f64>

The font size, in pixels.

font_style: Option<String>

The font style (e.g., "italic").

font_weight: Option<FontWeight>

The font weight. This can be either a string (e.g "bold", "normal") or a number (100, 200, 300, ..., 900 where "normal" = 400 and "bold" = 700).

height: Option<f64>

Height of the marks.

href: Option<String>

A URL to load upon mouse click. If defined, the mark acts as a hyperlink.

interpolate: Option<Interpolate>

The line interpolation method to use for line and area marks. One of the following:

  • "linear": piecewise linear segments, as in a polyline.
  • "linear-closed": close the linear segments to form a polygon.
  • "step": alternate between horizontal and vertical segments, as in a step function.
  • "step-before": alternate between vertical and horizontal segments, as in a step function.
  • "step-after": alternate between horizontal and vertical segments, as in a step function.
  • "basis": a B-spline, with control point duplication on the ends.
  • "basis-open": an open B-spline; may not intersect the start or end.
  • "basis-closed": a closed B-spline, as in a loop.
  • "cardinal": a Cardinal spline, with control point duplication on the ends.
  • "cardinal-open": an open Cardinal spline; may not intersect the start or end, but will intersect other control points.
  • "cardinal-closed": a closed Cardinal spline, as in a loop.
  • "bundle": equivalent to basis, except the tension parameter is used to straighten the spline.
  • "monotone": cubic interpolation that preserves monotonicity in y.
limit: Option<f64>

The maximum length of the text mark in pixels. The text value will be automatically truncated if the rendered size exceeds the limit.

Default value: 0, indicating no limit

line: Option<Line>

A flag for overlaying line on top of area marks, or an object defining the properties of the overlayed lines.

  • If this value is an empty object ({}) or true, lines with default properties will be used.

  • If this value is false, no lines would be automatically added to area marks.

Default value: false.

opacity: Option<f64>

The overall opacity (value between [0,1]).

Default value: 0.7 for non-aggregate plots with point, tick, circle, or square marks or layered bar charts and 1 otherwise.

order: Option<bool>

For line and trail marks, this order property can be set to null or false to make the lines use the original order in the data sources.

orient: Option<Orientation>

The orientation of a non-stacked bar, tick, area, and line charts. The value is either horizontal (default) or vertical.

  • For bar, rule and tick, this determines whether the size of the bar and tick should be applied to x or y dimension.
  • For area, this property determines the orient property of the Vega output.
  • For line and trail marks, this property determines the sort order of the points in the line if config.sortLineBy is not specified. For stacked charts, this is always determined by the orientation of the stack; therefore explicitly specified value will be ignored.
point: Option<PointUnion>

A flag for overlaying points on top of line or area marks, or an object defining the properties of the overlayed points.

  • If this property is "transparent", transparent points will be used (for enhancing tooltips and selections).

  • If this property is an empty object ({}) or true, filled points with default properties will be used.

  • If this property is false, no points would be automatically added to line or area marks.

Default value: false.

radius: Option<f64>

Polar coordinate radial offset, in pixels, of the text label from the origin determined by the x and y properties.

shape: Option<String>

Shape of the point marks. Supported values include:

  • plotting shapes: "circle", "square", "cross", "diamond", "triangle-up", "triangle-down", "triangle-right", or "triangle-left".
  • the line symbol "stroke"
  • centered directional shapes "arrow", "wedge", or "triangle"
  • a custom SVG path string (For correct sizing, custom shape paths should be defined within a square bounding box with coordinates ranging from -1 to 1 along both the x and y dimensions.)

Default value: "circle"

size: Option<f64>

Default size for marks.

  • For point/circle/square, this represents the pixel area of the marks. For example: in the case of circles, the radius is determined in part by the square root of the size value.
  • For bar, this represents the band size of the bar, in pixels.
  • For text, this represents the font size, in pixels.

Default value: 30 for point, circle, square marks; rangeStep - 1 for bar marks with discrete dimensions; 5 for bar marks with continuous dimensions; 11 for text marks.

stroke: Option<String>

Default Stroke Color. This has higher precedence than config.color

Default value: (None)

stroke_cap: Option<StrokeCap>

The stroke cap for line ending style. One of "butt", "round", or "square".

Default value: "square"

stroke_dash: Option<Vec<f64>>

An array of alternating stroke, space lengths for creating dashed or dotted lines.

stroke_dash_offset: Option<f64>

The offset (in pixels) into which to begin drawing with the stroke dash array.

stroke_join: Option<StrokeJoin>

The stroke line join method. One of "miter", "round" or "bevel".

Default value: "miter"

stroke_miter_limit: Option<f64>

The miter limit at which to bevel a line join.

stroke_opacity: Option<f64>

The stroke opacity (value between [0,1]).

Default value: 1

stroke_width: Option<f64>

The stroke width, in pixels.

tension: Option<f64>

Depending on the interpolation type, sets the tension parameter (for line and area marks).

text: Option<String>

Placeholder text if the text channel is not specified

theta: Option<f64>

Polar coordinate angle, in radians, of the text label from the origin determined by the x and y properties. Values for theta follow the same convention of arc mark startAngle and endAngle properties: angles are measured in radians, with 0 indicating "north".

tooltip: RemovableValue<TooltipUnion>

The tooltip text string to show upon mouse hover or an object defining which fields should the tooltip be derived from.

  • If tooltip is {"content": "encoding"}, then all fields from encoding will be used.
  • If tooltip is {"content": "data"}, then all fields that appear in the highlighted data point will be used.
  • If set to null, then no tooltip will be used.
width: Option<f64>

Width of the marks.

x: Option<XUnion>

X coordinates of the marks, or width of horizontal "bar" and "area" without specified x2 or width.

The value of this channel can be a number or a string "width" for the width of the plot.

x2: Option<XUnion>

X2 coordinates for ranged "area", "bar", "rect", and "rule".

The value of this channel can be a number or a string "width" for the width of the plot.

y: Option<YUnion>

Y coordinates of the marks, or height of vertical "bar" and "area" without specified y2 or height.

The value of this channel can be a number or a string "height" for the height of the plot.

y2: Option<XUnion>

Y2 coordinates for ranged "area", "bar", "rect", and "rule".

The value of this channel can be a number or a string "height" for the height of the plot.

Trait Implementations

impl Clone for AreaConfig[src]

impl Debug for AreaConfig[src]

impl Default for AreaConfig[src]

impl<'de> Deserialize<'de> for AreaConfig[src]

impl Serialize for AreaConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.