Scatter3d
Overview
The scatter3d trace type is used to create 3D scatter plots, which visualize data points based on three numerical variables (x, y, and z axes). 3D scatter plots are useful for exploring relationships between three variables and detecting patterns or outliers in higher-dimensional data.
You can customize the marker size, color, and add lines to connect points in 3D space to represent the data effectively.
Common Uses
- 3D Relationship Analysis: Exploring the relationship between three numerical variables.
 - Pattern Detection: Identifying trends and clusters in three dimensions.
 - High-Dimensional Data: Visualizing higher-dimensional datasets.
 
Check out the Attributes for the full set of configuration options
Examples
Common Configurations
Here's a simple scatter3d plot showing data points in 3D space:

You can copy this code below to create this chart in your project:
models:
  - name: scatter3d-data
    args:
      - echo
      - |
        x,y,z
        1,10,15
        2,20,25
        3,15,30
        4,25,35
        5,30,40
traces:
  - name: Simple Scatter3D Plot
    model: ${ref(scatter3d-data)}
    props:
      type: scatter3d
      x: ?{x}
      y: ?{y}
      z: ?{z}
      mode: "markers"
charts:
  - name: Simple Scatter3D Chart
    traces:
      - ${ref(Simple Scatter3D Plot)}
    layout:
      title:
        text: Simple Scatter3D Plot<br><sub>3D Data Points</sub>
This example demonstrates a scatter3d plot with lines connecting the data points in 3D space:

Here's the code:
models:
  - name: scatter3d-data-lines
    args:
      - echo
      - |
        x,y,z
        1,5,7
        2,10,12
        3,8,10
        4,15,18
        5,12,17
traces:
  - name: Scatter3D Plot with Lines
    model: ${ref(scatter3d-data-lines)}
    props:
      type: scatter3d
      x: ?{x}
      y: ?{y}
      z: ?{z}
      mode: "lines+markers"
charts:
  - name: Scatter3D Chart with Lines
    traces:
      - ${ref(Scatter3D Plot with Lines)}
    layout:
      title:
        text: Scatter3D Plot with Lines<br><sub>Connecting Data Points with Lines</sub>
Here's a scatter3d plot with custom marker sizes and colors, giving more visual weight to each data point in 3D space:

Here's the code:
models:
  - name: scatter3d-data-custom
    args:
      - echo
      - |
        x,y,z,size,color
        1,5,10,15,#1f77b4
        2,10,12,20,#ff7f0e
        3,8,10,25,#2ca02c
        4,15,18,30,#d62728
        5,12,20,35,#9467bd
traces:
  - name: Scatter3D Plot with Custom Markers
    model: ${ref(scatter3d-data-custom)}
    props:
      type: scatter3d
      x: ?{x}
      y: ?{y}
      z: ?{z}
      mode: "markers"
      marker:
        size: ?{size}
        color: ?{color}
charts:
  - name: Scatter3D Chart with Custom Markers
    traces:
      - ${ref(Scatter3D Plot with Custom Markers)}
    layout:
      title:
        text: Scatter3D Plot with Custom Markers<br><sub>Custom Sizes and Colors for 3D Data Points</sub>
A schema to validate plotly trace properties
Attributes
These attributes apply to traces where trace.props.type is set to scatter3d. You would configure these attributes on the trace with the trace.props object.
connectgaps: 'boolean' #(1)!
customdata: 'array' #(2)!
customdatasrc: 'string' #(3)!
error_x:
  array: 'array' #(4)!
  arrayminus: 'array' #(5)!
  arrayminussrc: 'string' #(6)!
  arraysrc: 'string' #(7)!
  color: 'any' #(8)!
  copy_zstyle: boolean
  symmetric: 'boolean' #(9)!
  thickness: 'number' #(10)!
  traceref: integer
  tracerefminus: integer
  type: 'any' #(11)!
  value: 'number' #(12)!
  valueminus: 'number' #(13)!
  visible: 'boolean' #(14)!
  width: 'number' #(15)!
error_y:
  array: 'array' #(16)!
  arrayminus: 'array' #(17)!
  arrayminussrc: 'string' #(18)!
  arraysrc: 'string' #(19)!
  color: 'any' #(20)!
  copy_zstyle: boolean
  symmetric: 'boolean' #(21)!
  thickness: 'number' #(22)!
  traceref: integer
  tracerefminus: integer
  type: 'any' #(23)!
  value: 'number' #(24)!
  valueminus: 'number' #(25)!
  visible: 'boolean' #(26)!
  width: 'number' #(27)!
error_z:
  array: 'array' #(28)!
  arrayminus: 'array' #(29)!
  arrayminussrc: 'string' #(30)!
  arraysrc: 'string' #(31)!
  color: 'any' #(32)!
  symmetric: 'boolean' #(33)!
  thickness: 'number' #(34)!
  traceref: integer
  tracerefminus: integer
  type: 'any' #(35)!
  value: 'number' #(36)!
  valueminus: 'number' #(37)!
  visible: 'boolean' #(38)!
  width: 'number' #(39)!
hoverinfo: 'array' #(40)!
hoverinfosrc: 'string' #(41)!
hoverlabel:
  align: 'array' #(42)!
  alignsrc: 'string' #(43)!
  bgcolor: 'color | array' #(44)!
  bgcolorsrc: 'string' #(45)!
  bordercolor: 'color | array' #(46)!
  bordercolorsrc: 'string' #(47)!
  font:
    color: color | array
    colorsrc: 'string' #(48)!
    family: 'string | array' #(49)!
    familysrc: 'string' #(50)!
    lineposition: 'array' #(51)!
    linepositionsrc: 'string' #(52)!
    shadow: 'string | array' #(53)!
    shadowsrc: 'string' #(54)!
    size: number | array
    sizesrc: 'string' #(55)!
    style: 'array' #(56)!
    stylesrc: 'string' #(57)!
    textcase: 'array' #(58)!
    textcasesrc: 'string' #(59)!
    variant: 'array' #(60)!
    variantsrc: 'string' #(61)!
    weight: 'integer | array' #(62)!
    weightsrc: 'string' #(63)!
  namelength: 'integer | array' #(64)!
  namelengthsrc: 'string' #(65)!
hovertemplate: 'string | array' #(66)!
hovertemplatesrc: 'string' #(67)!
hovertext: 'string | array' #(68)!
hovertextsrc: 'string' #(69)!
ids: 'array' #(70)!
idssrc: 'string' #(71)!
legend: 'string' #(72)!
legendgroup: 'string' #(73)!
legendgrouptitle:
  font:
    color: any
    family: 'string' #(74)!
    lineposition: 'string' #(75)!
    shadow: 'string' #(76)!
    size: number
    style: 'any' #(77)!
    textcase: 'any' #(78)!
    variant: 'any' #(79)!
    weight: 'integer' #(80)!
  text: 'string' #(81)!
legendrank: 'number' #(82)!
legendwidth: 'number' #(83)!
line:
  autocolorscale: 'boolean' #(84)!
  cauto: 'boolean' #(85)!
  cmax: 'number' #(86)!
  cmid: 'number' #(87)!
  cmin: 'number' #(88)!
  color: 'color | array' #(89)!
  coloraxis: 'string' #(90)!
  colorbar:
    bgcolor: 'any' #(91)!
    bordercolor: 'any' #(92)!
    borderwidth: 'number' #(93)!
    exponentformat: 'any' #(94)!
    len: 'number' #(95)!
    lenmode: 'any' #(96)!
    minexponent: 'number' #(97)!
    nticks: 'integer' #(98)!
    orientation: 'any' #(99)!
    outlinecolor: 'any' #(100)!
    outlinewidth: 'number' #(101)!
    separatethousands: 'boolean' #(102)!
    showexponent: 'any' #(103)!
    showticklabels: 'boolean' #(104)!
    showtickprefix: 'any' #(105)!
    showticksuffix: 'any' #(106)!
    thickness: 'number' #(107)!
    thicknessmode: 'any' #(108)!
    tickangle: 'number' #(109)!
    tickcolor: 'any' #(110)!
    tickfont:
      color: any
      family: 'string' #(111)!
      lineposition: 'string' #(112)!
      shadow: 'string' #(113)!
      size: number
      style: 'any' #(114)!
      textcase: 'any' #(115)!
      variant: 'any' #(116)!
      weight: 'integer' #(117)!
    tickformat: 'string' #(118)!
    tickformatstops: array
    ticklabeloverflow: 'any' #(119)!
    ticklabelposition: 'any' #(120)!
    ticklabelstep: 'integer' #(121)!
    ticklen: 'number' #(122)!
    tickmode: 'any' #(123)!
    tickprefix: 'string' #(124)!
    ticks: 'any' #(125)!
    ticksuffix: 'string' #(126)!
    ticktext: 'array' #(127)!
    ticktextsrc: 'string' #(128)!
    tickvals: 'array' #(129)!
    tickvalssrc: 'string' #(130)!
    tickwidth: 'number' #(131)!
    title:
      font:
        color: any
        family: 'string' #(132)!
        lineposition: 'string' #(133)!
        shadow: 'string' #(134)!
        size: number
        style: 'any' #(135)!
        textcase: 'any' #(136)!
        variant: 'any' #(137)!
        weight: 'integer' #(138)!
      side: 'any' #(139)!
      text: 'string' #(140)!
    x: 'number' #(141)!
    xanchor: 'any' #(142)!
    xpad: 'number' #(143)!
    xref: 'any' #(144)!
    y: 'number' #(145)!
    yanchor: 'any' #(146)!
    ypad: 'number' #(147)!
    yref: 'any' #(148)!
  colorscale: 'any' #(149)!
  colorsrc: 'string' #(150)!
  dash: 'any' #(151)!
  reversescale: 'boolean' #(152)!
  showscale: 'boolean' #(153)!
  width: 'number' #(154)!
marker:
  autocolorscale: 'boolean' #(155)!
  cauto: 'boolean' #(156)!
  cmax: 'number' #(157)!
  cmid: 'number' #(158)!
  cmin: 'number' #(159)!
  color: 'color | array' #(160)!
  coloraxis: 'string' #(161)!
  colorbar:
    bgcolor: 'any' #(162)!
    bordercolor: 'any' #(163)!
    borderwidth: 'number' #(164)!
    exponentformat: 'any' #(165)!
    len: 'number' #(166)!
    lenmode: 'any' #(167)!
    minexponent: 'number' #(168)!
    nticks: 'integer' #(169)!
    orientation: 'any' #(170)!
    outlinecolor: 'any' #(171)!
    outlinewidth: 'number' #(172)!
    separatethousands: 'boolean' #(173)!
    showexponent: 'any' #(174)!
    showticklabels: 'boolean' #(175)!
    showtickprefix: 'any' #(176)!
    showticksuffix: 'any' #(177)!
    thickness: 'number' #(178)!
    thicknessmode: 'any' #(179)!
    tickangle: 'number' #(180)!
    tickcolor: 'any' #(181)!
    tickfont:
      color: any
      family: 'string' #(182)!
      lineposition: 'string' #(183)!
      shadow: 'string' #(184)!
      size: number
      style: 'any' #(185)!
      textcase: 'any' #(186)!
      variant: 'any' #(187)!
      weight: 'integer' #(188)!
    tickformat: 'string' #(189)!
    tickformatstops: array
    ticklabeloverflow: 'any' #(190)!
    ticklabelposition: 'any' #(191)!
    ticklabelstep: 'integer' #(192)!
    ticklen: 'number' #(193)!
    tickmode: 'any' #(194)!
    tickprefix: 'string' #(195)!
    ticks: 'any' #(196)!
    ticksuffix: 'string' #(197)!
    ticktext: 'array' #(198)!
    ticktextsrc: 'string' #(199)!
    tickvals: 'array' #(200)!
    tickvalssrc: 'string' #(201)!
    tickwidth: 'number' #(202)!
    title:
      font:
        color: any
        family: 'string' #(203)!
        lineposition: 'string' #(204)!
        shadow: 'string' #(205)!
        size: number
        style: 'any' #(206)!
        textcase: 'any' #(207)!
        variant: 'any' #(208)!
        weight: 'integer' #(209)!
      side: 'any' #(210)!
      text: 'string' #(211)!
    x: 'number' #(212)!
    xanchor: 'any' #(213)!
    xpad: 'number' #(214)!
    xref: 'any' #(215)!
    y: 'number' #(216)!
    yanchor: 'any' #(217)!
    ypad: 'number' #(218)!
    yref: 'any' #(219)!
  colorscale: 'any' #(220)!
  colorsrc: 'string' #(221)!
  line:
    autocolorscale: 'boolean' #(222)!
    cauto: 'boolean' #(223)!
    cmax: 'number' #(224)!
    cmid: 'number' #(225)!
    cmin: 'number' #(226)!
    color: 'color | array' #(227)!
    coloraxis: 'string' #(228)!
    colorscale: 'any' #(229)!
    colorsrc: 'string' #(230)!
    reversescale: 'boolean' #(231)!
    width: 'number' #(232)!
  opacity: 'number' #(233)!
  reversescale: 'boolean' #(234)!
  showscale: 'boolean' #(235)!
  size: 'number | array' #(236)!
  sizemin: 'number' #(237)!
  sizemode: 'any' #(238)!
  sizeref: 'number' #(239)!
  sizesrc: 'string' #(240)!
  symbol: 'array' #(241)!
  symbolsrc: 'string' #(242)!
metasrc: 'string' #(243)!
mode: 'string' #(244)!
name: 'string' #(245)!
opacity: 'number' #(246)!
projection:
  x:
    opacity: 'number' #(247)!
    scale: 'number' #(248)!
    show: 'boolean' #(249)!
  y:
    opacity: 'number' #(250)!
    scale: 'number' #(251)!
    show: 'boolean' #(252)!
  z:
    opacity: 'number' #(253)!
    scale: 'number' #(254)!
    show: 'boolean' #(255)!
scene: 'string' #(256)!
showlegend: 'boolean' #(257)!
stream:
  maxpoints: 'number' #(258)!
  token: 'string' #(259)!
surfaceaxis: 'any' #(260)!
surfacecolor: 'any' #(261)!
text: 'string | array' #(262)!
textfont:
  color: color | array
  colorsrc: 'string' #(263)!
  family: 'string | array' #(264)!
  familysrc: 'string' #(265)!
  size: number | array
  sizesrc: 'string' #(266)!
  style: 'array' #(267)!
  stylesrc: 'string' #(268)!
  variant: 'array' #(269)!
  variantsrc: 'string' #(270)!
  weight: 'integer | array' #(271)!
  weightsrc: 'string' #(272)!
textposition: 'array' #(273)!
textpositionsrc: 'string' #(274)!
textsrc: 'string' #(275)!
texttemplate: 'string | array' #(276)!
texttemplatesrc: 'string' #(277)!
type: scatter3d
uid: 'string' #(278)!
visible: 'any' #(279)!
x: 'array' #(280)!
xcalendar: 'any' #(281)!
xhoverformat: 'string' #(282)!
xsrc: 'string' #(283)!
y: 'array' #(284)!
ycalendar: 'any' #(285)!
yhoverformat: 'string' #(286)!
ysrc: 'string' #(287)!
z: 'array' #(288)!
zcalendar: 'any' #(289)!
zhoverformat: 'string' #(290)!
zsrc: 'string' #(291)!
- Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.
 - Assigns extra data each datum. This may be useful when listening to hover, click and selection events. Note that, scatter traces also appends customdata items in the markers DOM elements
 - Sets the source reference on Chart Studio Cloud for 
customdata. - Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.
 - Sets the data corresponding the length of each error bar in the bottom (left) direction for vertical (horizontal) bars Values are plotted relative to the underlying data.
 - Sets the source reference on Chart Studio Cloud for 
arrayminus. - Sets the source reference on Chart Studio Cloud for 
array. - Sets the stroke color of the error bars.
 - Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.
 - Sets the thickness (in px) of the error bars.
 - Determines the rule used to generate the error bars. If *constant
, the bar lengths are of a constant value. Set this constant invalue. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage invalue. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data setarray`. - Sets the value of either the percentage (if 
typeis set to percent) or the constant (iftypeis set to constant) corresponding to the lengths of the error bars. - Sets the value of either the percentage (if 
typeis set to percent) or the constant (iftypeis set to constant) corresponding to the lengths of the error bars in the bottom (left) direction for vertical (horizontal) bars - Determines whether or not this set of error bars is visible.
 - Sets the width (in px) of the cross-bar at both ends of the error bars.
 - Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.
 - Sets the data corresponding the length of each error bar in the bottom (left) direction for vertical (horizontal) bars Values are plotted relative to the underlying data.
 - Sets the source reference on Chart Studio Cloud for 
arrayminus. - Sets the source reference on Chart Studio Cloud for 
array. - Sets the stroke color of the error bars.
 - Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.
 - Sets the thickness (in px) of the error bars.
 - Determines the rule used to generate the error bars. If *constant
, the bar lengths are of a constant value. Set this constant invalue. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage invalue. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data setarray`. - Sets the value of either the percentage (if 
typeis set to percent) or the constant (iftypeis set to constant) corresponding to the lengths of the error bars. - Sets the value of either the percentage (if 
typeis set to percent) or the constant (iftypeis set to constant) corresponding to the lengths of the error bars in the bottom (left) direction for vertical (horizontal) bars - Determines whether or not this set of error bars is visible.
 - Sets the width (in px) of the cross-bar at both ends of the error bars.
 - Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.
 - Sets the data corresponding the length of each error bar in the bottom (left) direction for vertical (horizontal) bars Values are plotted relative to the underlying data.
 - Sets the source reference on Chart Studio Cloud for 
arrayminus. - Sets the source reference on Chart Studio Cloud for 
array. - Sets the stroke color of the error bars.
 - Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.
 - Sets the thickness (in px) of the error bars.
 - Determines the rule used to generate the error bars. If *constant
, the bar lengths are of a constant value. Set this constant invalue. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage invalue. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data setarray`. - Sets the value of either the percentage (if 
typeis set to percent) or the constant (iftypeis set to constant) corresponding to the lengths of the error bars. - Sets the value of either the percentage (if 
typeis set to percent) or the constant (iftypeis set to constant) corresponding to the lengths of the error bars in the bottom (left) direction for vertical (horizontal) bars - Determines whether or not this set of error bars is visible.
 - Sets the width (in px) of the cross-bar at both ends of the error bars.
 - Determines which trace information appear on hover. If 
noneorskipare set, no information is displayed upon hovering. But, ifnoneis set, click and hover events are still fired. - Sets the source reference on Chart Studio Cloud for 
hoverinfo. - Sets the horizontal alignment of the text content within hover label box. Has an effect only if the hover label text spans more two or more lines
 - Sets the source reference on Chart Studio Cloud for 
align. - Sets the background color of the hover labels for this trace
 - Sets the source reference on Chart Studio Cloud for 
bgcolor. - Sets the border color of the hover labels for this trace.
 - Sets the source reference on Chart Studio Cloud for 
bordercolor. - Sets the source reference on Chart Studio Cloud for 
color. - HTML font family - the typeface that will be applied by the web browser. The web browser can only apply a font if it is available on the system where it runs. Provide multiple font families, separated by commas, to indicate the order in which to apply fonts if they aren't available.
 - Sets the source reference on Chart Studio Cloud for 
family. - Sets the kind of decoration line(s) with text, such as an under, over or through as well as combinations e.g. under+over, etc.
 - Sets the source reference on Chart Studio Cloud for 
lineposition. - Sets the shape and color of the shadow behind text. auto places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.
 - Sets the source reference on Chart Studio Cloud for 
shadow. - Sets the source reference on Chart Studio Cloud for 
size. - Sets whether a font should be styled with a normal or italic face from its family.
 - Sets the source reference on Chart Studio Cloud for 
style. - Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
 - Sets the source reference on Chart Studio Cloud for 
textcase. - Sets the variant of the font.
 - Sets the source reference on Chart Studio Cloud for 
variant. - Sets the weight (or boldness) of the font.
 - Sets the source reference on Chart Studio Cloud for 
weight. - Sets the default length (in number of characters) of the trace name in the hover labels for all traces. -1 shows the whole name regardless of length. 0-3 shows the first 0-3 characters, and an integer >3 will show the whole name if it is less than that many characters, but if it is longer, will truncate to 
namelength - 3characters and add an ellipsis. - Sets the source reference on Chart Studio Cloud for 
namelength. - Template string used for rendering the information that appear on hover box. Note that this will override 
hoverinfo. Variables are inserted using %{variable}, for example "y: %{y}" as well as %{xother}, {%xother}, {%_xother}, {%xother_}. When showing info for several points, xother will be added to those with different x positions from the first point. An underscore before or after (x|y)other will add a space on that side, only when this field is shown. Numbers are formatted using d3-format's syntax %{variable:d3-format}, for example "Price: %{y:$.2f}". https://github.com/d3/d3-format/tree/v1.4.5#d3-format for details on the formatting syntax. Dates are formatted using d3-time-format's syntax %{variable|d3-time-format}, for example "Day: %{2019-01-01|%A}". https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format for details on the date formatting syntax. The variables available inhovertemplateare the ones emitted as event data described at this link https://plotly.com/javascript/plotlyjs-events/#event-data. Additionally, every attributes that can be specified per-point (the ones that arearrayOk: true) are available. Anything contained in tag<extra>is displayed in the secondary box, for example "{fullData.name} ". To hide the secondary box completely, use an empty tag<extra></extra>. - Sets the source reference on Chart Studio Cloud for 
hovertemplate. - Sets text elements associated with each (x,y,z) triplet. If a single string, the same string appears over all the data points. If an array of string, the items are mapped in order to the this trace's (x,y,z) coordinates. To be seen, trace 
hoverinfomust contain a text flag. - Sets the source reference on Chart Studio Cloud for 
hovertext. - Assigns id labels to each datum. These ids for object constancy of data points during animation. Should be an array of strings, not numbers or any other type.
 - Sets the source reference on Chart Studio Cloud for 
ids. - Sets the reference to a legend to show this trace in. References to these legends are legend, legend2, legend3, etc. Settings for these legends are set in the layout, under 
layout.legend,layout.legend2, etc. - Sets the legend group for this trace. Traces and shapes part of the same legend group hide/show at the same time when toggling legend items.
 - HTML font family - the typeface that will be applied by the web browser. The web browser can only apply a font if it is available on the system where it runs. Provide multiple font families, separated by commas, to indicate the order in which to apply fonts if they aren't available.
 - Sets the kind of decoration line(s) with text, such as an under, over or through as well as combinations e.g. under+over, etc.
 - Sets the shape and color of the shadow behind text. auto places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.
 - Sets whether a font should be styled with a normal or italic face from its family.
 - Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
 - Sets the variant of the font.
 - Sets the weight (or boldness) of the font.
 - Sets the title of the legend group.
 - Sets the legend rank for this trace. Items and groups with smaller ranks are presented on top/left side while with reversed 
legend.traceorderthey are on bottom/right side. The default legendrank is 1000, so that you can use ranks less than 1000 to place certain items before all unranked items, and ranks greater than 1000 to go after all unranked items. When having unranked or equal rank items shapes would be displayed after traces i.e. according to their order in data and layout. - Sets the width (in px or fraction) of the legend for this trace.
 - Determines whether the colorscale is a default palette (
autocolorscale: true) or the palette determined byline.colorscale. Has an effect only if inline.coloris set to a numerical array. In casecolorscaleis unspecified orautocolorscaleis true, the default palette will be chosen according to whether numbers in thecolorarray are all positive, all negative or mixed. - Determines whether or not the color domain is computed with respect to the input data (here in 
line.color) or the bounds set inline.cminandline.cmaxHas an effect only if inline.coloris set to a numerical array. Defaults tofalsewhenline.cminandline.cmaxare set by the user. - Sets the upper bound of the color domain. Has an effect only if in 
line.coloris set to a numerical array. Value should have the same units as inline.colorand if set,line.cminmust be set as well. - Sets the mid-point of the color domain by scaling 
line.cminand/orline.cmaxto be equidistant to this point. Has an effect only if inline.coloris set to a numerical array. Value should have the same units as inline.color. Has no effect whenline.cautoisfalse. - Sets the lower bound of the color domain. Has an effect only if in 
line.coloris set to a numerical array. Value should have the same units as inline.colorand if set,line.cmaxmust be set as well. - Sets the line color. It accepts either a specific color or an array of numbers that are mapped to the colorscale relative to the max and min values of the array or relative to 
line.cminandline.cmaxif set. - Sets a reference to a shared color axis. References to these shared color axes are coloraxis, coloraxis2, coloraxis3, etc. Settings for these shared color axes are set in the layout, under 
layout.coloraxis,layout.coloraxis2, etc. Note that multiple color scales can be linked to the same color axis. - Sets the color of padded area.
 - Sets the axis line color.
 - Sets the width (in px) or the border enclosing this color bar.
 - Determines a formatting rule for the tick exponents. For example, consider the number 1,000,000,000. If none, it appears as 1,000,000,000. If e, 1e+9. If E, 1E+9. If power, 1x10^9 (with 9 in a super script). If SI, 1G. If B, 1B.
 - Sets the length of the color bar This measure excludes the padding of both ends. That is, the color bar length is this length minus the padding on both ends.
 - Determines whether this color bar's length (i.e. the measure in the color variation direction) is set in units of plot fraction or in *pixels. Use 
lento set the value. - Hide SI prefix for 10^n if |n| is below this number. This only has an effect when 
tickformatis SI or B. - Specifies the maximum number of ticks for the particular axis. The actual number of ticks will be chosen automatically to be less than or equal to 
nticks. Has an effect only iftickmodeis set to auto. - Sets the orientation of the colorbar.
 - Sets the axis line color.
 - Sets the width (in px) of the axis line.
 - If "true", even 4-digit integers are separated
 - If all, all exponents are shown besides their significands. If first, only the exponent of the first tick is shown. If last, only the exponent of the last tick is shown. If none, no exponents appear.
 - Determines whether or not the tick labels are drawn.
 - If all, all tick labels are displayed with a prefix. If first, only the first tick is displayed with a prefix. If last, only the last tick is displayed with a suffix. If none, tick prefixes are hidden.
 - Same as 
showtickprefixbut for tick suffixes. - Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.
 - Determines whether this color bar's thickness (i.e. the measure in the constant color direction) is set in units of plot fraction or in pixels. Use 
thicknessto set the value. - Sets the angle of the tick labels with respect to the horizontal. For example, a 
tickangleof -90 draws the tick labels vertically. - Sets the tick color.
 - HTML font family - the typeface that will be applied by the web browser. The web browser can only apply a font if it is available on the system where it runs. Provide multiple font families, separated by commas, to indicate the order in which to apply fonts if they aren't available.
 - Sets the kind of decoration line(s) with text, such as an under, over or through as well as combinations e.g. under+over, etc.
 - Sets the shape and color of the shadow behind text. auto places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.
 - Sets whether a font should be styled with a normal or italic face from its family.
 - Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
 - Sets the variant of the font.
 - Sets the weight (or boldness) of the font.
 - Sets the tick label formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/tree/v1.4.5#d3-format. And for dates see: https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format. We add two items to d3's date formatter: %h for half of the year as a decimal number as well as %{n}f for fractional seconds with n digits. For example, 2016-10-13 09:15:23.456 with tickformat %H~%M~%S.%2f would display 09~15~23.46
 - Determines how we handle tick labels that would overflow either the graph div or the domain of the axis. The default value for inside tick labels is hide past domain. In other cases the default is hide past div.
 - Determines where tick labels are drawn relative to the ticks. Left and right options are used when 
orientationis h, top and bottom whenorientationis v. - Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. 
tick0determines which labels are shown. Not implemented for axes withtypelog or multicategory, or whentickmodeis array. - Sets the tick length (in px).
 - Sets the tick mode for this axis. If auto, the number of ticks is set via 
nticks. If linear, the placement of the ticks is determined by a starting positiontick0and a tick stepdtick(linear is the default value iftick0anddtickare provided). If array, the placement of the ticks is set viatickvalsand the tick text isticktext. (array is the default value iftickvalsis provided). - Sets a tick label prefix.
 - Determines whether ticks are drawn or not. If , this axis' ticks are not drawn. If outside (inside), this axis' are drawn outside (inside) the axis lines.
 - Sets a tick label suffix.
 - Sets the text displayed at the ticks position via 
tickvals. Only has an effect iftickmodeis set to array. Used withtickvals. - Sets the source reference on Chart Studio Cloud for 
ticktext. - Sets the values at which ticks on this axis appear. Only has an effect if 
tickmodeis set to array. Used withticktext. - Sets the source reference on Chart Studio Cloud for 
tickvals. - Sets the tick width (in px).
 - HTML font family - the typeface that will be applied by the web browser. The web browser can only apply a font if it is available on the system where it runs. Provide multiple font families, separated by commas, to indicate the order in which to apply fonts if they aren't available.
 - Sets the kind of decoration line(s) with text, such as an under, over or through as well as combinations e.g. under+over, etc.
 - Sets the shape and color of the shadow behind text. auto places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.
 - Sets whether a font should be styled with a normal or italic face from its family.
 - Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
 - Sets the variant of the font.
 - Sets the weight (or boldness) of the font.
 - Determines the location of color bar's title with respect to the color bar. Defaults to top when 
orientationif v and defaults to right whenorientationif h. - Sets the title of the color bar.
 - Sets the x position with respect to 
xrefof the color bar (in plot fraction). Whenxrefis paper, defaults to 1.02 whenorientationis v and 0.5 whenorientationis h. Whenxrefis container, defaults to 1 whenorientationis v and 0.5 whenorientationis h. Must be between 0 and 1 ifxrefis container and between -2 and 3 ifxrefis paper. - Sets this color bar's horizontal position anchor. This anchor binds the 
xposition to the left, center or right of the color bar. Defaults to left whenorientationis v and center whenorientationis h. - Sets the amount of padding (in px) along the x direction.
 - Sets the container 
xrefers to. container spans the entirewidthof the plot. paper refers to the width of the plotting area only. - Sets the y position with respect to 
yrefof the color bar (in plot fraction). Whenyrefis paper, defaults to 0.5 whenorientationis v and 1.02 whenorientationis h. Whenyrefis container, defaults to 0.5 whenorientationis v and 1 whenorientationis h. Must be between 0 and 1 ifyrefis container and between -2 and 3 ifyrefis paper. - Sets this color bar's vertical position anchor This anchor binds the 
yposition to the top, middle or bottom of the color bar. Defaults to middle whenorientationis v and bottom whenorientationis h. - Sets the amount of padding (in px) along the y direction.
 - Sets the container 
yrefers to. container spans the entireheightof the plot. paper refers to the height of the plotting area only. - Sets the colorscale. Has an effect only if in 
line.coloris set to a numerical array. The colorscale must be an array containing arrays mapping a normalized value to an rgb, rgba, hex, hsl, hsv, or named color string. At minimum, a mapping for the lowest (0) and highest (1) values are required. For example,[[0, 'rgb(0,0,255)'], [1, 'rgb(255,0,0)']]. To control the bounds of the colorscale in color space, useline.cminandline.cmax. Alternatively,colorscalemay be a palette name string of the following list: Blackbody,Bluered,Blues,Cividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portland,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. - Sets the source reference on Chart Studio Cloud for 
color. - Sets the dash style of the lines.
 - Reverses the color mapping if true. Has an effect only if in 
line.coloris set to a numerical array. If true,line.cminwill correspond to the last color in the array andline.cmaxwill correspond to the first color. - Determines whether or not a colorbar is displayed for this trace. Has an effect only if in 
line.coloris set to a numerical array. - Sets the line width (in px).
 - Determines whether the colorscale is a default palette (
autocolorscale: true) or the palette determined bymarker.colorscale. Has an effect only if inmarker.coloris set to a numerical array. In casecolorscaleis unspecified orautocolorscaleis true, the default palette will be chosen according to whether numbers in thecolorarray are all positive, all negative or mixed. - Determines whether or not the color domain is computed with respect to the input data (here in 
marker.color) or the bounds set inmarker.cminandmarker.cmaxHas an effect only if inmarker.coloris set to a numerical array. Defaults tofalsewhenmarker.cminandmarker.cmaxare set by the user. - Sets the upper bound of the color domain. Has an effect only if in 
marker.coloris set to a numerical array. Value should have the same units as inmarker.colorand if set,marker.cminmust be set as well. - Sets the mid-point of the color domain by scaling 
marker.cminand/ormarker.cmaxto be equidistant to this point. Has an effect only if inmarker.coloris set to a numerical array. Value should have the same units as inmarker.color. Has no effect whenmarker.cautoisfalse. - Sets the lower bound of the color domain. Has an effect only if in 
marker.coloris set to a numerical array. Value should have the same units as inmarker.colorand if set,marker.cmaxmust be set as well. - Sets the marker color. It accepts either a specific color or an array of numbers that are mapped to the colorscale relative to the max and min values of the array or relative to 
marker.cminandmarker.cmaxif set. - Sets a reference to a shared color axis. References to these shared color axes are coloraxis, coloraxis2, coloraxis3, etc. Settings for these shared color axes are set in the layout, under 
layout.coloraxis,layout.coloraxis2, etc. Note that multiple color scales can be linked to the same color axis. - Sets the color of padded area.
 - Sets the axis line color.
 - Sets the width (in px) or the border enclosing this color bar.
 - Determines a formatting rule for the tick exponents. For example, consider the number 1,000,000,000. If none, it appears as 1,000,000,000. If e, 1e+9. If E, 1E+9. If power, 1x10^9 (with 9 in a super script). If SI, 1G. If B, 1B.
 - Sets the length of the color bar This measure excludes the padding of both ends. That is, the color bar length is this length minus the padding on both ends.
 - Determines whether this color bar's length (i.e. the measure in the color variation direction) is set in units of plot fraction or in *pixels. Use 
lento set the value. - Hide SI prefix for 10^n if |n| is below this number. This only has an effect when 
tickformatis SI or B. - Specifies the maximum number of ticks for the particular axis. The actual number of ticks will be chosen automatically to be less than or equal to 
nticks. Has an effect only iftickmodeis set to auto. - Sets the orientation of the colorbar.
 - Sets the axis line color.
 - Sets the width (in px) of the axis line.
 - If "true", even 4-digit integers are separated
 - If all, all exponents are shown besides their significands. If first, only the exponent of the first tick is shown. If last, only the exponent of the last tick is shown. If none, no exponents appear.
 - Determines whether or not the tick labels are drawn.
 - If all, all tick labels are displayed with a prefix. If first, only the first tick is displayed with a prefix. If last, only the last tick is displayed with a suffix. If none, tick prefixes are hidden.
 - Same as 
showtickprefixbut for tick suffixes. - Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.
 - Determines whether this color bar's thickness (i.e. the measure in the constant color direction) is set in units of plot fraction or in pixels. Use 
thicknessto set the value. - Sets the angle of the tick labels with respect to the horizontal. For example, a 
tickangleof -90 draws the tick labels vertically. - Sets the tick color.
 - HTML font family - the typeface that will be applied by the web browser. The web browser can only apply a font if it is available on the system where it runs. Provide multiple font families, separated by commas, to indicate the order in which to apply fonts if they aren't available.
 - Sets the kind of decoration line(s) with text, such as an under, over or through as well as combinations e.g. under+over, etc.
 - Sets the shape and color of the shadow behind text. auto places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.
 - Sets whether a font should be styled with a normal or italic face from its family.
 - Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
 - Sets the variant of the font.
 - Sets the weight (or boldness) of the font.
 - Sets the tick label formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/tree/v1.4.5#d3-format. And for dates see: https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format. We add two items to d3's date formatter: %h for half of the year as a decimal number as well as %{n}f for fractional seconds with n digits. For example, 2016-10-13 09:15:23.456 with tickformat %H~%M~%S.%2f would display 09~15~23.46
 - Determines how we handle tick labels that would overflow either the graph div or the domain of the axis. The default value for inside tick labels is hide past domain. In other cases the default is hide past div.
 - Determines where tick labels are drawn relative to the ticks. Left and right options are used when 
orientationis h, top and bottom whenorientationis v. - Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. 
tick0determines which labels are shown. Not implemented for axes withtypelog or multicategory, or whentickmodeis array. - Sets the tick length (in px).
 - Sets the tick mode for this axis. If auto, the number of ticks is set via 
nticks. If linear, the placement of the ticks is determined by a starting positiontick0and a tick stepdtick(linear is the default value iftick0anddtickare provided). If array, the placement of the ticks is set viatickvalsand the tick text isticktext. (array is the default value iftickvalsis provided). - Sets a tick label prefix.
 - Determines whether ticks are drawn or not. If , this axis' ticks are not drawn. If outside (inside), this axis' are drawn outside (inside) the axis lines.
 - Sets a tick label suffix.
 - Sets the text displayed at the ticks position via 
tickvals. Only has an effect iftickmodeis set to array. Used withtickvals. - Sets the source reference on Chart Studio Cloud for 
ticktext. - Sets the values at which ticks on this axis appear. Only has an effect if 
tickmodeis set to array. Used withticktext. - Sets the source reference on Chart Studio Cloud for 
tickvals. - Sets the tick width (in px).
 - HTML font family - the typeface that will be applied by the web browser. The web browser can only apply a font if it is available on the system where it runs. Provide multiple font families, separated by commas, to indicate the order in which to apply fonts if they aren't available.
 - Sets the kind of decoration line(s) with text, such as an under, over or through as well as combinations e.g. under+over, etc.
 - Sets the shape and color of the shadow behind text. auto places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.
 - Sets whether a font should be styled with a normal or italic face from its family.
 - Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
 - Sets the variant of the font.
 - Sets the weight (or boldness) of the font.
 - Determines the location of color bar's title with respect to the color bar. Defaults to top when 
orientationif v and defaults to right whenorientationif h. - Sets the title of the color bar.
 - Sets the x position with respect to 
xrefof the color bar (in plot fraction). Whenxrefis paper, defaults to 1.02 whenorientationis v and 0.5 whenorientationis h. Whenxrefis container, defaults to 1 whenorientationis v and 0.5 whenorientationis h. Must be between 0 and 1 ifxrefis container and between -2 and 3 ifxrefis paper. - Sets this color bar's horizontal position anchor. This anchor binds the 
xposition to the left, center or right of the color bar. Defaults to left whenorientationis v and center whenorientationis h. - Sets the amount of padding (in px) along the x direction.
 - Sets the container 
xrefers to. container spans the entirewidthof the plot. paper refers to the width of the plotting area only. - Sets the y position with respect to 
yrefof the color bar (in plot fraction). Whenyrefis paper, defaults to 0.5 whenorientationis v and 1.02 whenorientationis h. Whenyrefis container, defaults to 0.5 whenorientationis v and 1 whenorientationis h. Must be between 0 and 1 ifyrefis container and between -2 and 3 ifyrefis paper. - Sets this color bar's vertical position anchor This anchor binds the 
yposition to the top, middle or bottom of the color bar. Defaults to middle whenorientationis v and bottom whenorientationis h. - Sets the amount of padding (in px) along the y direction.
 - Sets the container 
yrefers to. container spans the entireheightof the plot. paper refers to the height of the plotting area only. - Sets the colorscale. Has an effect only if in 
marker.coloris set to a numerical array. The colorscale must be an array containing arrays mapping a normalized value to an rgb, rgba, hex, hsl, hsv, or named color string. At minimum, a mapping for the lowest (0) and highest (1) values are required. For example,[[0, 'rgb(0,0,255)'], [1, 'rgb(255,0,0)']]. To control the bounds of the colorscale in color space, usemarker.cminandmarker.cmax. Alternatively,colorscalemay be a palette name string of the following list: Blackbody,Bluered,Blues,Cividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portland,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. - Sets the source reference on Chart Studio Cloud for 
color. - Determines whether the colorscale is a default palette (
autocolorscale: true) or the palette determined bymarker.line.colorscale. Has an effect only if inmarker.line.coloris set to a numerical array. In casecolorscaleis unspecified orautocolorscaleis true, the default palette will be chosen according to whether numbers in thecolorarray are all positive, all negative or mixed. - Determines whether or not the color domain is computed with respect to the input data (here in 
marker.line.color) or the bounds set inmarker.line.cminandmarker.line.cmaxHas an effect only if inmarker.line.coloris set to a numerical array. Defaults tofalsewhenmarker.line.cminandmarker.line.cmaxare set by the user. - Sets the upper bound of the color domain. Has an effect only if in 
marker.line.coloris set to a numerical array. Value should have the same units as inmarker.line.colorand if set,marker.line.cminmust be set as well. - Sets the mid-point of the color domain by scaling 
marker.line.cminand/ormarker.line.cmaxto be equidistant to this point. Has an effect only if inmarker.line.coloris set to a numerical array. Value should have the same units as inmarker.line.color. Has no effect whenmarker.line.cautoisfalse. - Sets the lower bound of the color domain. Has an effect only if in 
marker.line.coloris set to a numerical array. Value should have the same units as inmarker.line.colorand if set,marker.line.cmaxmust be set as well. - Sets the marker.line color. It accepts either a specific color or an array of numbers that are mapped to the colorscale relative to the max and min values of the array or relative to 
marker.line.cminandmarker.line.cmaxif set. - Sets a reference to a shared color axis. References to these shared color axes are coloraxis, coloraxis2, coloraxis3, etc. Settings for these shared color axes are set in the layout, under 
layout.coloraxis,layout.coloraxis2, etc. Note that multiple color scales can be linked to the same color axis. - Sets the colorscale. Has an effect only if in 
marker.line.coloris set to a numerical array. The colorscale must be an array containing arrays mapping a normalized value to an rgb, rgba, hex, hsl, hsv, or named color string. At minimum, a mapping for the lowest (0) and highest (1) values are required. For example,[[0, 'rgb(0,0,255)'], [1, 'rgb(255,0,0)']]. To control the bounds of the colorscale in color space, usemarker.line.cminandmarker.line.cmax. Alternatively,colorscalemay be a palette name string of the following list: Blackbody,Bluered,Blues,Cividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portland,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. - Sets the source reference on Chart Studio Cloud for 
color. - Reverses the color mapping if true. Has an effect only if in 
marker.line.coloris set to a numerical array. If true,marker.line.cminwill correspond to the last color in the array andmarker.line.cmaxwill correspond to the first color. - Sets the width (in px) of the lines bounding the marker points.
 - Sets the marker opacity. Note that the marker opacity for scatter3d traces must be a scalar value for performance reasons. To set a blending opacity value (i.e. which is not transparent), set marker.color to an rgba color and use its alpha channel.
 - Reverses the color mapping if true. Has an effect only if in 
marker.coloris set to a numerical array. If true,marker.cminwill correspond to the last color in the array andmarker.cmaxwill correspond to the first color. - Determines whether or not a colorbar is displayed for this trace. Has an effect only if in 
marker.coloris set to a numerical array. - Sets the marker size (in px).
 - Has an effect only if 
marker.sizeis set to a numerical array. Sets the minimum size (in px) of the rendered marker points. - Has an effect only if 
marker.sizeis set to a numerical array. Sets the rule for which the data insizeis converted to pixels. - Has an effect only if 
marker.sizeis set to a numerical array. Sets the scale factor used to determine the rendered size of marker points. Use withsizeminandsizemode. - Sets the source reference on Chart Studio Cloud for 
size. - Sets the marker symbol type.
 - Sets the source reference on Chart Studio Cloud for 
symbol. - Sets the source reference on Chart Studio Cloud for 
meta. - Determines the drawing mode for this scatter trace. If the provided 
modeincludes text then thetextelements appear at the coordinates. Otherwise, thetextelements appear on hover. If there are less than 20 points and the trace is not stacked then the default is lines+markers. Otherwise, lines. - Sets the trace name. The trace name appears as the legend item and on hover.
 - Sets the opacity of the trace.
 - Sets the projection color.
 - Sets the scale factor determining the size of the projection marker points.
 - Sets whether or not projections are shown along the x axis.
 - Sets the projection color.
 - Sets the scale factor determining the size of the projection marker points.
 - Sets whether or not projections are shown along the y axis.
 - Sets the projection color.
 - Sets the scale factor determining the size of the projection marker points.
 - Sets whether or not projections are shown along the z axis.
 - Sets a reference between this trace's 3D coordinate system and a 3D scene. If scene (the default value), the (x,y,z) coordinates refer to 
layout.scene. If scene2, the (x,y,z) coordinates refer tolayout.scene2, and so on. - Determines whether or not an item corresponding to this trace is shown in the legend.
 - Sets the maximum number of points to keep on the plots from an incoming stream. If 
maxpointsis set to 50, only the newest 50 points will be displayed on the plot. - The stream id number links a data trace on a plot with a stream. See https://chart-studio.plotly.com/settings for more details.
 - If -1, the scatter points are not fill with a surface If 0, 1, 2, the scatter points are filled with a Delaunay surface about the x, y, z respectively.
 - Sets the surface fill color.
 - Sets text elements associated with each (x,y,z) triplet. If a single string, the same string appears over all the data points. If an array of string, the items are mapped in order to the this trace's (x,y,z) coordinates. If trace 
hoverinfocontains a text flag and hovertext is not set, these elements will be seen in the hover labels. - Sets the source reference on Chart Studio Cloud for 
color. - HTML font family - the typeface that will be applied by the web browser. The web browser can only apply a font if it is available on the system where it runs. Provide multiple font families, separated by commas, to indicate the order in which to apply fonts if they aren't available.
 - Sets the source reference on Chart Studio Cloud for 
family. - Sets the source reference on Chart Studio Cloud for 
size. - Sets whether a font should be styled with a normal or italic face from its family.
 - Sets the source reference on Chart Studio Cloud for 
style. - Sets the variant of the font.
 - Sets the source reference on Chart Studio Cloud for 
variant. - Sets the weight (or boldness) of the font.
 - Sets the source reference on Chart Studio Cloud for 
weight. - Sets the positions of the 
textelements with respects to the (x,y) coordinates. - Sets the source reference on Chart Studio Cloud for 
textposition. - Sets the source reference on Chart Studio Cloud for 
text. - Template string used for rendering the information text that appear on points. Note that this will override 
textinfo. Variables are inserted using %{variable}, for example "y: %{y}". Numbers are formatted using d3-format's syntax %{variable:d3-format}, for example "Price: %{y:$.2f}". https://github.com/d3/d3-format/tree/v1.4.5#d3-format for details on the formatting syntax. Dates are formatted using d3-time-format's syntax %{variable|d3-time-format}, for example "Day: %{2019-01-01|%A}". https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format for details on the date formatting syntax. Every attributes that can be specified per-point (the ones that arearrayOk: true) are available. - Sets the source reference on Chart Studio Cloud for 
texttemplate. - Assign an id to this trace, Use this to provide object constancy between traces during animations and transitions.
 - Determines whether or not this trace is visible. If legendonly, the trace is not drawn, but can appear as a legend item (provided that the legend itself is visible).
 - Sets the x coordinates.
 - Sets the calendar system to use with 
xdate data. - Sets the hover text formatting rulefor 
xusing d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/tree/v1.4.5#d3-format. And for dates see: https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format. We add two items to d3's date formatter: %h for half of the year as a decimal number as well as %{n}f for fractional seconds with n digits. For example, 2016-10-13 09:15:23.456 with tickformat %H~%M~%S.%2f would display 09~15~23.46By default the values are formatted usingxaxis.hoverformat. - Sets the source reference on Chart Studio Cloud for 
x. - Sets the y coordinates.
 - Sets the calendar system to use with 
ydate data. - Sets the hover text formatting rulefor 
yusing d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/tree/v1.4.5#d3-format. And for dates see: https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format. We add two items to d3's date formatter: %h for half of the year as a decimal number as well as %{n}f for fractional seconds with n digits. For example, 2016-10-13 09:15:23.456 with tickformat %H~%M~%S.%2f would display 09~15~23.46By default the values are formatted usingyaxis.hoverformat. - Sets the source reference on Chart Studio Cloud for 
y. - Sets the z coordinates.
 - Sets the calendar system to use with 
zdate data. - Sets the hover text formatting rulefor 
zusing d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/tree/v1.4.5#d3-format. And for dates see: https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format. We add two items to d3's date formatter: %h for half of the year as a decimal number as well as %{n}f for fractional seconds with n digits. For example, 2016-10-13 09:15:23.456 with tickformat %H~%M~%S.%2f would display 09~15~23.46By default the values are formatted usingzaxis.hoverformat. - Sets the source reference on Chart Studio Cloud for 
z.