Skip to content

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)!
  1. Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.
  2. 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
  3. Sets the source reference on Chart Studio Cloud for customdata.
  4. Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.
  5. 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.
  6. Sets the source reference on Chart Studio Cloud for arrayminus.
  7. Sets the source reference on Chart Studio Cloud for array.
  8. Sets the stroke color of the error bars.
  9. Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.
  10. Sets the thickness (in px) of the error bars.
  11. 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`.
  12. Sets the value of either the percentage (if type is set to percent) or the constant (if type is set to constant) corresponding to the lengths of the error bars.
  13. Sets the value of either the percentage (if type is set to percent) or the constant (if type is set to constant) corresponding to the lengths of the error bars in the bottom (left) direction for vertical (horizontal) bars
  14. Determines whether or not this set of error bars is visible.
  15. Sets the width (in px) of the cross-bar at both ends of the error bars.
  16. Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.
  17. 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.
  18. Sets the source reference on Chart Studio Cloud for arrayminus.
  19. Sets the source reference on Chart Studio Cloud for array.
  20. Sets the stroke color of the error bars.
  21. Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.
  22. Sets the thickness (in px) of the error bars.
  23. 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`.
  24. Sets the value of either the percentage (if type is set to percent) or the constant (if type is set to constant) corresponding to the lengths of the error bars.
  25. Sets the value of either the percentage (if type is set to percent) or the constant (if type is set to constant) corresponding to the lengths of the error bars in the bottom (left) direction for vertical (horizontal) bars
  26. Determines whether or not this set of error bars is visible.
  27. Sets the width (in px) of the cross-bar at both ends of the error bars.
  28. Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.
  29. 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.
  30. Sets the source reference on Chart Studio Cloud for arrayminus.
  31. Sets the source reference on Chart Studio Cloud for array.
  32. Sets the stroke color of the error bars.
  33. Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.
  34. Sets the thickness (in px) of the error bars.
  35. 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`.
  36. Sets the value of either the percentage (if type is set to percent) or the constant (if type is set to constant) corresponding to the lengths of the error bars.
  37. Sets the value of either the percentage (if type is set to percent) or the constant (if type is set to constant) corresponding to the lengths of the error bars in the bottom (left) direction for vertical (horizontal) bars
  38. Determines whether or not this set of error bars is visible.
  39. Sets the width (in px) of the cross-bar at both ends of the error bars.
  40. Determines which trace information appear on hover. If none or skip are set, no information is displayed upon hovering. But, if none is set, click and hover events are still fired.
  41. Sets the source reference on Chart Studio Cloud for hoverinfo.
  42. 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
  43. Sets the source reference on Chart Studio Cloud for align.
  44. Sets the background color of the hover labels for this trace
  45. Sets the source reference on Chart Studio Cloud for bgcolor.
  46. Sets the border color of the hover labels for this trace.
  47. Sets the source reference on Chart Studio Cloud for bordercolor.
  48. Sets the source reference on Chart Studio Cloud for color.
  49. 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.
  50. Sets the source reference on Chart Studio Cloud for family.
  51. 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.
  52. Sets the source reference on Chart Studio Cloud for lineposition.
  53. 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.
  54. Sets the source reference on Chart Studio Cloud for shadow.
  55. Sets the source reference on Chart Studio Cloud for size.
  56. Sets whether a font should be styled with a normal or italic face from its family.
  57. Sets the source reference on Chart Studio Cloud for style.
  58. Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
  59. Sets the source reference on Chart Studio Cloud for textcase.
  60. Sets the variant of the font.
  61. Sets the source reference on Chart Studio Cloud for variant.
  62. Sets the weight (or boldness) of the font.
  63. Sets the source reference on Chart Studio Cloud for weight.
  64. 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 - 3 characters and add an ellipsis.
  65. Sets the source reference on Chart Studio Cloud for namelength.
  66. 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 in hovertemplate are 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 are arrayOk: 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>.
  67. Sets the source reference on Chart Studio Cloud for hovertemplate.
  68. 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 hoverinfo must contain a text flag.
  69. Sets the source reference on Chart Studio Cloud for hovertext.
  70. 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.
  71. Sets the source reference on Chart Studio Cloud for ids.
  72. 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.
  73. 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.
  74. 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.
  75. 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.
  76. 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.
  77. Sets whether a font should be styled with a normal or italic face from its family.
  78. Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
  79. Sets the variant of the font.
  80. Sets the weight (or boldness) of the font.
  81. Sets the title of the legend group.
  82. Sets the legend rank for this trace. Items and groups with smaller ranks are presented on top/left side while with reversed legend.traceorder they 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.
  83. Sets the width (in px or fraction) of the legend for this trace.
  84. Determines whether the colorscale is a default palette (autocolorscale: true) or the palette determined by line.colorscale. Has an effect only if in line.color is set to a numerical array. In case colorscale is unspecified or autocolorscale is true, the default palette will be chosen according to whether numbers in the color array are all positive, all negative or mixed.
  85. Determines whether or not the color domain is computed with respect to the input data (here in line.color) or the bounds set in line.cmin and line.cmax Has an effect only if in line.color is set to a numerical array. Defaults to false when line.cmin and line.cmax are set by the user.
  86. Sets the upper bound of the color domain. Has an effect only if in line.color is set to a numerical array. Value should have the same units as in line.color and if set, line.cmin must be set as well.
  87. Sets the mid-point of the color domain by scaling line.cmin and/or line.cmax to be equidistant to this point. Has an effect only if in line.color is set to a numerical array. Value should have the same units as in line.color. Has no effect when line.cauto is false.
  88. Sets the lower bound of the color domain. Has an effect only if in line.color is set to a numerical array. Value should have the same units as in line.color and if set, line.cmax must be set as well.
  89. 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.cmin and line.cmax if set.
  90. 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.
  91. Sets the color of padded area.
  92. Sets the axis line color.
  93. Sets the width (in px) or the border enclosing this color bar.
  94. 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.
  95. 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.
  96. 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 len to set the value.
  97. Hide SI prefix for 10^n if |n| is below this number. This only has an effect when tickformat is SI or B.
  98. 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 if tickmode is set to auto.
  99. Sets the orientation of the colorbar.
  100. Sets the axis line color.
  101. Sets the width (in px) of the axis line.
  102. If "true", even 4-digit integers are separated
  103. 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.
  104. Determines whether or not the tick labels are drawn.
  105. 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.
  106. Same as showtickprefix but for tick suffixes.
  107. Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.
  108. 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 thickness to set the value.
  109. Sets the angle of the tick labels with respect to the horizontal. For example, a tickangle of -90 draws the tick labels vertically.
  110. Sets the tick color.
  111. 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.
  112. 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.
  113. 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.
  114. Sets whether a font should be styled with a normal or italic face from its family.
  115. Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
  116. Sets the variant of the font.
  117. Sets the weight (or boldness) of the font.
  118. 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
  119. 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.
  120. Determines where tick labels are drawn relative to the ticks. Left and right options are used when orientation is h, top and bottom when orientation is v.
  121. 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. tick0 determines which labels are shown. Not implemented for axes with type log or multicategory, or when tickmode is array.
  122. Sets the tick length (in px).
  123. 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 position tick0 and a tick step dtick (linear is the default value if tick0 and dtick are provided). If array, the placement of the ticks is set via tickvals and the tick text is ticktext. (array is the default value if tickvals is provided).
  124. Sets a tick label prefix.
  125. 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.
  126. Sets a tick label suffix.
  127. Sets the text displayed at the ticks position via tickvals. Only has an effect if tickmode is set to array. Used with tickvals.
  128. Sets the source reference on Chart Studio Cloud for ticktext.
  129. Sets the values at which ticks on this axis appear. Only has an effect if tickmode is set to array. Used with ticktext.
  130. Sets the source reference on Chart Studio Cloud for tickvals.
  131. Sets the tick width (in px).
  132. 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.
  133. 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.
  134. 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.
  135. Sets whether a font should be styled with a normal or italic face from its family.
  136. Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
  137. Sets the variant of the font.
  138. Sets the weight (or boldness) of the font.
  139. Determines the location of color bar's title with respect to the color bar. Defaults to top when orientation if v and defaults to right when orientation if h.
  140. Sets the title of the color bar.
  141. Sets the x position with respect to xref of the color bar (in plot fraction). When xref is paper, defaults to 1.02 when orientation is v and 0.5 when orientation is h. When xref is container, defaults to 1 when orientation is v and 0.5 when orientation is h. Must be between 0 and 1 if xref is container and between -2 and 3 if xref is paper.
  142. Sets this color bar's horizontal position anchor. This anchor binds the x position to the left, center or right of the color bar. Defaults to left when orientation is v and center when orientation is h.
  143. Sets the amount of padding (in px) along the x direction.
  144. Sets the container x refers to. container spans the entire width of the plot. paper refers to the width of the plotting area only.
  145. Sets the y position with respect to yref of the color bar (in plot fraction). When yref is paper, defaults to 0.5 when orientation is v and 1.02 when orientation is h. When yref is container, defaults to 0.5 when orientation is v and 1 when orientation is h. Must be between 0 and 1 if yref is container and between -2 and 3 if yref is paper.
  146. Sets this color bar's vertical position anchor This anchor binds the y position to the top, middle or bottom of the color bar. Defaults to middle when orientation is v and bottom when orientation is h.
  147. Sets the amount of padding (in px) along the y direction.
  148. Sets the container y refers to. container spans the entire height of the plot. paper refers to the height of the plotting area only.
  149. Sets the colorscale. Has an effect only if in line.color is 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, use line.cmin and line.cmax. Alternatively, colorscale may 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.
  150. Sets the source reference on Chart Studio Cloud for color.
  151. Sets the dash style of the lines.
  152. Reverses the color mapping if true. Has an effect only if in line.color is set to a numerical array. If true, line.cmin will correspond to the last color in the array and line.cmax will correspond to the first color.
  153. Determines whether or not a colorbar is displayed for this trace. Has an effect only if in line.color is set to a numerical array.
  154. Sets the line width (in px).
  155. Determines whether the colorscale is a default palette (autocolorscale: true) or the palette determined by marker.colorscale. Has an effect only if in marker.color is set to a numerical array. In case colorscale is unspecified or autocolorscale is true, the default palette will be chosen according to whether numbers in the color array are all positive, all negative or mixed.
  156. Determines whether or not the color domain is computed with respect to the input data (here in marker.color) or the bounds set in marker.cmin and marker.cmax Has an effect only if in marker.color is set to a numerical array. Defaults to false when marker.cmin and marker.cmax are set by the user.
  157. Sets the upper bound of the color domain. Has an effect only if in marker.color is set to a numerical array. Value should have the same units as in marker.color and if set, marker.cmin must be set as well.
  158. Sets the mid-point of the color domain by scaling marker.cmin and/or marker.cmax to be equidistant to this point. Has an effect only if in marker.color is set to a numerical array. Value should have the same units as in marker.color. Has no effect when marker.cauto is false.
  159. Sets the lower bound of the color domain. Has an effect only if in marker.color is set to a numerical array. Value should have the same units as in marker.color and if set, marker.cmax must be set as well.
  160. 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.cmin and marker.cmax if set.
  161. 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.
  162. Sets the color of padded area.
  163. Sets the axis line color.
  164. Sets the width (in px) or the border enclosing this color bar.
  165. 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.
  166. 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.
  167. 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 len to set the value.
  168. Hide SI prefix for 10^n if |n| is below this number. This only has an effect when tickformat is SI or B.
  169. 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 if tickmode is set to auto.
  170. Sets the orientation of the colorbar.
  171. Sets the axis line color.
  172. Sets the width (in px) of the axis line.
  173. If "true", even 4-digit integers are separated
  174. 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.
  175. Determines whether or not the tick labels are drawn.
  176. 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.
  177. Same as showtickprefix but for tick suffixes.
  178. Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.
  179. 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 thickness to set the value.
  180. Sets the angle of the tick labels with respect to the horizontal. For example, a tickangle of -90 draws the tick labels vertically.
  181. Sets the tick color.
  182. 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.
  183. 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.
  184. 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.
  185. Sets whether a font should be styled with a normal or italic face from its family.
  186. Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
  187. Sets the variant of the font.
  188. Sets the weight (or boldness) of the font.
  189. 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
  190. 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.
  191. Determines where tick labels are drawn relative to the ticks. Left and right options are used when orientation is h, top and bottom when orientation is v.
  192. 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. tick0 determines which labels are shown. Not implemented for axes with type log or multicategory, or when tickmode is array.
  193. Sets the tick length (in px).
  194. 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 position tick0 and a tick step dtick (linear is the default value if tick0 and dtick are provided). If array, the placement of the ticks is set via tickvals and the tick text is ticktext. (array is the default value if tickvals is provided).
  195. Sets a tick label prefix.
  196. 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.
  197. Sets a tick label suffix.
  198. Sets the text displayed at the ticks position via tickvals. Only has an effect if tickmode is set to array. Used with tickvals.
  199. Sets the source reference on Chart Studio Cloud for ticktext.
  200. Sets the values at which ticks on this axis appear. Only has an effect if tickmode is set to array. Used with ticktext.
  201. Sets the source reference on Chart Studio Cloud for tickvals.
  202. Sets the tick width (in px).
  203. 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.
  204. 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.
  205. 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.
  206. Sets whether a font should be styled with a normal or italic face from its family.
  207. Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
  208. Sets the variant of the font.
  209. Sets the weight (or boldness) of the font.
  210. Determines the location of color bar's title with respect to the color bar. Defaults to top when orientation if v and defaults to right when orientation if h.
  211. Sets the title of the color bar.
  212. Sets the x position with respect to xref of the color bar (in plot fraction). When xref is paper, defaults to 1.02 when orientation is v and 0.5 when orientation is h. When xref is container, defaults to 1 when orientation is v and 0.5 when orientation is h. Must be between 0 and 1 if xref is container and between -2 and 3 if xref is paper.
  213. Sets this color bar's horizontal position anchor. This anchor binds the x position to the left, center or right of the color bar. Defaults to left when orientation is v and center when orientation is h.
  214. Sets the amount of padding (in px) along the x direction.
  215. Sets the container x refers to. container spans the entire width of the plot. paper refers to the width of the plotting area only.
  216. Sets the y position with respect to yref of the color bar (in plot fraction). When yref is paper, defaults to 0.5 when orientation is v and 1.02 when orientation is h. When yref is container, defaults to 0.5 when orientation is v and 1 when orientation is h. Must be between 0 and 1 if yref is container and between -2 and 3 if yref is paper.
  217. Sets this color bar's vertical position anchor This anchor binds the y position to the top, middle or bottom of the color bar. Defaults to middle when orientation is v and bottom when orientation is h.
  218. Sets the amount of padding (in px) along the y direction.
  219. Sets the container y refers to. container spans the entire height of the plot. paper refers to the height of the plotting area only.
  220. Sets the colorscale. Has an effect only if in marker.color is 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, use marker.cmin and marker.cmax. Alternatively, colorscale may 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.
  221. Sets the source reference on Chart Studio Cloud for color.
  222. Determines whether the colorscale is a default palette (autocolorscale: true) or the palette determined by marker.line.colorscale. Has an effect only if in marker.line.color is set to a numerical array. In case colorscale is unspecified or autocolorscale is true, the default palette will be chosen according to whether numbers in the color array are all positive, all negative or mixed.
  223. Determines whether or not the color domain is computed with respect to the input data (here in marker.line.color) or the bounds set in marker.line.cmin and marker.line.cmax Has an effect only if in marker.line.color is set to a numerical array. Defaults to false when marker.line.cmin and marker.line.cmax are set by the user.
  224. Sets the upper bound of the color domain. Has an effect only if in marker.line.color is set to a numerical array. Value should have the same units as in marker.line.color and if set, marker.line.cmin must be set as well.
  225. Sets the mid-point of the color domain by scaling marker.line.cmin and/or marker.line.cmax to be equidistant to this point. Has an effect only if in marker.line.color is set to a numerical array. Value should have the same units as in marker.line.color. Has no effect when marker.line.cauto is false.
  226. Sets the lower bound of the color domain. Has an effect only if in marker.line.color is set to a numerical array. Value should have the same units as in marker.line.color and if set, marker.line.cmax must be set as well.
  227. 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.cmin and marker.line.cmax if set.
  228. 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.
  229. Sets the colorscale. Has an effect only if in marker.line.color is 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, use marker.line.cmin and marker.line.cmax. Alternatively, colorscale may 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.
  230. Sets the source reference on Chart Studio Cloud for color.
  231. Reverses the color mapping if true. Has an effect only if in marker.line.color is set to a numerical array. If true, marker.line.cmin will correspond to the last color in the array and marker.line.cmax will correspond to the first color.
  232. Sets the width (in px) of the lines bounding the marker points.
  233. 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.
  234. Reverses the color mapping if true. Has an effect only if in marker.color is set to a numerical array. If true, marker.cmin will correspond to the last color in the array and marker.cmax will correspond to the first color.
  235. Determines whether or not a colorbar is displayed for this trace. Has an effect only if in marker.color is set to a numerical array.
  236. Sets the marker size (in px).
  237. Has an effect only if marker.size is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.
  238. Has an effect only if marker.size is set to a numerical array. Sets the rule for which the data in size is converted to pixels.
  239. Has an effect only if marker.size is set to a numerical array. Sets the scale factor used to determine the rendered size of marker points. Use with sizemin and sizemode.
  240. Sets the source reference on Chart Studio Cloud for size.
  241. Sets the marker symbol type.
  242. Sets the source reference on Chart Studio Cloud for symbol.
  243. Sets the source reference on Chart Studio Cloud for meta.
  244. Determines the drawing mode for this scatter trace. If the provided mode includes text then the text elements appear at the coordinates. Otherwise, the text elements appear on hover. If there are less than 20 points and the trace is not stacked then the default is lines+markers. Otherwise, lines.
  245. Sets the trace name. The trace name appears as the legend item and on hover.
  246. Sets the opacity of the trace.
  247. Sets the projection color.
  248. Sets the scale factor determining the size of the projection marker points.
  249. Sets whether or not projections are shown along the x axis.
  250. Sets the projection color.
  251. Sets the scale factor determining the size of the projection marker points.
  252. Sets whether or not projections are shown along the y axis.
  253. Sets the projection color.
  254. Sets the scale factor determining the size of the projection marker points.
  255. Sets whether or not projections are shown along the z axis.
  256. 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 to layout.scene2, and so on.
  257. Determines whether or not an item corresponding to this trace is shown in the legend.
  258. Sets the maximum number of points to keep on the plots from an incoming stream. If maxpoints is set to 50, only the newest 50 points will be displayed on the plot.
  259. The stream id number links a data trace on a plot with a stream. See https://chart-studio.plotly.com/settings for more details.
  260. 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.
  261. Sets the surface fill color.
  262. 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 hoverinfo contains a text flag and hovertext is not set, these elements will be seen in the hover labels.
  263. Sets the source reference on Chart Studio Cloud for color.
  264. 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.
  265. Sets the source reference on Chart Studio Cloud for family.
  266. Sets the source reference on Chart Studio Cloud for size.
  267. Sets whether a font should be styled with a normal or italic face from its family.
  268. Sets the source reference on Chart Studio Cloud for style.
  269. Sets the variant of the font.
  270. Sets the source reference on Chart Studio Cloud for variant.
  271. Sets the weight (or boldness) of the font.
  272. Sets the source reference on Chart Studio Cloud for weight.
  273. Sets the positions of the text elements with respects to the (x,y) coordinates.
  274. Sets the source reference on Chart Studio Cloud for textposition.
  275. Sets the source reference on Chart Studio Cloud for text.
  276. 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 are arrayOk: true) are available.
  277. Sets the source reference on Chart Studio Cloud for texttemplate.
  278. Assign an id to this trace, Use this to provide object constancy between traces during animations and transitions.
  279. 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).
  280. Sets the x coordinates.
  281. Sets the calendar system to use with x date data.
  282. Sets the hover text formatting rulefor x 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.46By default the values are formatted using xaxis.hoverformat.
  283. Sets the source reference on Chart Studio Cloud for x.
  284. Sets the y coordinates.
  285. Sets the calendar system to use with y date data.
  286. Sets the hover text formatting rulefor y 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.46By default the values are formatted using yaxis.hoverformat.
  287. Sets the source reference on Chart Studio Cloud for y.
  288. Sets the z coordinates.
  289. Sets the calendar system to use with z date data.
  290. Sets the hover text formatting rulefor z 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.46By default the values are formatted using zaxis.hoverformat.
  291. Sets the source reference on Chart Studio Cloud for z.