Basic Traces
-
The scatter trace type encompasses line charts, scatter charts, text charts, and bubble charts.
The data visualized as scatter point or lines is set in
See morex
andy
. Text (appearing either on the chart or on hover only) is viatext
. Bubble charts are achieved by settingmarker.size
and/ormarker.color
to numerical arrays. -
The data visualized as scatter point or lines is set in
x
andy
using the WebGL plotting engine.Bubble charts are achieved by setting
See moremarker.size
and/ormarker.color
to a numerical arrays. -
The data visualized by the span of the bars is set in
y
iforientation
is set th v (the default) and the labels are set inx
.By setting
See moreorientation
to h, the roles are interchanged. -
A data visualized by the sectors of the pie is set in
values
.The sector labels are set in
See morelabels
. The sector colors are set inmarker.colors
-
Visualize hierarchal data spanning outward radially from root to leaves.
The sunburst sectors are determined by the entries in labels or ids and in parents.
See more -
Visualize hierarchal data from leaves (and/or outer branches) towards root with rectangles.
The treemap sectors are determined by the entries in labels or ids and in parents.
See more -
Display an image, i.e.
data on a 2D regular raster. By default, when an image is displayed in a subplot, its y axis will be reversed (ie.
See moreautorange: 'reversed'
), constrained to the domain (ie.constrain: 'domain'
) and it will have the same scale as its x axis (ie.scaleanchor: 'x,
) in order for pixels to be rendered as squares. -
Table view for detailed data viewing.
The data are arranged in a grid of rows and columns. Most styling can be specified for columns, rows or individual cells. Table is using a column-major order, ie. the grid is represented as a vector of column vectors.
See more