marks Property
Marks visually encode data using geometric primitives.
General JSON format:
A Vega marks
specification includes the following properties:
Property | Data Type | Required | Description |
string | X | Graphical marks type or shape:
| |
object | Database table associated with the marks. | ||
object | X | Visual encoding rules. Valid properties depend on marks | |
object | Transforms applied to a mark. |
Each marks property is associated with the specified data property.
Marks are rendered in marks property array order.
Marks property values can be constants or as data references. You can use the scales property to transform marks property values to the visualization area.
Apply the x
and y
scales to the x
and y
database table columns to scale the data to the visualization area width and height. For example:
marks
Properties
marks
Propertiestype
type
Marks must include a type
property that specifies the geometric primitive to use to render the data.
Marks Type | Description |
| Render marks as points. |
| Render marks as lines. |
| Render marks as a polygon. |
| Render marks as a shape. |
points Type
Specify x
and y
coordinate values using either constants, or domain and range values of a data
reference. If the from
property is not specified, the x
and y
properties
fields must be constants.
points Examples
Define a point with size, color, and opacity:
Associate the points
geometric primitive with tweets
data items.
lines Type
Specifying the data
format
property as lines
causes the rendering engine to assume a lines
database table layout and to extract line-related columns from the table.
Specify x
and y
coordinate values using either constants, or domain and range values of a data
reference. If the from
property is not specified, the x
and y
properties
fields must be constants.
lines Example
polys Type
The polys
type renders data as a polygon.
When the data
format property is polys
, the rendering engine assumes a polys
database table layout and extracts the poly-related columns from the table. A polys
database table layout implies that the first data column is the vertex x- and y-positions. The vertices are interleaved x and y values, such that vertex[0] = vert0.x
, vertex[1] = vert0.y
, vertex[2] = vert1.x
, and vertex[3] = vert1.y
, for example. The next three positions of a polys
database table are the triangulated indices, and line loop and drawing information for unpacking multiple, associated polygons that can be packed as a single data item.
polys Example
symbol Type
The symbol
marks type renders data as one of the supported shapes.
Currently, in symbol
mark types, strokes are not visible beneath other marks, regardless of opacity settings.
Specify x
and y
coordinate values using either constants or domain and range values of a data
reference. If the from
property is not specified, the x
and y
properties
fields must be specified using constant values.
symbol
Examples
symbol
ExamplesThe following example defines symbol mark types including fill, stroke, and general opacity properties:
from
from
The from
field specifies the input database table to use.
Data Source Field | Data Type | Description |
| string | Name of the data source. The |
Example
Use the tweets
database table for marks input data.
If from
is not specified, the data source is implicitly a single point with the value defined in the points
properties.
properties
properties
The properties
property specifies type-dependent visual encoding that define the position and appearance of mark instances. The property value is specified using one of the Value Reference options.
Typically, a single mark instance is generated per input data element, except for polys
, which uses multiple data elements to represent a line or area shape.
The following table describes the various marks properties
and lists the types for which the property is valid.
Property | Data Type | Valid Primitive Types | Description |
| number | symbol | Amount of rotation about the defined center of rotation. The center of rotation depends on the properties that specify the symbol location:
Must be a numerical constant or a scale that provides numerical values. In the following example, the triangle-down symbol is rotated 30 degrees about the downward point: |
| string | symbol | Optional. Unit of measure for the rotation of a symbol around the center of rotation, defined in |
| color | points, polys, symbol | Fill color. Must be a scale/data reference, a string, or a color represented by a 32-bit integer or unsigned integer. See Color Value Reference. |
| number | points, polys, symbol | The fill opacity, from transparent ( |
| number | symbol | Mark height, in pixels. |
| string | line, polys, symbol | Line join method:
|
| number | line, polys, symbol | The miter limit at which to bevel a line join, in pixels. Must be a positive number. Default = |
| number | all | The line opacity as a whole, from transparent ( |
| string | symbol | Shape name:
|
| number | points | Graphical primitive size, in pixels. Must be a scale/data reference or a number. |
| color | symbol | Stroke color. |
| color | line, polys | Stroke color. Must be a scale/data reference, a string, or a color represented by a 32-bit integer or unsigned integer. See Color Value Reference. Default color = |
| number | line, polys, symbol | Stroke opacity, from transparent ( |
| number | line, polys, symbol | Stroke width, in pixels. Must be a scale/data reference or a number. |
| number | symbol | Mark width, in pixels. |
| number | all | Primary x-coordinate, in pixels. Must be a scale/data reference for |
| number | symbol | Secondary x-coordinate, in pixels. See Value Reference. |
| number | symbol | Center x-coordinate, in pixels. Incompatible with |
| number | all | Primary y-coordinate, in pixels. Must be a scale/data reference for |
| number | symbol | Secondary y-coordinate, in pixels. See Value Reference. |
| number | symbol | Center y-coordinate, in pixels. Incompatible with |
| number | points, symbol | Primary depth-coordinate, in pixels. Must be a scale/data reference or a number. See Value Reference. |
Value Reference
A value reference describes how to specify marks properties
values. The value can be a constant or data object reference:
Name | Type Description | |
| Any | Constant value. If |
| Perform a lookup on the current data value. The marks | |
| Name of a scale transform to apply to the mark. If the input is an object, it indicates a field value from which to dynamically look up the scale name and follows the Field Reference format. |
Examples:
Statically set the point fillColor
and size
.
For the x
marks property, apply the x
scale transform to the implicit x-coordinate data column.
Field Reference
A field reference is either a string literal or an object. For object values, the following properties are supported:
Property | Type | Description |
Property Name | FieldRef | Perform a lookup on the property name. This is the default operation when a field reference is a string. |
Color Value Reference
Typically, color values are specified as a single RGB color value. To specify specific color fields or use a different color space, use one of the following color value reference formats:
Property Value Field | Data Type | Description |
| string | Name of the attribute from the |
| string | Space in which the color is defined:
|
Examples
Set the red and blue channels of an RGB color as constants, and uses a scale transform to determine the green channel:
Use the rgb
color space for the color
field:
transform
transform
The transform
object specifies any Vega projections to be applied to the mark. Each transform is specified as a key:value pair in the transform
object:
The value references an existing Vega object by name.
For example, the following transform references the projection my_mercator_projection
defined in the top-level Vega projections
property.
Currently, the only supported transform is projection
.
Last updated