[][src]Struct vega_lite_3::MarkDefClass

pub struct MarkDefClass {
    pub def_box: Option<DefBox>,
    pub clip: Option<bool>,
    pub color: Option<String>,
    pub extent: Option<BoxPlotDefExtent>,
    pub median: Option<DefBox>,
    pub opacity: Option<f64>,
    pub orient: Option<Orientation>,
    pub outliers: Option<DefBox>,
    pub rule: Option<DefBox>,
    pub size: Option<f64>,
    pub ticks: Option<DefBox>,
    pub def_type: Option<Mark>,
    pub band: Option<DefBox>,
    pub borders: Option<DefBox>,
    pub interpolate: Option<Interpolate>,
    pub tension: Option<f64>,
    pub align: Option<Align>,
    pub angle: Option<f64>,
    pub baseline: Option<TextBaseline>,
    pub bin_spacing: Option<f64>,
    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 limit: Option<f64>,
    pub line: Option<Line>,
    pub order: Option<bool>,
    pub point: Option<PointUnion>,
    pub radius: Option<f64>,
    pub shape: Option<String>,
    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 style: Option<Style>,
    pub text: Option<String>,
    pub theta: Option<f64>,
    pub thickness: Option<f64>,
    pub tooltip: RemovableValue<TooltipUnion>,
    pub width: Option<f64>,
    pub x: Option<XUnion>,
    pub x2: Option<XUnion>,
    pub x2_offset: Option<f64>,
    pub x_offset: Option<f64>,
    pub y: Option<YUnion>,
    pub y2: Option<XUnion>,
    pub y2_offset: Option<f64>,
    pub y_offset: Option<f64>,
}

Fields

def_box: Option<DefBox>clip: Option<bool>

Whether a composite mark be clipped to the enclosing group’s width and height.

Whether a mark be clipped to the enclosing group’s width and height.

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.

extent: Option<BoxPlotDefExtent>

The extent of the whiskers. Available options include:

  • "min-max": min and max are the lower and upper whiskers respectively.
  • A number representing multiple of the interquartile range. This number will be multiplied by the IQR to determine whisker boundary, which spans from the smallest data to the largest data within the range [Q1 - k * IQR, Q3 + k * IQR] where Q1 and Q3 are the first and third quartiles while IQR is the interquartile range (Q3-Q1).

Default value: 1.5.

The extent of the rule. Available options include:

  • "ci": Extend the rule to the confidence interval of the mean.
  • "stderr": The size of rule are set to the value of standard error, extending from the mean.
  • "stdev": The size of rule are set to the value of standard deviation, extending from the mean.
  • "iqr": Extend the rule to the q1 and q3.

Default value: "stderr".

The extent of the band. Available options include:

  • "ci": Extend the band to the confidence interval of the mean.
  • "stderr": The size of band are set to the value of standard error, extending from the mean.
  • "stdev": The size of band are set to the value of standard deviation, extending from the mean.
  • "iqr": Extend the band to the q1 and q3.

Default value: "stderr".

median: Option<DefBox>opacity: Option<f64>

The opacity (value between [0,1]) of the mark.

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.

orient: Option<Orientation>

Orientation of the box plot. This is normally automatically determined based on types of fields on x and y channels. However, an explicit orient be specified when the orientation is ambiguous.

Default value: "vertical".

Orientation of the error bar. This is normally automatically determined, but can be specified when the orientation is ambiguous and cannot be automatically determined.

Orientation of the error band. This is normally automatically determined, but can be specified when the orientation is ambiguous and cannot be automatically determined.

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.
outliers: Option<DefBox>rule: Option<DefBox>size: Option<f64>

Size of the box and median tick of a box plot

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.

ticks: Option<DefBox>def_type: Option<Mark>

The mark type. This could a primitive mark type (one of "bar", "circle", "square", "tick", "line", "area", "point", "geoshape", "rule", and "text") or a composite mark type ("boxplot", "errorband", "errorbar").

band: Option<DefBox>borders: Option<DefBox>interpolate: Option<Interpolate>

The line interpolation method for the error band. One of the following:

  • "linear": piecewise linear segments, as in a polyline.
  • "linear-closed": close the linear segments to form a polygon.
  • "step": a piecewise constant function (a step function) consisting of alternating horizontal and vertical lines. The y-value changes at the midpoint of each pair of adjacent x-values.
  • "step-before": a piecewise constant function (a step function) consisting of alternating horizontal and vertical lines. The y-value changes before the x-value.
  • "step-after": a piecewise constant function (a step function) consisting of alternating horizontal and vertical lines. The y-value changes after the x-value.
  • "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.

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.
tension: Option<f64>

The tension parameter for the interpolation type of the error band.

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

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"

bin_spacing: Option<f64>

Offset between bars for binned field. Ideal value for this is either 0 (Preferred by statisticians) or 1 (Vega-Lite Default, D3 example style).

Default value: 1

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.

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.

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.

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"

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.

style: Option<Style>

A string or array of strings indicating the name of custom styles to apply to the mark. A style is a named collection of mark property defaults defined within the style configuration. If style is an array, later styles will override earlier styles. Any mark properties explicitly defined within the encoding will override a style default.

Default value: The mark's name. For example, a bar mark will have style "bar" by default. Note: Any specified style will augment the default style. For example, a bar mark with "style": "foo" will receive from config.style.bar and config.style.foo (the specified style "foo" has higher precedence).

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".

thickness: Option<f64>

Thickness of the tick mark.

Default value: 1

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.

x2_offset: Option<f64>

Offset for x2-position.

x_offset: Option<f64>

Offset for x-position.

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.

y2_offset: Option<f64>

Offset for y2-position.

y_offset: Option<f64>

Offset for y-position.

Trait Implementations

impl Clone for MarkDefClass[src]

impl Debug for MarkDefClass[src]

impl Default for MarkDefClass[src]

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

impl From<MarkDefClass> for AnyMark[src]

impl Serialize for MarkDefClass[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.