diff --git a/CHANGELOG.md b/CHANGELOG.md index 1194d8c5c11..91b7a574ba8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [2.1.0] - 2017-10-10 +### Updated +- Updated `plotly.min.js` to version 1.31.0. + - New features include a `table` trace type. + - See [the plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1310----2017-10-05) for additional information regarding the updates. + ## [2.0.16] - 2017-10-06 ### Updated - Updated `plotly.min.js` to version 1.31.0 for `plotly.offline`. diff --git a/plotly/graph_objs/graph_objs.py b/plotly/graph_objs/graph_objs.py index 604add72c24..03290329991 100644 --- a/plotly/graph_objs/graph_objs.py +++ b/plotly/graph_objs/graph_objs.py @@ -889,7 +889,8 @@ class Box(PlotlyDict): 'hoverinfo', 'hoverinfosrc', 'hoverlabel', 'ids', 'idssrc', 'jitter', 'legendgroup', 'line', 'marker', 'name', 'opacity', 'orientation', 'pointpos', 'showlegend', 'stream', 'type', 'uid', 'visible', - 'whiskerwidth', 'x', 'x0', 'xaxis', 'xsrc', 'y', 'y0', 'yaxis', 'ysrc'] + 'whiskerwidth', 'x', 'x0', 'xaxis', 'xcalendar', 'xsrc', 'y', 'y0', + 'yaxis', 'ycalendar', 'ysrc'] Run `.help('attribute')` on any of the above. '' is the object at [] @@ -1035,7 +1036,7 @@ class Data(PlotlyList): 'Histogram2d', 'Histogram2dcontour', 'Mesh3d', 'Ohlc', 'Parcoords', 'Pie', 'Pointcloud', 'Sankey', 'Scatter', 'Scatter3d', 'Scattercarpet', 'Scattergeo', 'Scattergl', 'Scattermapbox', 'Scatterternary', - 'Surface'] + 'Surface', 'Table'] """ _name = 'data' @@ -1685,9 +1686,9 @@ class Scattercarpet(PlotlyDict): ['a', 'asrc', 'b', 'bsrc', 'carpet', 'connectgaps', 'customdata', 'customdatasrc', 'fill', 'fillcolor', 'hoverinfo', 'hoverinfosrc', 'hoverlabel', 'hoveron', 'ids', 'idssrc', 'legendgroup', 'line', - 'marker', 'mode', 'name', 'opacity', 'showlegend', 'stream', 'sum', - 'text', 'textfont', 'textposition', 'textpositionsrc', 'textsrc', - 'type', 'uid', 'visible', 'xaxis', 'yaxis'] + 'marker', 'mode', 'name', 'opacity', 'showlegend', 'stream', 'text', + 'textfont', 'textposition', 'textpositionsrc', 'textsrc', 'type', + 'uid', 'visible', 'xaxis', 'yaxis'] Run `.help('attribute')` on any of the above. '' is the object at [] @@ -1818,6 +1819,23 @@ class Surface(PlotlyDict): _name = 'surface' +class Table(PlotlyDict): + """ + Valid attributes for 'table' at path [] under parents (): + + ['cells', 'columnorder', 'columnordersrc', 'columnwidth', + 'columnwidthsrc', 'customdata', 'customdatasrc', 'domain', 'header', + 'hoverinfo', 'hoverinfosrc', 'hoverlabel', 'ids', 'idssrc', + 'legendgroup', 'name', 'opacity', 'showlegend', 'stream', 'type', + 'uid', 'visible'] + + Run `.help('attribute')` on any of the above. + '' is the object at [] + + """ + _name = 'table' + + class Trace(dict): pass diff --git a/plotly/package_data/default-schema.json b/plotly/package_data/default-schema.json index 359c19aee80..f8442f73303 100644 --- a/plotly/package_data/default-schema.json +++ b/plotly/package_data/default-schema.json @@ -99,35 +99,53 @@ } }, "defs": { - "editTypes": { + "editType": { "layout": { - "docalc": false, - "docamera": false, - "dolayoutstyle": false, - "dolegend": false, - "domodebar": false, - "doplot": false, - "doticks": false, - "layoutReplot": false + "description": "layout attributes should include an `editType` string matching this flaglist. *calc* is the most extensive: a full `Plotly.plot` starting by clearing `gd.calcdata` to force it to be regenerated *calcIfAutorange* does a full `Plotly.plot`, but only clears and redoes `gd.calcdata` if there is at least one autoranged axis. *plot* calls `Plotly.plot` but without first clearing `gd.calcdata`. *legend* only redraws the legend. *ticks* only redraws axis ticks, labels, and gridlines. *layoutstyle* reapplies global and SVG cartesian axis styles. *modebar* just updates the modebar. *camera* just updates the camera settings for gl3d scenes. *arraydraw* allows component arrays to invoke the redraw routines just for the component(s) that changed.", + "extras": [ + "none" + ], + "flags": [ + "calc", + "calcIfAutorange", + "plot", + "legend", + "ticks", + "layoutstyle", + "modebar", + "camera", + "arraydraw" + ], + "valType": "flaglist" }, "traces": { - "autorangeOn": false, - "clearCalc": false, - "docalc": false, - "docalcAutorange": false, - "docolorbars": false, - "doplot": false, - "dostyle": false, - "fullReplot": false + "description": "trace attributes should include an `editType` string matching this flaglist. *calc* is the most extensive: a full `Plotly.plot` starting by clearing `gd.calcdata` to force it to be regenerated *calcIfAutorange* does a full `Plotly.plot`, but only clears and redoes `gd.calcdata` if there is at least one autoranged axis. *clearAxisTypes* resets the types of the axes this trace is on, because new data could cause the automatic axis type detection to change. Log type will not be cleared, as that is never automatically chosen so must have been user-specified. *plot* calls `Plotly.plot` but without first clearing `gd.calcdata`. *style* only calls `module.style` for all trace modules and redraws the legend. *colorbars* only redraws colorbars.", + "extras": [ + "none" + ], + "flags": [ + "calc", + "calcIfAutorange", + "clearAxisTypes", + "plot", + "style", + "colorbars" + ], + "valType": "flaglist" } }, + "impliedEdits": { + "description": "Sometimes when an attribute is changed, other attributes must be altered as well in order to achieve the intended result. For example, when `range` is specified, it is important to set `autorange` to `false` or the new `range` value would be lost in the redraw. `impliedEdits` is the mechanism to do this: `impliedEdits: {autorange: false}`. Each key is a relative paths to the attribute string to change, using *^* to ascend into the parent container, for example `range[0]` has `impliedEdits: {*^autorange*: false}`. A value of `undefined` means that the attribute will not be changed, but its previous value should be recorded in case we want to reverse this change later. For example, `autorange` has `impliedEdits: {*range[0]*: undefined, *range[1]*:undefined} because the range will likely be changed by redraw." + }, "metaKeys": [ "_isSubplotObj", "_isLinkedToArray", "_arrayAttrRegexps", "_deprecated", "description", - "role" + "role", + "editType", + "impliedEdits" ], "valObjects": { "angle": { @@ -294,13 +312,16 @@ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -309,19 +330,24 @@ "role": "info", "valType": "info_array" }, + "editType": "plot", "endpadding": { + "editType": "plot", "role": "style", "valType": "number" }, "range": { "description": "Defines the start and end point of this angular axis.", + "editType": "plot", "items": [ { "dflt": 0, + "editType": "plot", "valType": "number" }, { "dflt": 360, + "editType": "plot", "valType": "number" } ], @@ -331,27 +357,32 @@ "role": "object", "showline": { "description": "Determines whether or not the line bounding this angular axis will be shown on the figure.", + "editType": "plot", "role": "style", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the angular axis ticks will feature tick labels.", + "editType": "plot", "role": "style", "valType": "boolean" }, "tickcolor": { "description": "Sets the color of the tick lines on this angular axis.", + "editType": "plot", "role": "style", "valType": "color" }, "ticklen": { "description": "Sets the length of the tick lines on this angular axis.", + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tickorientation": { "description": "Sets the orientation (from the paper perspective) of the angular axis tick labels.", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -361,11 +392,13 @@ }, "ticksuffix": { "description": "Sets the length of the tick lines on this angular axis.", + "editType": "plot", "role": "style", "valType": "string" }, "visible": { "description": "Determines whether or not this axis will be visible.", + "editType": "plot", "role": "info", "valType": "boolean" } @@ -376,6 +409,7 @@ "_deprecated": { "ref": { "description": "Obsolete. Set `xref` and `yref` separately instead.", + "editType": "calc", "role": "info", "valType": "string" } @@ -383,6 +417,7 @@ "align": { "description": "Sets the horizontal alignment of the `text` within the box. Has an effect only if `text` spans more two or more lines (i.e. `text` contains one or more
HTML tags) or if an explicit width is set to override the text width.", "dflt": "center", + "editType": "arraydraw", "role": "style", "valType": "enumerated", "values": [ @@ -393,38 +428,44 @@ }, "arrowcolor": { "description": "Sets the color of the annotation arrow.", + "editType": "arraydraw", "role": "style", "valType": "color" }, "arrowhead": { "description": "Sets the annotation arrow head style.", "dflt": 1, + "editType": "arraydraw", "max": 8, "min": 0, "role": "style", "valType": "integer" }, "arrowsize": { - "description": "Sets the size (in px) of annotation arrow head.", + "description": "Sets the size of the annotation arrow head, relative to `arrowwidth`. A value of 1 (default) gives a head about 3x as wide as the line.", "dflt": 1, + "editType": "calcIfAutorange", "min": 0.3, "role": "style", "valType": "number" }, "arrowwidth": { - "description": "Sets the width (in px) of annotation arrow.", + "description": "Sets the width (in px) of annotation arrow line.", + "editType": "calcIfAutorange", "min": 0.1, "role": "style", "valType": "number" }, "ax": { "description": "Sets the x component of the arrow tail about the arrow head. If `axref` is `pixel`, a positive (negative) component corresponds to an arrow pointing from right to left (left to right). If `axref` is an axis, this is an absolute value on that axis, like `x`, NOT a relative value.", + "editType": "calcIfAutorange", "role": "info", "valType": "any" }, "axref": { "description": "Indicates in what terms the tail of the annotation (ax,ay) is specified. If `pixel`, `ax` is a relative offset in pixels from `x`. If set to an x axis id (e.g. *x* or *x2*), `ax` is specified in the same terms as that axis. This is useful for trendline annotations which should continue to indicate the correct trend when zoomed.", "dflt": "pixel", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -434,12 +475,14 @@ }, "ay": { "description": "Sets the y component of the arrow tail about the arrow head. If `ayref` is `pixel`, a positive (negative) component corresponds to an arrow pointing from bottom to top (top to bottom). If `ayref` is an axis, this is an absolute value on that axis, like `y`, NOT a relative value.", + "editType": "calcIfAutorange", "role": "info", "valType": "any" }, "ayref": { "description": "Indicates in what terms the tail of the annotation (ax,ay) is specified. If `pixel`, `ay` is a relative offset in pixels from `y`. If set to a y axis id (e.g. *y* or *y2*), `ay` is specified in the same terms as that axis. This is useful for trendline annotations which should continue to indicate the correct trend when zoomed.", "dflt": "pixel", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -450,18 +493,21 @@ "bgcolor": { "description": "Sets the background color of the annotation.", "dflt": "rgba(0,0,0,0)", + "editType": "arraydraw", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the color of the border enclosing the annotation `text`.", "dflt": "rgba(0,0,0,0)", + "editType": "arraydraw", "role": "style", "valType": "color" }, "borderpad": { "description": "Sets the padding (in px) between the `text` and the enclosing border.", "dflt": 1, + "editType": "calcIfAutorange", "min": 0, "role": "style", "valType": "number" @@ -469,18 +515,21 @@ "borderwidth": { "description": "Sets the width (in px) of the border enclosing the annotation `text`.", "dflt": 1, + "editType": "calcIfAutorange", "min": 0, "role": "style", "valType": "number" }, "captureevents": { "description": "Determines whether the annotation text box captures mouse move and click events, or allows those events to pass through to data points in the plot that may be behind the annotation. By default `captureevents` is *false* unless `hovertext` is provided. If you use the event `plotly_clickannotation` without `hovertext` you must explicitly enable `captureevents`.", + "editType": "arraydraw", "role": "info", "valType": "boolean" }, "clicktoshow": { "description": "Makes this annotation respond to clicks on the plot. If you click a data point that exactly matches the `x` and `y` values of this annotation, and it is hidden (visible: false), it will appear. In *onoff* mode, you must click the same point again to make it disappear, so if you click multiple points, you can show multiple annotations. In *onout* mode, a click anywhere else in the plot (on another data point or not) will hide this annotation. If you need to show/hide this annotation in response to different `x` or `y` values, you can set `xclick` and/or `yclick`. This is useful for example to label the side of a bar. To label markers though, `standoff` is preferred over `xclick` and `yclick`.", "dflt": false, + "editType": "arraydraw", "role": "style", "valType": "enumerated", "values": [ @@ -489,14 +538,18 @@ "onout" ] }, + "editType": "calc", "font": { "color": { + "editType": "arraydraw", "role": "style", "valType": "color" }, "description": "Sets the annotation text font.", + "editType": "calcIfAutorange", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calcIfAutorange", "noBlank": true, "role": "style", "strict": true, @@ -504,6 +557,7 @@ }, "role": "object", "size": { + "editType": "calcIfAutorange", "min": 1, "role": "style", "valType": "number" @@ -512,6 +566,7 @@ "height": { "description": "Sets an explicit height for the text box. null (default) lets the text set the box height. Taller text will be clipped.", "dflt": null, + "editType": "calcIfAutorange", "min": 1, "role": "style", "valType": "number" @@ -519,22 +574,28 @@ "hoverlabel": { "bgcolor": { "description": "Sets the background color of the hover label. By default uses the annotation's `bgcolor` made opaque, or white if it was transparent.", + "editType": "arraydraw", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the border color of the hover label. By default uses either dark grey or white, for maximum contrast with `hoverlabel.bgcolor`.", + "editType": "arraydraw", "role": "style", "valType": "color" }, + "editType": "arraydraw", "font": { "color": { + "editType": "arraydraw", "role": "style", "valType": "color" }, "description": "Sets the hover label text font. By default uses the global hover font and size, with color from `hoverlabel.bordercolor`.", + "editType": "arraydraw", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "arraydraw", "noBlank": true, "role": "style", "strict": true, @@ -542,6 +603,7 @@ }, "role": "object", "size": { + "editType": "arraydraw", "min": 1, "role": "style", "valType": "number" @@ -551,12 +613,14 @@ }, "hovertext": { "description": "Sets text to appear when hovering over this annotation. If omitted or blank, no hover label will appear.", + "editType": "arraydraw", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the annotation (text + arrow).", "dflt": 1, + "editType": "arraydraw", "max": 1, "min": 0, "role": "style", @@ -566,30 +630,35 @@ "showarrow": { "description": "Determines whether or not the annotation is drawn with an arrow. If *true*, `text` is placed near the arrow's tail. If *false*, `text` lines up with the `x` and `y` provided.", "dflt": true, + "editType": "calcIfAutorange", "role": "style", "valType": "boolean" }, "standoff": { "description": "Sets a distance, in pixels, to move the arrowhead away from the position it is pointing at, for example to point at the edge of a marker independent of zoom. Note that this shortens the arrow from the `ax` / `ay` vector, in contrast to `xshift` / `yshift` which moves everything by this amount.", "dflt": 0, + "editType": "calcIfAutorange", "min": 0, "role": "style", "valType": "number" }, "text": { "description": "Sets the text associated with this annotation. Plotly uses a subset of HTML tags to do things like newline (
), bold (), italics (), hyperlinks (). Tags , , are also supported.", + "editType": "calcIfAutorange", "role": "info", "valType": "string" }, "textangle": { "description": "Sets the angle at which the `text` is drawn with respect to the horizontal.", "dflt": 0, + "editType": "calcIfAutorange", "role": "style", "valType": "angle" }, "valign": { "description": "Sets the vertical alignment of the `text` within the box. Has an effect only if an explicit height is set to override the text height.", "dflt": "middle", + "editType": "arraydraw", "role": "style", "valType": "enumerated", "values": [ @@ -601,24 +670,28 @@ "visible": { "description": "Determines whether or not this annotation is visible.", "dflt": true, + "editType": "calcIfAutorange", "role": "info", "valType": "boolean" }, "width": { "description": "Sets an explicit width for the text box. null (default) lets the text set the box width. Wider text will be clipped. There is no automatic wrapping; use
to start a new line.", "dflt": null, + "editType": "calcIfAutorange", "min": 1, "role": "style", "valType": "number" }, "x": { "description": "Sets the annotation's x position. If the axis `type` is *log*, then you must take the log of your desired range. If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calcIfAutorange", "role": "info", "valType": "any" }, "xanchor": { "description": "Sets the text box's horizontal position anchor This anchor binds the `x` position to the *left*, *center* or *right* of the annotation. For example, if `x` is set to 1, `xref` to *paper* and `xanchor` to *right* then the right-most portion of the annotation lines up with the right-most edge of the plotting area. If *auto*, the anchor is equivalent to *center* for data-referenced annotations or if there is an arrow, whereas for paper-referenced with no arrow, the anchor picked corresponds to the closest side.", "dflt": "auto", + "editType": "calcIfAutorange", "role": "info", "valType": "enumerated", "values": [ @@ -630,11 +703,13 @@ }, "xclick": { "description": "Toggle this annotation when clicking a data point whose `x` value is `xclick` rather than the annotation's `x` value.", + "editType": "arraydraw", "role": "info", "valType": "any" }, "xref": { "description": "Sets the annotation's x coordinate axis. If set to an x axis id (e.g. *x* or *x2*), the `x` position refers to an x coordinate If set to *paper*, the `x` position refers to the distance from the left side of the plotting area in normalized coordinates where 0 (1) corresponds to the left (right) side.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -645,17 +720,20 @@ "xshift": { "description": "Shifts the position of the whole annotation and arrow to the right (positive) or left (negative) by this many pixels.", "dflt": 0, + "editType": "calcIfAutorange", "role": "style", "valType": "number" }, "y": { "description": "Sets the annotation's y position. If the axis `type` is *log*, then you must take the log of your desired range. If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calcIfAutorange", "role": "info", "valType": "any" }, "yanchor": { "description": "Sets the text box's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the annotation. For example, if `y` is set to 1, `yref` to *paper* and `yanchor` to *top* then the top-most portion of the annotation lines up with the top-most edge of the plotting area. If *auto*, the anchor is equivalent to *middle* for data-referenced annotations or if there is an arrow, whereas for paper-referenced with no arrow, the anchor picked corresponds to the closest side.", "dflt": "auto", + "editType": "calcIfAutorange", "role": "info", "valType": "enumerated", "values": [ @@ -667,11 +745,13 @@ }, "yclick": { "description": "Toggle this annotation when clicking a data point whose `y` value is `yclick` rather than the annotation's `y` value.", + "editType": "arraydraw", "role": "info", "valType": "any" }, "yref": { "description": "Sets the annotation's y coordinate axis. If set to an y axis id (e.g. *y* or *y2*), the `y` position refers to an y coordinate If set to *paper*, the `y` position refers to the distance from the bottom of the plotting area in normalized coordinates where 0 (1) corresponds to the bottom (top).", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -682,6 +762,7 @@ "yshift": { "description": "Shifts the position of the whole annotation and arrow up (positive) or down (negative) by this many pixels.", "dflt": 0, + "editType": "calcIfAutorange", "role": "style", "valType": "number" } @@ -692,12 +773,14 @@ "autosize": { "description": "Determines whether or not a layout width or height that has been left undefined by the user is initialized on each relayout. Note that, regardless of this attribute, an undefined layout width or height is always initialized on the first call to plot.", "dflt": false, + "editType": "none", "role": "info", "valType": "boolean" }, "calendar": { "description": "Sets the default calendar system to use for interpreting and displaying dates throughout the plot.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -721,6 +804,7 @@ }, "direction": { "description": "For polar plots only. Sets the direction corresponding to positive angles.", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -731,6 +815,7 @@ "dragmode": { "description": "Determines the mode of drag interactions. *select* and *lasso* apply only to scatter traces with markers or text. *orbit* and *turntable* apply only to 3D scenes.", "dflt": "zoom", + "editType": "modebar", "role": "info", "valType": "enumerated", "values": [ @@ -742,16 +827,20 @@ "turntable" ] }, + "editType": "plot", "font": { "color": { "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets the global font. Note that fonts used in traces and other layout components inherit from the global font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", "dflt": "\"Open Sans\", verdana, arial, sans-serif", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -760,6 +849,7 @@ "role": "object", "size": { "dflt": 12, + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -770,18 +860,37 @@ "bgcolor": { "description": "Set the background color of the map", "dflt": "#fff", + "editType": "plot", "role": "style", "valType": "color" }, + "center": { + "editType": "plot", + "lat": { + "description": "Sets the latitude of the map's center. For all projection types, the map's latitude center lies at the middle of the latitude range by default.", + "editType": "plot", + "role": "info", + "valType": "number" + }, + "lon": { + "description": "Sets the longitude of the map's center. By default, the map's longitude center lies at the middle of the longitude range for scoped projection and above `projection.rotation.lon` otherwise.", + "editType": "plot", + "role": "info", + "valType": "number" + }, + "role": "object" + }, "coastlinecolor": { "description": "Sets the coastline color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "coastlinewidth": { "description": "Sets the coastline stroke width (in px).", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -789,31 +898,37 @@ "countrycolor": { "description": "Sets line color of the country boundaries.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "countrywidth": { "description": "Sets line width (in px) of the country boundaries.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "domain": { + "editType": "plot", "role": "object", "x": { - "description": "Sets the horizontal domain of this map (in plot fraction).", + "description": "Sets the maximum horizontal domain of this map (in plot fraction). Note that geo subplots are constrained by domain. In general, when `projection.scale` is set to 1. a map will fit either its x or y domain, but not both. ", "dflt": [ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -823,18 +938,21 @@ "valType": "info_array" }, "y": { - "description": "Sets the vertical domain of this map (in plot fraction).", + "description": "Sets the maximum vertical domain of this map (in plot fraction). Note that geo subplots are constrained by domain. In general, when `projection.scale` is set to 1. a map will fit either its x or y domain, but not both. ", "dflt": [ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -844,15 +962,18 @@ "valType": "info_array" } }, + "editType": "plot", "framecolor": { "description": "Sets the color the frame.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "framewidth": { "description": "Sets the stroke width (in px) of the frame.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -860,41 +981,50 @@ "lakecolor": { "description": "Sets the color of the lakes.", "dflt": "#3399FF", + "editType": "plot", "role": "style", "valType": "color" }, "landcolor": { "description": "Sets the land mass color.", "dflt": "#F0DC82", + "editType": "plot", "role": "style", "valType": "color" }, "lataxis": { "dtick": { "description": "Sets the graticule's longitude/latitude tick step.", + "editType": "plot", "role": "info", "valType": "number" }, + "editType": "plot", "gridcolor": { "description": "Sets the graticule's stroke color.", "dflt": "#eee", + "editType": "plot", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the graticule's stroke width (in px).", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "range": { - "description": "Sets the range of this axis (in degrees).", + "description": "Sets the range of this axis (in degrees), sets the map's clipped coordinates.", + "editType": "plot", "items": [ { + "editType": "plot", "valType": "number" }, { + "editType": "plot", "valType": "number" } ], @@ -905,11 +1035,13 @@ "showgrid": { "description": "Sets whether or not graticule are shown on the map.", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "tick0": { "description": "Sets the graticule's starting tick longitude/latitude.", + "editType": "plot", "role": "info", "valType": "number" } @@ -917,29 +1049,36 @@ "lonaxis": { "dtick": { "description": "Sets the graticule's longitude/latitude tick step.", + "editType": "plot", "role": "info", "valType": "number" }, + "editType": "plot", "gridcolor": { "description": "Sets the graticule's stroke color.", "dflt": "#eee", + "editType": "plot", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the graticule's stroke width (in px).", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "range": { - "description": "Sets the range of this axis (in degrees).", + "description": "Sets the range of this axis (in degrees), sets the map's clipped coordinates.", + "editType": "plot", "items": [ { + "editType": "plot", "valType": "number" }, { + "editType": "plot", "valType": "number" } ], @@ -950,11 +1089,13 @@ "showgrid": { "description": "Sets whether or not graticule are shown on the map.", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "tick0": { "description": "Sets the graticule's starting tick longitude/latitude.", + "editType": "plot", "role": "info", "valType": "number" } @@ -962,17 +1103,22 @@ "oceancolor": { "description": "Sets the ocean color", "dflt": "#3399FF", + "editType": "plot", "role": "style", "valType": "color" }, "projection": { + "editType": "plot", "parallels": { "description": "For conic projection types only. Sets the parallels (tangent, secant) where the cone intersects the sphere.", + "editType": "plot", "items": [ { + "editType": "plot", "valType": "number" }, { + "editType": "plot", "valType": "number" } ], @@ -981,33 +1127,38 @@ }, "role": "object", "rotation": { + "editType": "plot", "lat": { "description": "Rotates the map along meridians (in degrees North).", + "editType": "plot", "role": "info", "valType": "number" }, "lon": { - "description": "Rotates the map along parallels (in degrees East).", + "description": "Rotates the map along parallels (in degrees East). Defaults to the center of the `lonaxis.range` values.", + "editType": "plot", "role": "info", "valType": "number" }, "role": "object", "roll": { "description": "Roll the map (in degrees) For example, a roll of *180* makes the map appear upside down.", + "editType": "plot", "role": "info", "valType": "number" } }, "scale": { - "description": "Zooms in or out on the map view.", + "description": "Zooms in or out on the map view. A scale of *1* corresponds to the largest zoom level that fits the map's lon and lat ranges. ", "dflt": 1, - "max": 10, + "editType": "plot", "min": 0, "role": "info", "valType": "number" }, "type": { "description": "Sets the projection type.", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -1040,6 +1191,7 @@ "coerceNumber": true, "description": "Sets the resolution of the base layers. The values have units of km/mm e.g. 110 corresponds to a scale ratio of 1:110,000,000.", "dflt": 110, + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -1050,12 +1202,14 @@ "rivercolor": { "description": "Sets color of the rivers.", "dflt": "#3399FF", + "editType": "plot", "role": "style", "valType": "color" }, "riverwidth": { "description": "Sets the stroke width (in px) of the rivers.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -1064,6 +1218,7 @@ "scope": { "description": "Set the scope of the map.", "dflt": "world", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -1078,57 +1233,67 @@ }, "showcoastlines": { "description": "Sets whether or not the coastlines are drawn.", + "editType": "plot", "role": "info", "valType": "boolean" }, "showcountries": { "description": "Sets whether or not country boundaries are drawn.", + "editType": "plot", "role": "info", "valType": "boolean" }, "showframe": { "description": "Sets whether or not a frame is drawn around the map.", + "editType": "plot", "role": "info", "valType": "boolean" }, "showlakes": { "description": "Sets whether or not lakes are drawn.", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "showland": { "description": "Sets whether or not land masses are filled in color.", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "showocean": { "description": "Sets whether or not oceans are filled in color.", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "showrivers": { "description": "Sets whether or not rivers are drawn.", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "showsubunits": { "description": "Sets whether or not boundaries of subunits within countries (e.g. states, provinces) are drawn.", + "editType": "plot", "role": "info", "valType": "boolean" }, "subunitcolor": { "description": "Sets the color of the subunits boundaries.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "subunitwidth": { "description": "Sets the stroke width (in px) of the subunits boundaries.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -1137,6 +1302,7 @@ "height": { "description": "Sets the plot's height (in px).", "dflt": 450, + "editType": "none", "min": 10, "role": "info", "valType": "number" @@ -1144,28 +1310,36 @@ "hidesources": { "description": "Determines whether or not a text link citing the data source is placed at the bottom-right cored of the figure. Has only an effect only on graphs that have been generated via forked graphs from the plotly service (at https://plot.ly or on-premise).", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "hoverlabel": { "bgcolor": { "description": "Sets the background color of all hover labels on graph", + "editType": "none", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the border color of all hover labels on graph.", + "editType": "none", "role": "style", "valType": "color" }, + "editType": "none", "font": { "color": { + "editType": "none", "role": "style", "valType": "color" }, + "description": "Sets the default hover label font used by all traces on the graph.", + "editType": "none", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", "dflt": "Arial, sans-serif", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -1174,6 +1348,7 @@ "role": "object", "size": { "dflt": 13, + "editType": "none", "min": 1, "role": "style", "valType": "number" @@ -1182,6 +1357,7 @@ "namelength": { "description": "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.", "dflt": 15, + "editType": "none", "min": -1, "role": "style", "valType": "integer" @@ -1190,6 +1366,7 @@ }, "hovermode": { "description": "Determines the mode of hover interactions.", + "editType": "modebar", "role": "info", "valType": "enumerated", "values": [ @@ -1202,9 +1379,11 @@ "images": { "items": { "image": { + "editType": "arraydraw", "layer": { "description": "Specifies whether images are drawn below or above traces. When `xref` and `yref` are both set to `paper`, image is drawn below the entire plot area.", "dflt": "above", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -1215,6 +1394,7 @@ "opacity": { "description": "Sets the opacity of the image.", "dflt": 1, + "editType": "arraydraw", "max": 1, "min": 0, "role": "info", @@ -1224,18 +1404,21 @@ "sizex": { "description": "Sets the image container size horizontally. The image will be sized based on the `position` value. When `xref` is set to `paper`, units are sized relative to the plot width.", "dflt": 0, + "editType": "arraydraw", "role": "info", "valType": "number" }, "sizey": { "description": "Sets the image container size vertically. The image will be sized based on the `position` value. When `yref` is set to `paper`, units are sized relative to the plot height.", "dflt": 0, + "editType": "arraydraw", "role": "info", "valType": "number" }, "sizing": { "description": "Specifies which dimension of the image to constrain.", "dflt": "contain", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -1246,24 +1429,28 @@ }, "source": { "description": "Specifies the URL of the image to be used. The URL must be accessible from the domain where the plot code is run, and can be either relative or absolute.", + "editType": "arraydraw", "role": "info", "valType": "string" }, "visible": { "description": "Determines whether or not this image is visible.", "dflt": true, + "editType": "arraydraw", "role": "info", "valType": "boolean" }, "x": { "description": "Sets the image's x position. When `xref` is set to `paper`, units are sized relative to the plot height. See `xref` for more info", "dflt": 0, + "editType": "arraydraw", "role": "info", "valType": "any" }, "xanchor": { "description": "Sets the anchor for the x position", "dflt": "left", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -1275,6 +1462,7 @@ "xref": { "description": "Sets the images's x coordinate axis. If set to a x axis id (e.g. *x* or *x2*), the `x` position refers to an x data coordinate If set to *paper*, the `x` position refers to the distance from the left of plot in normalized coordinates where *0* (*1*) corresponds to the left (right).", "dflt": "paper", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -1285,12 +1473,14 @@ "y": { "description": "Sets the image's y position. When `yref` is set to `paper`, units are sized relative to the plot height. See `yref` for more info", "dflt": 0, + "editType": "arraydraw", "role": "info", "valType": "any" }, "yanchor": { "description": "Sets the anchor for the y position.", "dflt": "top", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -1302,6 +1492,7 @@ "yref": { "description": "Sets the images's y coordinate axis. If set to a y axis id (e.g. *y* or *y2*), the `y` position refers to a y data coordinate. If set to *paper*, the `y` position refers to the distance from the bottom of the plot in normalized coordinates where *0* (*1*) corresponds to the bottom (top).", "dflt": "paper", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -1316,30 +1507,37 @@ "legend": { "bgcolor": { "description": "Sets the legend background color.", + "editType": "legend", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the color of the border enclosing the legend.", "dflt": "#444", + "editType": "legend", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) of the border enclosing the legend.", "dflt": 0, + "editType": "legend", "min": 0, "role": "style", "valType": "number" }, + "editType": "legend", "font": { "color": { + "editType": "legend", "role": "style", "valType": "color" }, "description": "Sets the font used to text the legend items.", + "editType": "legend", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "legend", "noBlank": true, "role": "style", "strict": true, @@ -1347,6 +1545,7 @@ }, "role": "object", "size": { + "editType": "legend", "min": 1, "role": "style", "valType": "number" @@ -1355,6 +1554,7 @@ "orientation": { "description": "Sets the orientation of the legend.", "dflt": "v", + "editType": "legend", "role": "info", "valType": "enumerated", "values": [ @@ -1366,12 +1566,14 @@ "tracegroupgap": { "description": "Sets the amount of vertical space (in px) between legend groups.", "dflt": 10, + "editType": "legend", "min": 0, "role": "style", "valType": "number" }, "traceorder": { "description": "Determines the order at which the legend items are displayed. If *normal*, the items are displayed top-to-bottom in the same order as the input data. If *reversed*, the items are displayed in the opposite order as *normal*. If *grouped*, the items are displayed in groups (when a trace `legendgroup` is provided). if *grouped+reversed*, the items are displayed in the opposite order as *grouped*.", + "editType": "legend", "extras": [ "normal" ], @@ -1385,6 +1587,7 @@ "x": { "description": "Sets the x position (in normalized coordinates) of the legend.", "dflt": 1.02, + "editType": "legend", "max": 3, "min": -2, "role": "style", @@ -1393,6 +1596,7 @@ "xanchor": { "description": "Sets the legend's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the legend.", "dflt": "left", + "editType": "legend", "role": "info", "valType": "enumerated", "values": [ @@ -1405,6 +1609,7 @@ "y": { "description": "Sets the y position (in normalized coordinates) of the legend.", "dflt": 1, + "editType": "legend", "max": 3, "min": -2, "role": "style", @@ -1413,6 +1618,7 @@ "yanchor": { "description": "Sets the legend's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the legend.", "dflt": "auto", + "editType": "legend", "role": "info", "valType": "enumerated", "values": [ @@ -1430,6 +1636,7 @@ "_isSubplotObj": true, "accesstoken": { "description": "Sets the mapbox access token to be used for this mapbox map. Alternatively, the mapbox access token can be set in the configuration options under `mapboxAccessToken`.", + "editType": "plot", "noBlank": true, "role": "info", "strict": true, @@ -1438,25 +1645,30 @@ "bearing": { "description": "Sets the bearing angle of the map (in degrees counter-clockwise from North).", "dflt": 0, + "editType": "plot", "role": "info", "valType": "number" }, "center": { + "editType": "plot", "lat": { "description": "Sets the latitude of the center of the map (in degrees North).", "dflt": 0, + "editType": "plot", "role": "info", "valType": "number" }, "lon": { "description": "Sets the longitude of the center of the map (in degrees East).", "dflt": 0, + "editType": "plot", "role": "info", "valType": "number" }, "role": "object" }, "domain": { + "editType": "plot", "role": "object", "x": { "description": "Sets the horizontal domain of this subplot (in plot fraction).", @@ -1464,13 +1676,16 @@ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -1485,13 +1700,16 @@ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -1501,19 +1719,23 @@ "valType": "info_array" } }, + "editType": "plot", "layers": { "items": { "layer": { "below": { "description": "Determines if the layer will be inserted before the layer with the specified ID. If omitted or set to '', the layer will be inserted above every existing layer.", "dflt": "", + "editType": "plot", "role": "info", "valType": "string" }, "circle": { + "editType": "plot", "radius": { "description": "Sets the circle radius. Has an effect only when `type` is set to *circle*.", "dflt": 15, + "editType": "plot", "role": "style", "valType": "number" }, @@ -1522,23 +1744,29 @@ "color": { "description": "Sets the primary layer color. If `type` is *circle*, color corresponds to the circle color If `type` is *line*, color corresponds to the line color If `type` is *fill*, color corresponds to the fill color If `type` is *symbol*, color corresponds to the icon color", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, + "editType": "plot", "fill": { + "editType": "plot", "outlinecolor": { "description": "Sets the fill outline color. Has an effect only when `type` is set to *fill*.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "role": "object" }, "line": { + "editType": "plot", "role": "object", "width": { "description": "Sets the line width. Has an effect only when `type` is set to *line*.", "dflt": 2, + "editType": "plot", "role": "style", "valType": "number" } @@ -1546,6 +1774,7 @@ "opacity": { "description": "Sets the opacity of the layer.", "dflt": 1, + "editType": "plot", "max": 1, "min": 0, "role": "info", @@ -1554,18 +1783,21 @@ "role": "object", "source": { "description": "Sets the source data for this layer. Source can be either a URL, a geojson object (with `sourcetype` set to *geojson*) or an array of tile URLS (with `sourcetype` set to *vector*).", + "editType": "plot", "role": "info", "valType": "any" }, "sourcelayer": { "description": "Specifies the layer to use from a vector tile source. Required for *vector* source type that supports multiple layers.", "dflt": "", + "editType": "plot", "role": "info", "valType": "string" }, "sourcetype": { "description": "Sets the source type for this layer. Support for *raster*, *image* and *video* source types is coming soon.", "dflt": "geojson", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -1574,15 +1806,18 @@ ] }, "symbol": { + "editType": "plot", "icon": { "description": "Sets the symbol icon image. Full list: https://www.mapbox.com/maki-icons/", "dflt": "marker", + "editType": "plot", "role": "style", "valType": "string" }, "iconsize": { "description": "Sets the symbol icon size. Has an effect only when `type` is set to *symbol*.", "dflt": 10, + "editType": "plot", "role": "style", "valType": "number" }, @@ -1590,18 +1825,22 @@ "text": { "description": "Sets the symbol text.", "dflt": "", + "editType": "plot", "role": "info", "valType": "string" }, "textfont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets the icon text font. Has an effect only when `type` is set to *symbol*.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", "dflt": "Open Sans Regular, Arial Unicode MS Regular", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -1609,6 +1848,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -1618,6 +1858,7 @@ "arrayOk": false, "description": "Sets the positions of the `text` elements with respects to the (x,y) coordinates.", "dflt": "middle center", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -1636,6 +1877,7 @@ "type": { "description": "Sets the layer type. Support for *raster*, *background* types is coming soon. Note that *line* and *fill* are not compatible with Point GeoJSON geometries.", "dflt": "circle", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -1652,6 +1894,7 @@ "pitch": { "description": "Sets the pitch angle of the map (in degrees, where *0* means perpendicular to the surface of the map).", "dflt": 0, + "editType": "plot", "role": "info", "valType": "number" }, @@ -1659,6 +1902,7 @@ "style": { "description": "Sets the Mapbox map style. Either input one of the default Mapbox style names or the URL to a custom style or a valid Mapbox style JSON.", "dflt": "basic", + "editType": "plot", "role": "style", "valType": "any", "values": [ @@ -1674,6 +1918,7 @@ "zoom": { "description": "Sets the zoom level of the map.", "dflt": 1, + "editType": "plot", "role": "info", "valType": "number" } @@ -1681,19 +1926,23 @@ "margin": { "autoexpand": { "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "b": { "description": "Sets the bottom margin (in px).", "dflt": 80, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, + "editType": "calc", "l": { "description": "Sets the left margin (in px).", "dflt": 80, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -1701,6 +1950,7 @@ "pad": { "description": "Sets the amount of padding (in px) between the plotting area and the axis lines", "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -1708,6 +1958,7 @@ "r": { "description": "Sets the right margin (in px).", "dflt": 80, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -1716,6 +1967,7 @@ "t": { "description": "Sets the top margin (in px).", "dflt": 100, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -1723,18 +1975,21 @@ }, "orientation": { "description": "For polar plots only. Rotates the entire polar by the given angle.", + "editType": "plot", "role": "info", "valType": "angle" }, "paper_bgcolor": { "description": "Sets the color of paper where the graph is drawn.", "dflt": "#fff", + "editType": "plot", "role": "style", "valType": "color" }, "plot_bgcolor": { "description": "Sets the color of plotting area in-between x and y axes.", "dflt": "#fff", + "editType": "layoutstyle", "role": "style", "valType": "color" }, @@ -1745,13 +2000,16 @@ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -1760,22 +2018,28 @@ "role": "info", "valType": "info_array" }, + "editType": "plot", "endpadding": { + "editType": "plot", "role": "style", "valType": "number" }, "orientation": { "description": "Sets the orientation (an angle with respect to the origin) of the radial axis.", + "editType": "plot", "role": "style", "valType": "number" }, "range": { "description": "Defines the start and end point of this radial axis.", + "editType": "plot", "items": [ { + "editType": "plot", "valType": "number" }, { + "editType": "plot", "valType": "number" } ], @@ -1785,27 +2049,32 @@ "role": "object", "showline": { "description": "Determines whether or not the line bounding this radial axis will be shown on the figure.", + "editType": "plot", "role": "style", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the radial axis ticks will feature tick labels.", + "editType": "plot", "role": "style", "valType": "boolean" }, "tickcolor": { "description": "Sets the color of the tick lines on this radial axis.", + "editType": "plot", "role": "style", "valType": "color" }, "ticklen": { "description": "Sets the length of the tick lines on this radial axis.", + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tickorientation": { "description": "Sets the orientation (from the paper perspective) of the radial axis tick labels.", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -1815,11 +2084,13 @@ }, "ticksuffix": { "description": "Sets the length of the tick lines on this radial axis.", + "editType": "plot", "role": "style", "valType": "string" }, "visible": { "description": "Determines whether or not this axis will be visible.", + "editType": "plot", "role": "info", "valType": "boolean" } @@ -1831,6 +2102,7 @@ "_deprecated": { "cameraposition": { "description": "Obsolete. Use `camera` instead.", + "editType": "camera", "role": "info", "valType": "info_array" } @@ -1842,6 +2114,7 @@ "align": { "description": "Sets the horizontal alignment of the `text` within the box. Has an effect only if `text` spans more two or more lines (i.e. `text` contains one or more
HTML tags) or if an explicit width is set to override the text width.", "dflt": "center", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -1852,55 +2125,64 @@ }, "arrowcolor": { "description": "Sets the color of the annotation arrow.", + "editType": "calc", "role": "style", "valType": "color" }, "arrowhead": { "description": "Sets the annotation arrow head style.", "dflt": 1, + "editType": "calc", "max": 8, "min": 0, "role": "style", "valType": "integer" }, "arrowsize": { - "description": "Sets the size (in px) of annotation arrow head.", + "description": "Sets the size of the annotation arrow head, relative to `arrowwidth`. A value of 1 (default) gives a head about 3x as wide as the line.", "dflt": 1, + "editType": "calc", "min": 0.3, "role": "style", "valType": "number" }, "arrowwidth": { - "description": "Sets the width (in px) of annotation arrow.", + "description": "Sets the width (in px) of annotation arrow line.", + "editType": "calc", "min": 0.1, "role": "style", "valType": "number" }, "ax": { "description": "Sets the x component of the arrow tail about the arrow head (in pixels).", + "editType": "calc", "role": "info", "valType": "number" }, "ay": { "description": "Sets the y component of the arrow tail about the arrow head (in pixels).", + "editType": "calc", "role": "info", "valType": "number" }, "bgcolor": { "description": "Sets the background color of the annotation.", "dflt": "rgba(0,0,0,0)", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the color of the border enclosing the annotation `text`.", "dflt": "rgba(0,0,0,0)", + "editType": "calc", "role": "style", "valType": "color" }, "borderpad": { "description": "Sets the padding (in px) between the `text` and the enclosing border.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -1908,23 +2190,29 @@ "borderwidth": { "description": "Sets the width (in px) of the border enclosing the annotation `text`.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "captureevents": { "description": "Determines whether the annotation text box captures mouse move and click events, or allows those events to pass through to data points in the plot that may be behind the annotation. By default `captureevents` is *false* unless `hovertext` is provided. If you use the event `plotly_clickannotation` without `hovertext` you must explicitly enable `captureevents`.", + "editType": "calc", "role": "info", "valType": "boolean" }, + "editType": "calc", "font": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets the annotation text font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -1932,6 +2220,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -1940,6 +2229,7 @@ "height": { "description": "Sets an explicit height for the text box. null (default) lets the text set the box height. Taller text will be clipped.", "dflt": null, + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -1947,22 +2237,28 @@ "hoverlabel": { "bgcolor": { "description": "Sets the background color of the hover label. By default uses the annotation's `bgcolor` made opaque, or white if it was transparent.", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the border color of the hover label. By default uses either dark grey or white, for maximum contrast with `hoverlabel.bgcolor`.", + "editType": "calc", "role": "style", "valType": "color" }, + "editType": "calc", "font": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets the hover label text font. By default uses the global hover font and size, with color from `hoverlabel.bordercolor`.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -1970,6 +2266,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -1979,12 +2276,14 @@ }, "hovertext": { "description": "Sets text to appear when hovering over this annotation. If omitted or blank, no hover label will appear.", + "editType": "calc", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the annotation (text + arrow).", "dflt": 1, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -1994,30 +2293,35 @@ "showarrow": { "description": "Determines whether or not the annotation is drawn with an arrow. If *true*, `text` is placed near the arrow's tail. If *false*, `text` lines up with the `x` and `y` provided.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "standoff": { "description": "Sets a distance, in pixels, to move the arrowhead away from the position it is pointing at, for example to point at the edge of a marker independent of zoom. Note that this shortens the arrow from the `ax` / `ay` vector, in contrast to `xshift` / `yshift` which moves everything by this amount.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "text": { "description": "Sets the text associated with this annotation. Plotly uses a subset of HTML tags to do things like newline (
), bold (), italics (), hyperlinks (). Tags , , are also supported.", + "editType": "calc", "role": "info", "valType": "string" }, "textangle": { "description": "Sets the angle at which the `text` is drawn with respect to the horizontal.", "dflt": 0, + "editType": "calc", "role": "style", "valType": "angle" }, "valign": { "description": "Sets the vertical alignment of the `text` within the box. Has an effect only if an explicit height is set to override the text height.", "dflt": "middle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -2029,24 +2333,28 @@ "visible": { "description": "Determines whether or not this annotation is visible.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets an explicit width for the text box. null (default) lets the text set the box width. Wider text will be clipped. There is no automatic wrapping; use
to start a new line.", "dflt": null, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "x": { "description": "Sets the annotation's x position.", + "editType": "calc", "role": "info", "valType": "any" }, "xanchor": { "description": "Sets the text box's horizontal position anchor This anchor binds the `x` position to the *left*, *center* or *right* of the annotation. For example, if `x` is set to 1, `xref` to *paper* and `xanchor` to *right* then the right-most portion of the annotation lines up with the right-most edge of the plotting area. If *auto*, the anchor is equivalent to *center* for data-referenced annotations or if there is an arrow, whereas for paper-referenced with no arrow, the anchor picked corresponds to the closest side.", "dflt": "auto", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -2059,17 +2367,20 @@ "xshift": { "description": "Shifts the position of the whole annotation and arrow to the right (positive) or left (negative) by this many pixels.", "dflt": 0, + "editType": "calc", "role": "style", "valType": "number" }, "y": { "description": "Sets the annotation's y position.", + "editType": "calc", "role": "info", "valType": "any" }, "yanchor": { "description": "Sets the text box's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the annotation. For example, if `y` is set to 1, `yref` to *paper* and `yanchor` to *top* then the top-most portion of the annotation lines up with the top-most edge of the plotting area. If *auto*, the anchor is equivalent to *middle* for data-referenced annotations or if there is an arrow, whereas for paper-referenced with no arrow, the anchor picked corresponds to the closest side.", "dflt": "auto", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -2082,11 +2393,13 @@ "yshift": { "description": "Shifts the position of the whole annotation and arrow up (positive) or down (negative) by this many pixels.", "dflt": 0, + "editType": "calc", "role": "style", "valType": "number" }, "z": { "description": "Sets the annotation's z position.", + "editType": "calc", "role": "info", "valType": "any" } @@ -2097,6 +2410,8 @@ "aspectmode": { "description": "If *cube*, this scene's axes are drawn as a cube, regardless of the axes' ranges. If *data*, this scene's axes are drawn in proportion with the axes' ranges. If *manual*, this scene's axes are drawn in proportion with the input of *aspectratio* (the default behavior if *aspectratio* is provided). If *auto*, this scene's axes are drawn using the results of *data* except when one axis is more than four times the size of the two others, where in that case the results of *cube* are used.", "dflt": "auto", + "editType": "plot", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -2108,18 +2423,35 @@ }, "aspectratio": { "description": "Sets this scene's axis aspectratio.", + "editType": "plot", + "impliedEdits": { + "aspectmode": "manual", + "role": "object" + }, "role": "object", "x": { + "editType": "plot", + "impliedEdits": { + "^aspectmode": "manual" + }, "min": 0, "role": "info", "valType": "number" }, "y": { + "editType": "plot", + "impliedEdits": { + "^aspectmode": "manual" + }, "min": 0, "role": "info", "valType": "number" }, "z": { + "editType": "plot", + "impliedEdits": { + "^aspectmode": "manual" + }, "min": 0, "role": "info", "valType": "number" @@ -2127,44 +2459,54 @@ }, "bgcolor": { "dflt": "rgba(0,0,0,0)", + "editType": "plot", "role": "style", "valType": "color" }, "camera": { "center": { "description": "Sets the (x,y,z) components of the 'center' camera vector This vector determines the translation (x,y,z) space about the center of this scene. By default, there is no such translation.", + "editType": "camera", "role": "object", "x": { "dflt": 0, + "editType": "camera", "role": "info", "valType": "number" }, "y": { "dflt": 0, + "editType": "camera", "role": "info", "valType": "number" }, "z": { "dflt": 0, + "editType": "camera", "role": "info", "valType": "number" } }, + "editType": "camera", "eye": { "description": "Sets the (x,y,z) components of the 'eye' camera vector. This vector determines the view point about the origin of this scene.", + "editType": "camera", "role": "object", "x": { "dflt": 1.25, + "editType": "camera", "role": "info", "valType": "number" }, "y": { "dflt": 1.25, + "editType": "camera", "role": "info", "valType": "number" }, "z": { "dflt": 1.25, + "editType": "camera", "role": "info", "valType": "number" } @@ -2172,25 +2514,30 @@ "role": "object", "up": { "description": "Sets the (x,y,z) components of the 'up' camera vector. This vector determines the up direction of this scene with respect to the page. The default is *{x: 0, y: 0, z: 1}* which means that the z axis points up.", + "editType": "camera", "role": "object", "x": { "dflt": 0, + "editType": "camera", "role": "info", "valType": "number" }, "y": { "dflt": 0, + "editType": "camera", "role": "info", "valType": "number" }, "z": { "dflt": 1, + "editType": "camera", "role": "info", "valType": "number" } } }, "domain": { + "editType": "plot", "role": "object", "x": { "description": "Sets the horizontal domain of this scene (in plot fraction).", @@ -2198,13 +2545,16 @@ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -2219,13 +2569,16 @@ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -2238,6 +2591,7 @@ "dragmode": { "description": "Determines the mode of drag interactions for this scene.", "dflt": "turntable", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -2248,9 +2602,11 @@ false ] }, + "editType": "plot", "hovermode": { "description": "Determines the mode of hover interactions for this scene.", "dflt": "closest", + "editType": "modebar", "role": "info", "valType": "enumerated", "values": [ @@ -2263,6 +2619,8 @@ "autorange": { "description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided, then `autorange` is set to *false*.", "dflt": true, + "editType": "plot", + "impliedEdits": {}, "role": "style", "valType": "enumerated", "values": [ @@ -2274,12 +2632,14 @@ "backgroundcolor": { "description": "Sets the background color of this axis' wall.", "dflt": "rgba(204, 204, 204, 0.5)", + "editType": "plot", "role": "style", "valType": "color" }, "calendar": { "description": "Sets the calendar system to use for `range` and `tick0` if this is a date axis. This does not set the calendar for interpreting data on this axis, that's specified in the trace or via the global `layout.calendar`", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -2303,17 +2663,20 @@ }, "categoryarray": { "description": "Sets the order in which categories on this axis appear. Only has an effect if `categoryorder` is set to *array*. Used with `categoryorder`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "categoryarraysrc": { "description": "Sets the source reference on plot.ly for categoryarray .", + "editType": "none", "role": "info", "valType": "string" }, "categoryorder": { "description": "Specifies the ordering logic for the case of categorical variables. By default, plotly uses *trace*, which specifies the order that is present in the data supplied. Set `categoryorder` to *category ascending* or *category descending* if order should be determined by the alphanumerical order of the category names. Set `categoryorder` to *array* to derive the ordering from the attribute `categoryarray`. If a category is not found in the `categoryarray` array, the sorting behavior for that attribute will be identical to the *trace* mode. The unspecified categories will follow the categories in `categoryarray`.", "dflt": "trace", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -2326,17 +2689,24 @@ "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "plot", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2351,12 +2721,14 @@ "gridcolor": { "description": "Sets the color of the grid lines.", "dflt": "rgb(204, 204, 204)", + "editType": "plot", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -2364,18 +2736,21 @@ "hoverformat": { "description": "Sets the hover text formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -2383,6 +2758,7 @@ "mirror": { "description": "Determines if the axis lines or/and ticks are mirrored to the opposite side of the plotting area. If *true*, the axis lines are mirrored. If *ticks*, the axis lines and ticks are mirrored. If *false*, mirroring is disable. If *all*, axis lines are mirrored on all shared-axes subplots. If *allticks*, axis lines and ticks are mirrored on all shared-axes subplots.", "dflt": false, + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2396,17 +2772,30 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "integer" }, "range": { "description": "Sets the range of this axis. If the axis `type` is *log*, then you must take the log of your desired range (e.g. to set the range from 1 to 100, set the range from 0 to 2). If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "autorange": false + }, "items": [ { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" }, { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" } ], @@ -2416,6 +2805,7 @@ "rangemode": { "description": "If *normal*, the range is computed in relation to the extrema of the input data. If *tozero*`, the range extends to 0, regardless of the input data If *nonnegative*, the range is non-negative, regardless of the input data.", "dflt": "normal", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2428,24 +2818,28 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "plot", "role": "style", "valType": "boolean" }, "showaxeslabels": { "description": "Sets whether or not this axis is labeled", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "showbackground": { "description": "Sets whether or not this axis' wall has a background color.", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2457,30 +2851,35 @@ }, "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", + "editType": "plot", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": false, + "editType": "plot", "role": "style", "valType": "boolean" }, "showspikes": { "description": "Sets whether or not spikes starting from data points to this axis' wall are shown on hover.", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2493,6 +2892,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2505,47 +2905,59 @@ "spikecolor": { "description": "Sets the color of the spikes.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "spikesides": { "description": "Sets whether or not spikes extending from the projection data points to this axis' wall boundaries are shown on hover.", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "spikethickness": { "description": "Sets the thickness (in px) of the spikes.", "dflt": 2, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "plot", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -2553,6 +2965,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -2561,18 +2974,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "plot", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -2584,11 +3001,13 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticks": { "description": "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.", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2600,49 +3019,59 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "title": { "description": "Sets the title of this axis.", + "editType": "plot", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -2650,6 +3079,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -2658,6 +3088,7 @@ "type": { "description": "Sets the axis type. By default, plotly attempts to determined the axis type by looking into the data of the traces that referenced the axis in question.", "dflt": "-", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -2670,23 +3101,27 @@ }, "visible": { "description": "A single toggle to hide the axis while preserving interaction like dragging. Default is true when a cheater plot is present on the axis, otherwise false", + "editType": "plot", "role": "info", "valType": "boolean" }, "zeroline": { "description": "Determines whether or not a line is drawn at along the 0 value of this axis. If *true*, the zero line is drawn on top of the grid lines.", + "editType": "plot", "role": "style", "valType": "boolean" }, "zerolinecolor": { "description": "Sets the line color of the zero line.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "zerolinewidth": { "description": "Sets the width (in px) of the zero line.", "dflt": 1, + "editType": "plot", "role": "style", "valType": "number" } @@ -2695,6 +3130,8 @@ "autorange": { "description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided, then `autorange` is set to *false*.", "dflt": true, + "editType": "plot", + "impliedEdits": {}, "role": "style", "valType": "enumerated", "values": [ @@ -2706,12 +3143,14 @@ "backgroundcolor": { "description": "Sets the background color of this axis' wall.", "dflt": "rgba(204, 204, 204, 0.5)", + "editType": "plot", "role": "style", "valType": "color" }, "calendar": { "description": "Sets the calendar system to use for `range` and `tick0` if this is a date axis. This does not set the calendar for interpreting data on this axis, that's specified in the trace or via the global `layout.calendar`", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -2735,17 +3174,20 @@ }, "categoryarray": { "description": "Sets the order in which categories on this axis appear. Only has an effect if `categoryorder` is set to *array*. Used with `categoryorder`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "categoryarraysrc": { "description": "Sets the source reference on plot.ly for categoryarray .", + "editType": "none", "role": "info", "valType": "string" }, "categoryorder": { "description": "Specifies the ordering logic for the case of categorical variables. By default, plotly uses *trace*, which specifies the order that is present in the data supplied. Set `categoryorder` to *category ascending* or *category descending* if order should be determined by the alphanumerical order of the category names. Set `categoryorder` to *array* to derive the ordering from the attribute `categoryarray`. If a category is not found in the `categoryarray` array, the sorting behavior for that attribute will be identical to the *trace* mode. The unspecified categories will follow the categories in `categoryarray`.", "dflt": "trace", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -2758,17 +3200,24 @@ "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "plot", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2783,12 +3232,14 @@ "gridcolor": { "description": "Sets the color of the grid lines.", "dflt": "rgb(204, 204, 204)", + "editType": "plot", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -2796,18 +3247,21 @@ "hoverformat": { "description": "Sets the hover text formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -2815,6 +3269,7 @@ "mirror": { "description": "Determines if the axis lines or/and ticks are mirrored to the opposite side of the plotting area. If *true*, the axis lines are mirrored. If *ticks*, the axis lines and ticks are mirrored. If *false*, mirroring is disable. If *all*, axis lines are mirrored on all shared-axes subplots. If *allticks*, axis lines and ticks are mirrored on all shared-axes subplots.", "dflt": false, + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2828,17 +3283,30 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "integer" }, "range": { "description": "Sets the range of this axis. If the axis `type` is *log*, then you must take the log of your desired range (e.g. to set the range from 1 to 100, set the range from 0 to 2). If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "autorange": false + }, "items": [ { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" }, { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" } ], @@ -2848,6 +3316,7 @@ "rangemode": { "description": "If *normal*, the range is computed in relation to the extrema of the input data. If *tozero*`, the range extends to 0, regardless of the input data If *nonnegative*, the range is non-negative, regardless of the input data.", "dflt": "normal", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2860,24 +3329,28 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "plot", "role": "style", "valType": "boolean" }, "showaxeslabels": { "description": "Sets whether or not this axis is labeled", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "showbackground": { "description": "Sets whether or not this axis' wall has a background color.", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2889,30 +3362,35 @@ }, "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", + "editType": "plot", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": false, + "editType": "plot", "role": "style", "valType": "boolean" }, "showspikes": { "description": "Sets whether or not spikes starting from data points to this axis' wall are shown on hover.", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2925,6 +3403,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -2937,47 +3416,59 @@ "spikecolor": { "description": "Sets the color of the spikes.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "spikesides": { "description": "Sets whether or not spikes extending from the projection data points to this axis' wall boundaries are shown on hover.", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "spikethickness": { "description": "Sets the thickness (in px) of the spikes.", "dflt": 2, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "plot", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -2985,6 +3476,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -2993,18 +3485,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "plot", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -3016,11 +3512,13 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticks": { "description": "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.", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -3032,49 +3530,59 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "title": { "description": "Sets the title of this axis.", + "editType": "plot", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -3082,6 +3590,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -3090,6 +3599,7 @@ "type": { "description": "Sets the axis type. By default, plotly attempts to determined the axis type by looking into the data of the traces that referenced the axis in question.", "dflt": "-", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -3102,23 +3612,27 @@ }, "visible": { "description": "A single toggle to hide the axis while preserving interaction like dragging. Default is true when a cheater plot is present on the axis, otherwise false", + "editType": "plot", "role": "info", "valType": "boolean" }, "zeroline": { "description": "Determines whether or not a line is drawn at along the 0 value of this axis. If *true*, the zero line is drawn on top of the grid lines.", + "editType": "plot", "role": "style", "valType": "boolean" }, "zerolinecolor": { "description": "Sets the line color of the zero line.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "zerolinewidth": { "description": "Sets the width (in px) of the zero line.", "dflt": 1, + "editType": "plot", "role": "style", "valType": "number" } @@ -3127,6 +3641,8 @@ "autorange": { "description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided, then `autorange` is set to *false*.", "dflt": true, + "editType": "plot", + "impliedEdits": {}, "role": "style", "valType": "enumerated", "values": [ @@ -3138,12 +3654,14 @@ "backgroundcolor": { "description": "Sets the background color of this axis' wall.", "dflt": "rgba(204, 204, 204, 0.5)", + "editType": "plot", "role": "style", "valType": "color" }, "calendar": { "description": "Sets the calendar system to use for `range` and `tick0` if this is a date axis. This does not set the calendar for interpreting data on this axis, that's specified in the trace or via the global `layout.calendar`", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -3167,17 +3685,20 @@ }, "categoryarray": { "description": "Sets the order in which categories on this axis appear. Only has an effect if `categoryorder` is set to *array*. Used with `categoryorder`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "categoryarraysrc": { "description": "Sets the source reference on plot.ly for categoryarray .", + "editType": "none", "role": "info", "valType": "string" }, "categoryorder": { "description": "Specifies the ordering logic for the case of categorical variables. By default, plotly uses *trace*, which specifies the order that is present in the data supplied. Set `categoryorder` to *category ascending* or *category descending* if order should be determined by the alphanumerical order of the category names. Set `categoryorder` to *array* to derive the ordering from the attribute `categoryarray`. If a category is not found in the `categoryarray` array, the sorting behavior for that attribute will be identical to the *trace* mode. The unspecified categories will follow the categories in `categoryarray`.", "dflt": "trace", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -3190,17 +3711,24 @@ "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "plot", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -3215,12 +3743,14 @@ "gridcolor": { "description": "Sets the color of the grid lines.", "dflt": "rgb(204, 204, 204)", + "editType": "plot", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -3228,18 +3758,21 @@ "hoverformat": { "description": "Sets the hover text formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -3247,6 +3780,7 @@ "mirror": { "description": "Determines if the axis lines or/and ticks are mirrored to the opposite side of the plotting area. If *true*, the axis lines are mirrored. If *ticks*, the axis lines and ticks are mirrored. If *false*, mirroring is disable. If *all*, axis lines are mirrored on all shared-axes subplots. If *allticks*, axis lines and ticks are mirrored on all shared-axes subplots.", "dflt": false, + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -3260,17 +3794,30 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "integer" }, "range": { "description": "Sets the range of this axis. If the axis `type` is *log*, then you must take the log of your desired range (e.g. to set the range from 1 to 100, set the range from 0 to 2). If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "autorange": false + }, "items": [ { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" }, { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" } ], @@ -3280,6 +3827,7 @@ "rangemode": { "description": "If *normal*, the range is computed in relation to the extrema of the input data. If *tozero*`, the range extends to 0, regardless of the input data If *nonnegative*, the range is non-negative, regardless of the input data.", "dflt": "normal", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -3292,24 +3840,28 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "plot", "role": "style", "valType": "boolean" }, "showaxeslabels": { "description": "Sets whether or not this axis is labeled", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "showbackground": { "description": "Sets whether or not this axis' wall has a background color.", "dflt": false, + "editType": "plot", "role": "info", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -3321,30 +3873,35 @@ }, "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", + "editType": "plot", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": false, + "editType": "plot", "role": "style", "valType": "boolean" }, "showspikes": { "description": "Sets whether or not spikes starting from data points to this axis' wall are shown on hover.", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -3357,6 +3914,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -3369,47 +3927,59 @@ "spikecolor": { "description": "Sets the color of the spikes.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "spikesides": { "description": "Sets whether or not spikes extending from the projection data points to this axis' wall boundaries are shown on hover.", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "spikethickness": { "description": "Sets the thickness (in px) of the spikes.", "dflt": 2, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "plot", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -3417,6 +3987,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -3425,18 +3996,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "plot", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -3448,11 +4023,13 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticks": { "description": "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.", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -3464,49 +4041,59 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "title": { "description": "Sets the title of this axis.", + "editType": "plot", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -3514,6 +4101,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -3522,6 +4110,7 @@ "type": { "description": "Sets the axis type. By default, plotly attempts to determined the axis type by looking into the data of the traces that referenced the axis in question.", "dflt": "-", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -3534,23 +4123,27 @@ }, "visible": { "description": "A single toggle to hide the axis while preserving interaction like dragging. Default is true when a cheater plot is present on the axis, otherwise false", + "editType": "plot", "role": "info", "valType": "boolean" }, "zeroline": { "description": "Determines whether or not a line is drawn at along the 0 value of this axis. If *true*, the zero line is drawn on top of the grid lines.", + "editType": "plot", "role": "style", "valType": "boolean" }, "zerolinecolor": { "description": "Sets the line color of the zero line.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "zerolinewidth": { "description": "Sets the width (in px) of the zero line.", "dflt": 1, + "editType": "plot", "role": "style", "valType": "number" } @@ -3559,21 +4152,25 @@ "separators": { "description": "Sets the decimal and thousand separators. For example, *. * puts a '.' before decimals and a space between thousands.", "dflt": ".,", + "editType": "plot", "role": "style", "valType": "string" }, "shapes": { "items": { "shape": { + "editType": "arraydraw", "fillcolor": { "description": "Sets the color filling the shape's interior.", "dflt": "rgba(0,0,0,0)", + "editType": "arraydraw", "role": "info", "valType": "color" }, "layer": { "description": "Specifies whether shapes are drawn below or above traces.", "dflt": "above", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -3584,12 +4181,14 @@ "line": { "color": { "description": "Sets the line color.", + "editType": "arraydraw", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "arraydraw", "role": "style", "valType": "string", "values": [ @@ -3601,10 +4200,12 @@ "longdashdot" ] }, + "editType": "calcIfAutorange", "role": "object", "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "calcIfAutorange", "min": 0, "role": "style", "valType": "number" @@ -3613,6 +4214,7 @@ "opacity": { "description": "Sets the opacity of the shape.", "dflt": 1, + "editType": "arraydraw", "max": 1, "min": 0, "role": "info", @@ -3620,12 +4222,14 @@ }, "path": { "description": "For `type` *path* - a valid SVG path but with the pixel values replaced by data values. There are a few restrictions / quirks only absolute instructions, not relative. So the allowed segments are: M, L, H, V, Q, C, T, S, and Z arcs (A) are not allowed because radius rx and ry are relative. In the future we could consider supporting relative commands, but we would have to decide on how to handle date and log axes. Note that even as is, Q and C Bezier paths that are smooth on linear axes may not be smooth on log, and vice versa. no chained \"polybezier\" commands - specify the segment type for each one. On category axes, values are numbers scaled to the serial numbers of categories because using the categories themselves there would be no way to describe fractional positions On data axes: because space and T are both normal components of path strings, we can't use either to separate date from time parts. Therefore we'll use underscore for this purpose: 2015-02-21_13:45:56.789", + "editType": "calcIfAutorange", "role": "info", "valType": "string" }, "role": "object", "type": { "description": "Specifies the shape type to be drawn. If *line*, a line is drawn from (`x0`,`y0`) to (`x1`,`y1`) If *circle*, a circle is drawn from ((`x0`+`x1`)/2, (`y0`+`y1`)/2)) with radius (|(`x0`+`x1`)/2 - `x0`|, |(`y0`+`y1`)/2 -`y0`)|) If *rect*, a rectangle is drawn linking (`x0`,`y0`), (`x1`,`y0`), (`x1`,`y1`), (`x0`,`y1`), (`x0`,`y0`) If *path*, draw a custom SVG path using `path`.", + "editType": "calcIfAutorange", "role": "info", "valType": "enumerated", "values": [ @@ -3638,21 +4242,25 @@ "visible": { "description": "Determines whether or not this shape is visible.", "dflt": true, + "editType": "calcIfAutorange", "role": "info", "valType": "boolean" }, "x0": { "description": "Sets the shape's starting x position. See `type` for more info.", + "editType": "calcIfAutorange", "role": "info", "valType": "any" }, "x1": { "description": "Sets the shape's end x position. See `type` for more info.", + "editType": "calcIfAutorange", "role": "info", "valType": "any" }, "xref": { "description": "Sets the shape's x coordinate axis. If set to an x axis id (e.g. *x* or *x2*), the `x` position refers to an x coordinate If set to *paper*, the `x` position refers to the distance from the left side of the plotting area in normalized coordinates where *0* (*1*) corresponds to the left (right) side. If the axis `type` is *log*, then you must take the log of your desired range. If the axis `type` is *date*, then you must convert the date to unix time in milliseconds.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -3662,16 +4270,19 @@ }, "y0": { "description": "Sets the shape's starting y position. See `type` for more info.", + "editType": "calcIfAutorange", "role": "info", "valType": "any" }, "y1": { "description": "Sets the shape's end y position. See `type` for more info.", + "editType": "calcIfAutorange", "role": "info", "valType": "any" }, "yref": { "description": "Sets the annotation's y coordinate axis. If set to an y axis id (e.g. *y* or *y2*), the `y` position refers to an y coordinate If set to *paper*, the `y` position refers to the distance from the bottom of the plotting area in normalized coordinates where *0* (*1*) corresponds to the bottom (top).", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -3685,6 +4296,7 @@ }, "showlegend": { "description": "Determines whether or not a legend is drawn.", + "editType": "legend", "role": "info", "valType": "boolean" }, @@ -3694,6 +4306,7 @@ "active": { "description": "Determines which button (by index starting from 0) is considered active.", "dflt": 0, + "editType": "arraydraw", "min": 0, "role": "info", "valType": "number" @@ -3701,37 +4314,45 @@ "activebgcolor": { "description": "Sets the background color of the slider grip while dragging.", "dflt": "#dbdde0", + "editType": "arraydraw", "role": "style", "valType": "color" }, "bgcolor": { "description": "Sets the background color of the slider.", "dflt": "#f8fafc", + "editType": "arraydraw", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the color of the border enclosing the slider.", "dflt": "#bec8d9", + "editType": "arraydraw", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) of the border enclosing the slider.", "dflt": 1, + "editType": "arraydraw", "min": 0, "role": "style", "valType": "number" }, "currentvalue": { + "editType": "arraydraw", "font": { "color": { + "editType": "arraydraw", "role": "style", "valType": "color" }, "description": "Sets the font of the current value label text.", + "editType": "arraydraw", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "arraydraw", "noBlank": true, "role": "style", "strict": true, @@ -3739,6 +4360,7 @@ }, "role": "object", "size": { + "editType": "arraydraw", "min": 1, "role": "style", "valType": "number" @@ -3747,29 +4369,34 @@ "offset": { "description": "The amount of space, in pixels, between the current value label and the slider.", "dflt": 10, + "editType": "arraydraw", "role": "info", "valType": "number" }, "prefix": { "description": "When currentvalue.visible is true, this sets the prefix of the label.", + "editType": "arraydraw", "role": "info", "valType": "string" }, "role": "object", "suffix": { "description": "When currentvalue.visible is true, this sets the suffix of the label.", + "editType": "arraydraw", "role": "info", "valType": "string" }, "visible": { "description": "Shows the currently-selected value above the slider.", "dflt": true, + "editType": "arraydraw", "role": "info", "valType": "boolean" }, "xanchor": { "description": "The alignment of the value readout relative to the length of the slider.", "dflt": "left", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -3779,14 +4406,18 @@ ] } }, + "editType": "arraydraw", "font": { "color": { + "editType": "arraydraw", "role": "style", "valType": "color" }, "description": "Sets the font of the slider step labels.", + "editType": "arraydraw", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "arraydraw", "noBlank": true, "role": "style", "strict": true, @@ -3794,6 +4425,7 @@ }, "role": "object", "size": { + "editType": "arraydraw", "min": 1, "role": "style", "valType": "number" @@ -3802,6 +4434,7 @@ "len": { "description": "Sets the length of the slider This measure excludes the padding of both ends. That is, the slider's length is this length minus the padding on both ends.", "dflt": 1, + "editType": "arraydraw", "min": 0, "role": "style", "valType": "number" @@ -3809,6 +4442,7 @@ "lenmode": { "description": "Determines whether this slider length is set in units of plot *fraction* or in *pixels. Use `len` to set the value.", "dflt": "fraction", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -3819,6 +4453,7 @@ "minorticklen": { "description": "Sets the length in pixels of minor step tick marks", "dflt": 4, + "editType": "arraydraw", "min": 0, "role": "style", "valType": "number" @@ -3827,19 +4462,23 @@ "b": { "description": "The amount of padding (in px) along the bottom of the component.", "dflt": 0, + "editType": "arraydraw", "role": "style", "valType": "number" }, "description": "Set the padding of the slider component along each side.", + "editType": "arraydraw", "l": { "description": "The amount of padding (in px) on the left side of the component.", "dflt": 0, + "editType": "arraydraw", "role": "style", "valType": "number" }, "r": { "description": "The amount of padding (in px) on the right side of the component.", "dflt": 0, + "editType": "arraydraw", "role": "style", "valType": "number" }, @@ -3847,6 +4486,7 @@ "t": { "description": "The amount of padding (in px) along the top of the component.", "dflt": 20, + "editType": "arraydraw", "role": "style", "valType": "number" } @@ -3857,35 +4497,43 @@ "step": { "args": { "description": "Sets the arguments values to be passed to the Plotly method set in `method` on slide.", + "editType": "arraydraw", "freeLength": true, "items": [ { + "editType": "arraydraw", "valType": "any" }, { + "editType": "arraydraw", "valType": "any" }, { + "editType": "arraydraw", "valType": "any" } ], "role": "info", "valType": "info_array" }, + "editType": "arraydraw", "execute": { "description": "When true, the API method is executed. When false, all other behaviors are the same and command execution is skipped. This may be useful when hooking into, for example, the `plotly_sliderchange` method and executing the API command manually without losing the benefit of the slider automatically binding to the state of the plot through the specification of `method` and `args`.", "dflt": true, + "editType": "arraydraw", "role": "info", "valType": "boolean" }, "label": { "description": "Sets the text label to appear on the slider", + "editType": "arraydraw", "role": "info", "valType": "string" }, "method": { "description": "Sets the Plotly method to be called when the slider value is changed. If the `skip` method is used, the API slider will function as normal but will perform no API calls and will not bind automatically to state updates. This may be used to create a component interface and attach to slider events manually via JavaScript.", "dflt": "restyle", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -3899,6 +4547,7 @@ "role": "object", "value": { "description": "Sets the value of the slider step, used to refer to the step programatically. Defaults to the slider label if not provided.", + "editType": "arraydraw", "role": "info", "valType": "string" } @@ -3909,12 +4558,14 @@ "tickcolor": { "description": "Sets the color of the border enclosing the slider.", "dflt": "#333", + "editType": "arraydraw", "role": "style", "valType": "color" }, "ticklen": { "description": "Sets the length in pixels of step tick marks", "dflt": 7, + "editType": "arraydraw", "min": 0, "role": "style", "valType": "number" @@ -3922,6 +4573,7 @@ "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "arraydraw", "min": 0, "role": "style", "valType": "number" @@ -3930,6 +4582,7 @@ "duration": { "description": "Sets the duration of the slider transition", "dflt": 150, + "editType": "arraydraw", "min": 0, "role": "info", "valType": "number" @@ -3937,6 +4590,7 @@ "easing": { "description": "Sets the easing function of the slider transition", "dflt": "cubic-in-out", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -3978,17 +4632,20 @@ "bounce-in-out" ] }, + "editType": "arraydraw", "role": "object" }, "visible": { "description": "Determines whether or not the slider is visible.", "dflt": true, + "editType": "arraydraw", "role": "info", "valType": "boolean" }, "x": { "description": "Sets the x position (in normalized coordinates) of the slider.", "dflt": 0, + "editType": "arraydraw", "max": 3, "min": -2, "role": "style", @@ -3997,6 +4654,7 @@ "xanchor": { "description": "Sets the slider's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the range selector.", "dflt": "left", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -4009,6 +4667,7 @@ "y": { "description": "Sets the y position (in normalized coordinates) of the slider.", "dflt": 0, + "editType": "arraydraw", "max": 3, "min": -2, "role": "style", @@ -4017,6 +4676,7 @@ "yanchor": { "description": "Sets the slider's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the range selector.", "dflt": "top", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -4032,6 +4692,7 @@ }, "smith": { "dflt": false, + "editType": "none", "role": "info", "valType": "enumerated", "values": [ @@ -4044,17 +4705,24 @@ "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "plot", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4069,12 +4737,14 @@ "gridcolor": { "description": "Sets the color of the grid lines.", "dflt": "#eee", + "editType": "plot", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -4082,12 +4752,14 @@ "hoverformat": { "description": "Sets the hover text formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "layer": { "description": "Sets the layer on which this axis is displayed. If *above traces*, this axis is displayed above all the subplot's traces If *below traces*, this axis is displayed below all the subplot's traces, but above the grid lines. Useful when used together with scatter-like traces with `cliponaxis` set to *false* to show markers and/or text nodes above this axis.", "dflt": "above traces", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -4098,12 +4770,14 @@ "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -4111,6 +4785,7 @@ "min": { "description": "The minimum value visible on this axis. The maximum is determined by the sum minus the minimum values of the other two axes. The full view corresponds to all the minima set to zero.", "dflt": 0, + "editType": "plot", "min": 0, "role": "info", "valType": "number" @@ -4118,6 +4793,7 @@ "nticks": { "description": "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*.", "dflt": 6, + "editType": "plot", "min": 1, "role": "style", "valType": "integer" @@ -4126,12 +4802,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "plot", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4144,24 +4822,28 @@ "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4174,6 +4856,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4185,29 +4868,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "plot", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -4215,6 +4907,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -4223,18 +4916,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "plot", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -4246,11 +4943,13 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticks": { "description": "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.", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4262,49 +4961,59 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "title": { "description": "Sets the title of this axis.", + "editType": "plot", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -4312,6 +5021,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -4322,17 +5032,24 @@ "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "plot", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4347,12 +5064,14 @@ "gridcolor": { "description": "Sets the color of the grid lines.", "dflt": "#eee", + "editType": "plot", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -4360,12 +5079,14 @@ "hoverformat": { "description": "Sets the hover text formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "layer": { "description": "Sets the layer on which this axis is displayed. If *above traces*, this axis is displayed above all the subplot's traces If *below traces*, this axis is displayed below all the subplot's traces, but above the grid lines. Useful when used together with scatter-like traces with `cliponaxis` set to *false* to show markers and/or text nodes above this axis.", "dflt": "above traces", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -4376,12 +5097,14 @@ "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -4389,6 +5112,7 @@ "min": { "description": "The minimum value visible on this axis. The maximum is determined by the sum minus the minimum values of the other two axes. The full view corresponds to all the minima set to zero.", "dflt": 0, + "editType": "plot", "min": 0, "role": "info", "valType": "number" @@ -4396,6 +5120,7 @@ "nticks": { "description": "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*.", "dflt": 6, + "editType": "plot", "min": 1, "role": "style", "valType": "integer" @@ -4404,12 +5129,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "plot", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4422,24 +5149,28 @@ "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4452,6 +5183,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4463,29 +5195,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "plot", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -4493,6 +5234,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -4501,18 +5243,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "plot", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -4524,11 +5270,13 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticks": { "description": "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.", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4540,49 +5288,59 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "title": { "description": "Sets the title of this axis.", + "editType": "plot", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -4590,6 +5348,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -4599,6 +5358,7 @@ "bgcolor": { "description": "Set the background color of the subplot", "dflt": "#fff", + "editType": "plot", "role": "style", "valType": "color" }, @@ -4606,17 +5366,24 @@ "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "plot", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4631,12 +5398,14 @@ "gridcolor": { "description": "Sets the color of the grid lines.", "dflt": "#eee", + "editType": "plot", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -4644,12 +5413,14 @@ "hoverformat": { "description": "Sets the hover text formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "layer": { "description": "Sets the layer on which this axis is displayed. If *above traces*, this axis is displayed above all the subplot's traces If *below traces*, this axis is displayed below all the subplot's traces, but above the grid lines. Useful when used together with scatter-like traces with `cliponaxis` set to *false* to show markers and/or text nodes above this axis.", "dflt": "above traces", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -4660,12 +5431,14 @@ "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -4673,6 +5446,7 @@ "min": { "description": "The minimum value visible on this axis. The maximum is determined by the sum minus the minimum values of the other two axes. The full view corresponds to all the minima set to zero.", "dflt": 0, + "editType": "plot", "min": 0, "role": "info", "valType": "number" @@ -4680,6 +5454,7 @@ "nticks": { "description": "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*.", "dflt": 6, + "editType": "plot", "min": 1, "role": "style", "valType": "integer" @@ -4688,12 +5463,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "plot", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4706,24 +5483,28 @@ "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "plot", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4736,6 +5517,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4747,29 +5529,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "plot", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -4777,6 +5568,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -4785,18 +5577,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "plot", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -4808,11 +5604,13 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticks": { "description": "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.", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -4824,49 +5622,59 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "plot", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "plot", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "title": { "description": "Sets the title of this axis.", + "editType": "plot", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -4874,6 +5682,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -4881,6 +5690,7 @@ } }, "domain": { + "editType": "plot", "role": "object", "x": { "description": "Sets the horizontal domain of this subplot (in plot fraction).", @@ -4888,13 +5698,16 @@ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -4909,13 +5722,16 @@ 0, 1 ], + "editType": "plot", "items": [ { + "editType": "plot", "max": 1, "min": 0, "valType": "number" }, { + "editType": "plot", "max": 1, "min": 0, "valType": "number" @@ -4925,10 +5741,12 @@ "valType": "info_array" } }, + "editType": "plot", "role": "object", "sum": { "description": "The number each triplet should sum to, and the maximum range of each axis", "dflt": 1, + "editType": "plot", "min": 0, "role": "info", "valType": "number" @@ -4937,17 +5755,21 @@ "title": { "description": "Sets the plot's title.", "dflt": "Click to enter Plot title", + "editType": "layoutstyle", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "layoutstyle", "role": "style", "valType": "color" }, "description": "Sets the title font.", + "editType": "layoutstyle", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "layoutstyle", "noBlank": true, "role": "style", "strict": true, @@ -4955,6 +5777,7 @@ }, "role": "object", "size": { + "editType": "layoutstyle", "min": 1, "role": "style", "valType": "number" @@ -4969,24 +5792,28 @@ "active": { "description": "Determines which button (by index starting from 0) is considered active.", "dflt": 0, + "editType": "arraydraw", "min": -1, "role": "info", "valType": "integer" }, "bgcolor": { "description": "Sets the background color of the update menu buttons.", + "editType": "arraydraw", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the color of the border enclosing the update menu.", "dflt": "#BEC8D9", + "editType": "arraydraw", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) of the border enclosing the update menu.", "dflt": 1, + "editType": "arraydraw", "min": 0, "role": "style", "valType": "number" @@ -4996,36 +5823,44 @@ "button": { "args": { "description": "Sets the arguments values to be passed to the Plotly method set in `method` on click.", + "editType": "arraydraw", "freeLength": true, "items": [ { + "editType": "arraydraw", "valType": "any" }, { + "editType": "arraydraw", "valType": "any" }, { + "editType": "arraydraw", "valType": "any" } ], "role": "info", "valType": "info_array" }, + "editType": "arraydraw", "execute": { "description": "When true, the API method is executed. When false, all other behaviors are the same and command execution is skipped. This may be useful when hooking into, for example, the `plotly_buttonclicked` method and executing the API command manually without losing the benefit of the updatemenu automatically binding to the state of the plot through the specification of `method` and `args`.", "dflt": true, + "editType": "arraydraw", "role": "info", "valType": "boolean" }, "label": { "description": "Sets the text label to appear on the button.", "dflt": "", + "editType": "arraydraw", "role": "info", "valType": "string" }, "method": { "description": "Sets the Plotly method to be called on click. If the `skip` method is used, the API updatemenu will function as normal but will perform no API calls and will not bind automatically to state updates. This may be used to create a component interface and attach to updatemenu events manually via JavaScript.", "dflt": "restyle", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -5044,6 +5879,7 @@ "direction": { "description": "Determines the direction in which the buttons are laid out, whether in a dropdown menu or a row/column of buttons. For `left` and `up`, the buttons will still appear in left-to-right or top-to-bottom order respectively.", "dflt": "down", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -5053,14 +5889,18 @@ "down" ] }, + "editType": "arraydraw", "font": { "color": { + "editType": "arraydraw", "role": "style", "valType": "color" }, "description": "Sets the font of the update menu button text.", + "editType": "arraydraw", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "arraydraw", "noBlank": true, "role": "style", "strict": true, @@ -5068,6 +5908,7 @@ }, "role": "object", "size": { + "editType": "arraydraw", "min": 1, "role": "style", "valType": "number" @@ -5077,19 +5918,23 @@ "b": { "description": "The amount of padding (in px) along the bottom of the component.", "dflt": 0, + "editType": "arraydraw", "role": "style", "valType": "number" }, "description": "Sets the padding around the buttons or dropdown menu.", + "editType": "arraydraw", "l": { "description": "The amount of padding (in px) on the left side of the component.", "dflt": 0, + "editType": "arraydraw", "role": "style", "valType": "number" }, "r": { "description": "The amount of padding (in px) on the right side of the component.", "dflt": 0, + "editType": "arraydraw", "role": "style", "valType": "number" }, @@ -5097,6 +5942,7 @@ "t": { "description": "The amount of padding (in px) along the top of the component.", "dflt": 0, + "editType": "arraydraw", "role": "style", "valType": "number" } @@ -5105,12 +5951,14 @@ "showactive": { "description": "Highlights active dropdown item or active button if true.", "dflt": true, + "editType": "arraydraw", "role": "info", "valType": "boolean" }, "type": { "description": "Determines whether the buttons are accessible via a dropdown menu or whether the buttons are stacked horizontally or vertically", "dflt": "dropdown", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -5120,12 +5968,14 @@ }, "visible": { "description": "Determines whether or not the update menu is visible.", + "editType": "arraydraw", "role": "info", "valType": "boolean" }, "x": { "description": "Sets the x position (in normalized coordinates) of the update menu.", "dflt": -0.05, + "editType": "arraydraw", "max": 3, "min": -2, "role": "style", @@ -5134,6 +5984,7 @@ "xanchor": { "description": "Sets the update menu's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the range selector.", "dflt": "right", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -5146,6 +5997,7 @@ "y": { "description": "Sets the y position (in normalized coordinates) of the update menu.", "dflt": 1, + "editType": "arraydraw", "max": 3, "min": -2, "role": "style", @@ -5154,6 +6006,7 @@ "yanchor": { "description": "Sets the update menu's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the range selector.", "dflt": "top", + "editType": "arraydraw", "role": "info", "valType": "enumerated", "values": [ @@ -5170,6 +6023,7 @@ "width": { "description": "Sets the plot's width (in px).", "dflt": 700, + "editType": "none", "min": 10, "role": "info", "valType": "number" @@ -5178,6 +6032,7 @@ "_deprecated": { "autotick": { "description": "Obsolete. Set `tickmode` to *auto* for old `autotick` *true* behavior. Set `tickmode` to *linear* for `autotick` *false*.", + "editType": "ticks", "role": "info", "valType": "boolean" } @@ -5185,6 +6040,7 @@ "_isSubplotObj": true, "anchor": { "description": "If set to an opposite-letter axis id (e.g. `x2`, `y`), this axis is bound to the corresponding opposite-letter axis. If set to *free*, this axis' position is determined by `position`.", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -5196,6 +6052,8 @@ "autorange": { "description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided, then `autorange` is set to *false*.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "enumerated", "values": [ @@ -5207,6 +6065,7 @@ "calendar": { "description": "Sets the calendar system to use for `range` and `tick0` if this is a date axis. This does not set the calendar for interpreting data on this axis, that's specified in the trace or via the global `layout.calendar`", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -5230,17 +6089,20 @@ }, "categoryarray": { "description": "Sets the order in which categories on this axis appear. Only has an effect if `categoryorder` is set to *array*. Used with `categoryorder`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "categoryarraysrc": { "description": "Sets the source reference on plot.ly for categoryarray .", + "editType": "none", "role": "info", "valType": "string" }, "categoryorder": { "description": "Specifies the ordering logic for the case of categorical variables. By default, plotly uses *trace*, which specifies the order that is present in the data supplied. Set `categoryorder` to *category ascending* or *category descending* if order should be determined by the alphanumerical order of the category names. Set `categoryorder` to *array* to derive the ordering from the attribute `categoryarray`. If a category is not found in the `categoryarray` array, the sorting behavior for that attribute will be identical to the *trace* mode. The unspecified categories will follow the categories in `categoryarray`.", "dflt": "trace", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -5253,12 +6115,14 @@ "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", "dflt": "#444", + "editType": "ticks", "role": "style", "valType": "color" }, "constrain": { "description": "If this axis needs to be compressed (either due to its own `scaleanchor` and `scaleratio` or those of the other axis), determines how that happens: by increasing the *range* (default), or by decreasing the *domain*.", "dflt": "range", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -5268,6 +6132,7 @@ }, "constraintoward": { "description": "If this axis needs to be compressed (either due to its own `scaleanchor` and `scaleratio` or those of the other axis), determines which direction we push the originally specified plot area. Options are *left*, *center* (default), and *right* for x axes, and *top*, *middle* (default), and *bottom* for y axes.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -5285,13 +6150,16 @@ 0, 1 ], + "editType": "calc", "items": [ { + "editType": "calc", "max": 1, "min": 0, "valType": "number" }, { + "editType": "calc", "max": 1, "min": 0, "valType": "number" @@ -5302,12 +6170,18 @@ }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "ticks", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "calc", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -5322,18 +6196,21 @@ "fixedrange": { "description": "Determines whether or not this axis is zoom-able. If true, then zoom is disabled.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "gridcolor": { "description": "Sets the color of the grid lines.", "dflt": "#eee", + "editType": "ticks", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "ticks", "min": 0, "role": "style", "valType": "number" @@ -5341,12 +6218,14 @@ "hoverformat": { "description": "Sets the hover text formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "none", "role": "style", "valType": "string" }, "layer": { "description": "Sets the layer on which this axis is displayed. If *above traces*, this axis is displayed above all the subplot's traces If *below traces*, this axis is displayed below all the subplot's traces, but above the grid lines. Useful when used together with scatter-like traces with `cliponaxis` set to *false* to show markers and/or text nodes above this axis.", "dflt": "above traces", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -5357,12 +6236,14 @@ "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "layoutstyle", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "ticks+layoutstyle", "min": 0, "role": "style", "valType": "number" @@ -5370,6 +6251,7 @@ "mirror": { "description": "Determines if the axis lines or/and ticks are mirrored to the opposite side of the plotting area. If *true*, the axis lines are mirrored. If *ticks*, the axis lines and ticks are mirrored. If *false*, mirroring is disable. If *all*, axis lines are mirrored on all shared-axes subplots. If *allticks*, axis lines and ticks are mirrored on all shared-axes subplots.", "dflt": false, + "editType": "ticks+layoutstyle", "role": "style", "valType": "enumerated", "values": [ @@ -5383,12 +6265,14 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "ticks", "min": 0, "role": "style", "valType": "integer" }, "overlaying": { "description": "If set a same-letter axis id, this axis is overlaid on top of the corresponding same-letter axis. If *false*, this axis does not overlay any same-letter axes.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -5400,6 +6284,7 @@ "position": { "description": "Sets the position of this axis in the plotting space (in normalized coordinates). Only has an effect if `anchor` is set to *free*.", "dflt": 0, + "editType": "plot", "max": 1, "min": 0, "role": "style", @@ -5407,11 +6292,23 @@ }, "range": { "description": "Sets the range of this axis. If the axis `type` is *log*, then you must take the log of your desired range (e.g. to set the range from 1 to 100, set the range from 0 to 2). If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "autorange": false + }, "items": [ { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" }, { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" } ], @@ -5421,6 +6318,7 @@ "rangemode": { "description": "If *normal*, the range is computed in relation to the extrema of the input data. If *tozero*`, the range extends to 0, regardless of the input data If *nonnegative*, the range is non-negative, regardless of the input data.", "dflt": "normal", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -5432,24 +6330,28 @@ "rangeselector": { "activecolor": { "description": "Sets the background color of the active range selector button.", + "editType": "plot", "role": "style", "valType": "color" }, "bgcolor": { "description": "Sets the background color of the range selector buttons.", "dflt": "#eee", + "editType": "plot", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the color of the border enclosing the range selector.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) of the border enclosing the range selector.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -5460,13 +6362,16 @@ "count": { "description": "Sets the number of steps to take to update the range. Use with `step` to specify the update interval.", "dflt": 1, + "editType": "plot", "min": 0, "role": "info", "valType": "number" }, "description": "Sets the specifications for each buttons. By default, a range selector comes with no buttons.", + "editType": "plot", "label": { "description": "Sets the text label to appear on the button.", + "editType": "plot", "role": "info", "valType": "string" }, @@ -5474,6 +6379,7 @@ "step": { "description": "The unit of measurement that the `count` value will set the range by.", "dflt": "month", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -5489,6 +6395,7 @@ "stepmode": { "description": "Sets the range update mode. If *backward*, the range update shifts the start of range back *count* times *step* milliseconds. If *todate*, the range update shifts the start of range back to the first timestamp from *count* times *step* milliseconds back. For example, with `step` set to *year* and `count` set to *1* the range update shifts the start of the range back to January 01 of the current year. Month and year *todate* are currently available only for the built-in (Gregorian) calendar.", "dflt": "backward", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -5500,14 +6407,18 @@ }, "role": "object" }, + "editType": "plot", "font": { "color": { + "editType": "plot", "role": "style", "valType": "color" }, "description": "Sets the font of the range selector button text.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -5515,6 +6426,7 @@ }, "role": "object", "size": { + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -5523,11 +6435,13 @@ "role": "object", "visible": { "description": "Determines whether or not this range selector is visible. Note that range selectors are only available for x axes of `type` set to or auto-typed to *date*.", + "editType": "plot", "role": "info", "valType": "boolean" }, "x": { "description": "Sets the x position (in normalized coordinates) of the range selector.", + "editType": "plot", "max": 3, "min": -2, "role": "style", @@ -5536,6 +6450,7 @@ "xanchor": { "description": "Sets the range selector's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the range selector.", "dflt": "left", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -5547,6 +6462,7 @@ }, "y": { "description": "Sets the y position (in normalized coordinates) of the range selector.", + "editType": "plot", "max": 3, "min": -2, "role": "style", @@ -5555,6 +6471,7 @@ "yanchor": { "description": "Sets the range selector's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the range selector.", "dflt": "bottom", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -5569,35 +6486,43 @@ "autorange": { "description": "Determines whether or not the range slider range is computed in relation to the input data. If `range` is provided, then `autorange` is set to *false*.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "bgcolor": { "description": "Sets the background color of the range slider.", "dflt": "#fff", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the border color of the range slider.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the border color of the range slider.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" }, + "editType": "calc", "range": { "description": "Sets the range of the range slider. If not set, defaults to the full xaxis range. If the axis `type` is *log*, then you must take the log of your desired range. If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calc", "items": [ { + "editType": "calc", "valType": "any" }, { + "editType": "calc", "valType": "any" } ], @@ -5608,6 +6533,7 @@ "thickness": { "description": "The height of the range slider as a fraction of the total plot area height.", "dflt": 0.15, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -5616,6 +6542,7 @@ "visible": { "description": "Determines whether or not the range slider will be visible. If visible, perpendicular axes will be set to `fixedrange`", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" } @@ -5623,6 +6550,7 @@ "role": "object", "scaleanchor": { "description": "If set to another axis id (e.g. `x2`, `y`), the range of this axis changes together with the range of the corresponding axis such that the scale of pixels per unit is in a constant ratio. Both axes are still zoomable, but when you zoom one, the other will zoom the same amount, keeping a fixed midpoint. `constrain` and `constraintoward` determine how we enforce the constraint. You can chain these, ie `yaxis: {scaleanchor: *x*}, xaxis2: {scaleanchor: *y*}` but you can only link axes of the same `type`. The linked axis can have the opposite letter (to constrain the aspect ratio) or the same letter (to match scales across subplots). Loops (`yaxis: {scaleanchor: *x*}, xaxis: {scaleanchor: *y*}` or longer) are redundant and the last constraint encountered will be ignored to avoid possible inconsistent constraints via `scaleratio`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -5633,6 +6561,7 @@ "scaleratio": { "description": "If this axis is linked to another by `scaleanchor`, this determines the pixel to unit scale ratio. For example, if this value is 10, then every unit on this axis spans 10 times the number of pixels as a unit on the linked axis. Use this for example to create an elevation profile where the vertical scale is exaggerated a fixed amount with respect to the horizontal.", "dflt": 1, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -5640,12 +6569,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "ticks", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -5657,30 +6588,35 @@ }, "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", + "editType": "ticks", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": false, + "editType": "layoutstyle", "role": "style", "valType": "boolean" }, "showspikes": { "description": "Determines whether or not spikes (aka droplines) are drawn for this axis. Note: This only takes affect when hovermode = closest", "dflt": false, + "editType": "modebar", "role": "style", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "ticks", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -5693,6 +6629,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -5704,6 +6641,7 @@ }, "side": { "description": "Determines whether a x (y) axis is positioned at the *bottom* (*left*) or *top* (*right*) of the plotting area.", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -5716,12 +6654,14 @@ "spikecolor": { "description": "Sets the spike color. If undefined, will use the series color", "dflt": null, + "editType": "none", "role": "style", "valType": "color" }, "spikedash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "dash", + "editType": "none", "role": "style", "valType": "string", "values": [ @@ -5736,6 +6676,7 @@ "spikemode": { "description": "Determines the drawing mode for the spike line If *toaxis*, the line is drawn from the data point to the axis the series is plotted on. If *across*, the line is drawn across the entire plot area, and supercedes *toaxis*. If *marker*, then a marker dot is drawn on the axis the series is plotted on", "dflt": "toaxis", + "editType": "none", "flags": [ "toaxis", "across", @@ -5747,34 +6688,44 @@ "spikethickness": { "description": "Sets the width (in px) of the zero line.", "dflt": 3, + "editType": "none", "role": "style", "valType": "number" }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "ticks", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "ticks", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "ticks", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "ticks", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "ticks", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "ticks", "noBlank": true, "role": "style", "strict": true, @@ -5782,6 +6733,7 @@ }, "role": "object", "size": { + "editType": "ticks", "min": 1, "role": "style", "valType": "number" @@ -5790,18 +6742,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "ticks", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "ticks", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "ticks", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -5813,11 +6769,13 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "ticks", "role": "style", "valType": "string" }, "ticks": { "description": "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.", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -5829,49 +6787,59 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "ticks", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "ticks", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "ticks", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "ticks", "min": 0, "role": "style", "valType": "number" }, "title": { "description": "Sets the title of this axis.", + "editType": "ticks", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "ticks", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "ticks", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "ticks", "noBlank": true, "role": "style", "strict": true, @@ -5879,6 +6847,7 @@ }, "role": "object", "size": { + "editType": "ticks", "min": 1, "role": "style", "valType": "number" @@ -5887,6 +6856,7 @@ "type": { "description": "Sets the axis type. By default, plotly attempts to determined the axis type by looking into the data of the traces that referenced the axis in question.", "dflt": "-", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -5899,23 +6869,27 @@ }, "visible": { "description": "A single toggle to hide the axis while preserving interaction like dragging. Default is true when a cheater plot is present on the axis, otherwise false", + "editType": "plot", "role": "info", "valType": "boolean" }, "zeroline": { "description": "Determines whether or not a line is drawn at along the 0 value of this axis. If *true*, the zero line is drawn on top of the grid lines.", + "editType": "ticks", "role": "style", "valType": "boolean" }, "zerolinecolor": { "description": "Sets the line color of the zero line.", "dflt": "#444", + "editType": "ticks", "role": "style", "valType": "color" }, "zerolinewidth": { "description": "Sets the width (in px) of the zero line.", "dflt": 1, + "editType": "ticks", "role": "style", "valType": "number" } @@ -5924,6 +6898,7 @@ "_deprecated": { "autotick": { "description": "Obsolete. Set `tickmode` to *auto* for old `autotick` *true* behavior. Set `tickmode` to *linear* for `autotick` *false*.", + "editType": "ticks", "role": "info", "valType": "boolean" } @@ -5931,6 +6906,7 @@ "_isSubplotObj": true, "anchor": { "description": "If set to an opposite-letter axis id (e.g. `x2`, `y`), this axis is bound to the corresponding opposite-letter axis. If set to *free*, this axis' position is determined by `position`.", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -5942,6 +6918,8 @@ "autorange": { "description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided, then `autorange` is set to *false*.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "enumerated", "values": [ @@ -5953,6 +6931,7 @@ "calendar": { "description": "Sets the calendar system to use for `range` and `tick0` if this is a date axis. This does not set the calendar for interpreting data on this axis, that's specified in the trace or via the global `layout.calendar`", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -5976,17 +6955,20 @@ }, "categoryarray": { "description": "Sets the order in which categories on this axis appear. Only has an effect if `categoryorder` is set to *array*. Used with `categoryorder`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "categoryarraysrc": { "description": "Sets the source reference on plot.ly for categoryarray .", + "editType": "none", "role": "info", "valType": "string" }, "categoryorder": { "description": "Specifies the ordering logic for the case of categorical variables. By default, plotly uses *trace*, which specifies the order that is present in the data supplied. Set `categoryorder` to *category ascending* or *category descending* if order should be determined by the alphanumerical order of the category names. Set `categoryorder` to *array* to derive the ordering from the attribute `categoryarray`. If a category is not found in the `categoryarray` array, the sorting behavior for that attribute will be identical to the *trace* mode. The unspecified categories will follow the categories in `categoryarray`.", "dflt": "trace", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -5999,12 +6981,14 @@ "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", "dflt": "#444", + "editType": "ticks", "role": "style", "valType": "color" }, "constrain": { "description": "If this axis needs to be compressed (either due to its own `scaleanchor` and `scaleratio` or those of the other axis), determines how that happens: by increasing the *range* (default), or by decreasing the *domain*.", "dflt": "range", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -6014,6 +6998,7 @@ }, "constraintoward": { "description": "If this axis needs to be compressed (either due to its own `scaleanchor` and `scaleratio` or those of the other axis), determines which direction we push the originally specified plot area. Options are *left*, *center* (default), and *right* for x axes, and *top*, *middle* (default), and *bottom* for y axes.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -6031,13 +7016,16 @@ 0, 1 ], + "editType": "calc", "items": [ { + "editType": "calc", "max": 1, "min": 0, "valType": "number" }, { + "editType": "calc", "max": 1, "min": 0, "valType": "number" @@ -6048,12 +7036,18 @@ }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "ticks", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "calc", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -6068,18 +7062,21 @@ "fixedrange": { "description": "Determines whether or not this axis is zoom-able. If true, then zoom is disabled.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "gridcolor": { "description": "Sets the color of the grid lines.", "dflt": "#eee", + "editType": "ticks", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "ticks", "min": 0, "role": "style", "valType": "number" @@ -6087,12 +7084,14 @@ "hoverformat": { "description": "Sets the hover text formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "none", "role": "style", "valType": "string" }, "layer": { "description": "Sets the layer on which this axis is displayed. If *above traces*, this axis is displayed above all the subplot's traces If *below traces*, this axis is displayed below all the subplot's traces, but above the grid lines. Useful when used together with scatter-like traces with `cliponaxis` set to *false* to show markers and/or text nodes above this axis.", "dflt": "above traces", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -6103,12 +7102,14 @@ "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "layoutstyle", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "ticks+layoutstyle", "min": 0, "role": "style", "valType": "number" @@ -6116,6 +7117,7 @@ "mirror": { "description": "Determines if the axis lines or/and ticks are mirrored to the opposite side of the plotting area. If *true*, the axis lines are mirrored. If *ticks*, the axis lines and ticks are mirrored. If *false*, mirroring is disable. If *all*, axis lines are mirrored on all shared-axes subplots. If *allticks*, axis lines and ticks are mirrored on all shared-axes subplots.", "dflt": false, + "editType": "ticks+layoutstyle", "role": "style", "valType": "enumerated", "values": [ @@ -6129,12 +7131,14 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "ticks", "min": 0, "role": "style", "valType": "integer" }, "overlaying": { "description": "If set a same-letter axis id, this axis is overlaid on top of the corresponding same-letter axis. If *false*, this axis does not overlay any same-letter axes.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -6146,6 +7150,7 @@ "position": { "description": "Sets the position of this axis in the plotting space (in normalized coordinates). Only has an effect if `anchor` is set to *free*.", "dflt": 0, + "editType": "plot", "max": 1, "min": 0, "role": "style", @@ -6153,11 +7158,23 @@ }, "range": { "description": "Sets the range of this axis. If the axis `type` is *log*, then you must take the log of your desired range (e.g. to set the range from 1 to 100, set the range from 0 to 2). If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "plot", + "impliedEdits": { + "autorange": false + }, "items": [ { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" }, { + "editType": "plot", + "impliedEdits": { + "^autorange": false + }, "valType": "any" } ], @@ -6167,6 +7184,7 @@ "rangemode": { "description": "If *normal*, the range is computed in relation to the extrema of the input data. If *tozero*`, the range extends to 0, regardless of the input data If *nonnegative*, the range is non-negative, regardless of the input data.", "dflt": "normal", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -6178,6 +7196,7 @@ "role": "object", "scaleanchor": { "description": "If set to another axis id (e.g. `x2`, `y`), the range of this axis changes together with the range of the corresponding axis such that the scale of pixels per unit is in a constant ratio. Both axes are still zoomable, but when you zoom one, the other will zoom the same amount, keeping a fixed midpoint. `constrain` and `constraintoward` determine how we enforce the constraint. You can chain these, ie `yaxis: {scaleanchor: *x*}, xaxis2: {scaleanchor: *y*}` but you can only link axes of the same `type`. The linked axis can have the opposite letter (to constrain the aspect ratio) or the same letter (to match scales across subplots). Loops (`yaxis: {scaleanchor: *x*}, xaxis: {scaleanchor: *y*}` or longer) are redundant and the last constraint encountered will be ignored to avoid possible inconsistent constraints via `scaleratio`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -6188,6 +7207,7 @@ "scaleratio": { "description": "If this axis is linked to another by `scaleanchor`, this determines the pixel to unit scale ratio. For example, if this value is 10, then every unit on this axis spans 10 times the number of pixels as a unit on the linked axis. Use this for example to create an elevation profile where the vertical scale is exaggerated a fixed amount with respect to the horizontal.", "dflt": 1, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -6195,12 +7215,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "ticks", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -6212,30 +7234,35 @@ }, "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", + "editType": "ticks", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": false, + "editType": "layoutstyle", "role": "style", "valType": "boolean" }, "showspikes": { "description": "Determines whether or not spikes (aka droplines) are drawn for this axis. Note: This only takes affect when hovermode = closest", "dflt": false, + "editType": "modebar", "role": "style", "valType": "boolean" }, "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "ticks", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -6248,6 +7275,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -6259,6 +7287,7 @@ }, "side": { "description": "Determines whether a x (y) axis is positioned at the *bottom* (*left*) or *top* (*right*) of the plotting area.", + "editType": "plot", "role": "info", "valType": "enumerated", "values": [ @@ -6271,12 +7300,14 @@ "spikecolor": { "description": "Sets the spike color. If undefined, will use the series color", "dflt": null, + "editType": "none", "role": "style", "valType": "color" }, "spikedash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "dash", + "editType": "none", "role": "style", "valType": "string", "values": [ @@ -6291,6 +7322,7 @@ "spikemode": { "description": "Determines the drawing mode for the spike line If *toaxis*, the line is drawn from the data point to the axis the series is plotted on. If *across*, the line is drawn across the entire plot area, and supercedes *toaxis*. If *marker*, then a marker dot is drawn on the axis the series is plotted on", "dflt": "toaxis", + "editType": "none", "flags": [ "toaxis", "across", @@ -6302,34 +7334,44 @@ "spikethickness": { "description": "Sets the width (in px) of the zero line.", "dflt": 3, + "editType": "none", "role": "style", "valType": "number" }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "ticks", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "ticks", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "ticks", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "ticks", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "ticks", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "ticks", "noBlank": true, "role": "style", "strict": true, @@ -6337,6 +7379,7 @@ }, "role": "object", "size": { + "editType": "ticks", "min": 1, "role": "style", "valType": "number" @@ -6345,18 +7388,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "ticks", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "ticks", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "ticks", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -6368,11 +7415,13 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "ticks", "role": "style", "valType": "string" }, "ticks": { "description": "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.", + "editType": "ticks", "role": "style", "valType": "enumerated", "values": [ @@ -6384,49 +7433,59 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "ticks", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "ticks", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "ticks", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "ticks", "min": 0, "role": "style", "valType": "number" }, "title": { "description": "Sets the title of this axis.", + "editType": "ticks", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "ticks", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "ticks", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "ticks", "noBlank": true, "role": "style", "strict": true, @@ -6434,6 +7493,7 @@ }, "role": "object", "size": { + "editType": "ticks", "min": 1, "role": "style", "valType": "number" @@ -6442,6 +7502,7 @@ "type": { "description": "Sets the axis type. By default, plotly attempts to determined the axis type by looking into the data of the traces that referenced the axis in question.", "dflt": "-", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -6454,23 +7515,27 @@ }, "visible": { "description": "A single toggle to hide the axis while preserving interaction like dragging. Default is true when a cheater plot is present on the axis, otherwise false", + "editType": "plot", "role": "info", "valType": "boolean" }, "zeroline": { "description": "Determines whether or not a line is drawn at along the 0 value of this axis. If *true*, the zero line is drawn on top of the grid lines.", + "editType": "ticks", "role": "style", "valType": "boolean" }, "zerolinecolor": { "description": "Sets the line color of the zero line.", "dflt": "#444", + "editType": "ticks", "role": "style", "valType": "color" }, "zerolinewidth": { "description": "Sets the width (in px) of the zero line.", "dflt": 1, + "editType": "ticks", "role": "style", "valType": "number" } @@ -6482,11 +7547,13 @@ "attributes": { "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, @@ -6494,6 +7561,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -6511,6 +7579,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -6518,39 +7587,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -6558,18 +7637,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -6577,12 +7659,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -6590,17 +7674,20 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -6608,17 +7695,21 @@ "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "opacity": { "arrayOk": true, "description": "Sets the marker opacity.", + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -6626,6 +7717,7 @@ }, "opacitysrc": { "description": "Sets the source reference on plot.ly for opacity .", + "editType": "none", "role": "info", "valType": "string" }, @@ -6634,12 +7726,14 @@ "arrayOk": true, "description": "Sets the marker size (in px).", "dflt": 6, + "editType": "calcIfAutorange", "min": 0, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" }, @@ -6647,6 +7741,7 @@ "arrayOk": true, "description": "Sets the marker symbol type. Adding 100 is equivalent to appending *-open* to a symbol name. Adding 200 is equivalent to appending *-dot* to a symbol name. Adding 300 is equivalent to appending *-open-dot* or *dot-open* to a symbol name.", "dflt": "circle", + "editType": "style", "role": "style", "valType": "enumerated", "values": [ @@ -6938,18 +8033,21 @@ }, "symbolsrc": { "description": "Sets the source reference on plot.ly for symbol .", + "editType": "none", "role": "info", "valType": "string" } }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -6957,24 +8055,29 @@ }, "r": { "description": "For polar chart only.Sets the radial coordinates.", + "editType": "calc", "role": "data", "valType": "data_array" }, "rsrc": { "description": "Sets the source reference on plot.ly for r .", + "editType": "none", "role": "info", "valType": "string" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -6983,6 +8086,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -6991,23 +8095,27 @@ }, "t": { "description": "For polar chart only.Sets the angular coordinates.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tsrc": { "description": "Sets the source reference on plot.ly for t .", + "editType": "none", "role": "info", "valType": "string" }, "type": "area", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -7024,6 +8132,7 @@ "_deprecated": { "bardir": { "description": "Renamed to `orientation`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -7036,17 +8145,20 @@ "arrayOk": true, "description": "Sets where the bar base is drawn (in position axis units). In *stack* or *relative* barmode, traces that set *base* will be excluded and drawn in *overlay* mode instead.", "dflt": null, + "editType": "calc", "role": "info", "valType": "any" }, "basesrc": { "description": "Sets the source reference on plot.ly for base .", + "editType": "none", "role": "info", "valType": "string" }, "constraintext": { "description": "Constrain the size of text inside or outside a bar to be no larger than the bar itself.", "dflt": "both", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -7058,23 +8170,27 @@ }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "dx": { "description": "Sets the x coordinate step. See `x0` for more info.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, "dy": { "description": "Sets the y coordinate step. See `y0` for more info.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, @@ -7082,70 +8198,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "style", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "style", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "plot", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "style", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -7158,6 +8288,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -7165,17 +8296,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -7185,70 +8319,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "style", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "style", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "plot", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "style", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -7261,6 +8409,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -7268,17 +8417,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -7288,6 +8440,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -7305,6 +8458,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -7312,39 +8466,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -7352,18 +8516,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -7371,12 +8538,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -7386,39 +8555,47 @@ "arrayOk": true, "description": "Sets hover text elements associated with each (x,y) pair. 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) coordinates. To be seen, trace `hoverinfo` must contain a *text* flag.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "hovertextsrc": { "description": "Sets the source reference on plot.ly for hovertext .", + "editType": "none", "role": "info", "valType": "string" }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "insidetextfont": { "color": { "arrayOk": true, + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "Sets the font used for `text` lying inside the bar.", + "editType": "calc", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -7426,18 +8603,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -7445,6 +8625,7 @@ "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -7452,30 +8633,43 @@ "autocolorscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, @@ -7483,30 +8677,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -7521,6 +8724,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -7528,6 +8732,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -7538,6 +8743,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -7545,12 +8751,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -7559,12 +8767,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -7577,12 +8787,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -7595,6 +8807,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -7607,6 +8820,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -7614,6 +8828,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -7623,29 +8838,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -7653,6 +8877,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -7661,18 +8886,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -7684,12 +8913,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -7701,32 +8932,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -7734,17 +8971,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -7752,6 +8993,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -7760,6 +9002,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -7771,6 +9014,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -7779,6 +9023,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -7790,6 +9035,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -7797,6 +9043,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -7805,6 +9052,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -7816,6 +9064,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -7823,58 +9072,84 @@ }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "line": { "autocolorscale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.line.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.line.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "reversescale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -7883,12 +9158,14 @@ "arrayOk": true, "description": "Sets the width (in px) of the lines bounding the marker points.", "dflt": 0, + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -7896,6 +9173,7 @@ "reversescale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -7903,12 +9181,14 @@ "showscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" } }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, @@ -7916,17 +9196,20 @@ "arrayOk": true, "description": "Shifts the position where the bar is drawn (in position axis units). In *group* barmode, traces that set *offset* will be excluded and drawn in *overlay* mode instead.", "dflt": null, + "editType": "calc", "role": "info", "valType": "number" }, "offsetsrc": { "description": "Sets the source reference on plot.ly for offset .", + "editType": "none", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -7934,6 +9217,7 @@ }, "orientation": { "description": "Sets the orientation of the bars. With *v* (*h*), the value of the each bar spans along the vertical (horizontal).", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "enumerated", "values": [ @@ -7944,18 +9228,22 @@ "outsidetextfont": { "color": { "arrayOk": true, + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "Sets the font used for `text` lying outside the bar.", + "editType": "calc", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -7963,42 +9251,50 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } }, "r": { "description": "For polar chart only.Sets the radial coordinates.", + "editType": "calc", "role": "data", "valType": "data_array" }, "rsrc": { "description": "Sets the source reference on plot.ly for r .", + "editType": "none", "role": "info", "valType": "string" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -8007,6 +9303,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -8015,6 +9312,7 @@ }, "t": { "description": "For polar chart only.Sets the angular coordinates.", + "editType": "calc", "role": "data", "valType": "data_array" }, @@ -8022,24 +9320,29 @@ "arrayOk": true, "description": "Sets text elements associated with each (x,y) pair. 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) coordinates. If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textfont": { "color": { "arrayOk": true, + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "Sets the font used for `text`.", + "editType": "calc", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -8047,18 +9350,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -8067,6 +9373,7 @@ "arrayOk": true, "description": "Specifies the location of the `text`. *inside* positions `text` inside, next to the bar end (rotated and scaled if needed). *outside* positions `text` outside, next to the bar end (scaled if needed). *auto* positions `text` inside or outside so that `text` size is maximized.", "dflt": "none", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -8078,28 +9385,33 @@ }, "textpositionsrc": { "description": "Sets the source reference on plot.ly for textposition .", + "editType": "none", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "tsrc": { "description": "Sets the source reference on plot.ly for t .", + "editType": "none", "role": "info", "valType": "string" }, "type": "bar", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -8112,35 +9424,41 @@ "arrayOk": true, "description": "Sets the bar width (in position axis units).", "dflt": null, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" }, "x": { "description": "Sets the x coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "x0": { "description": "Alternate to `x`. Builds a linear space of x coordinates. Use with `dx` where `x0` is the starting coordinate and `dx` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", "role": "info", "valType": "any" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -8164,29 +9482,34 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the y coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "y0": { "description": "Alternate to `y`. Builds a linear space of y coordinates. Use with `dy` where `y0` is the starting coordinate and `dy` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", "role": "info", "valType": "any" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -8210,6 +9533,7 @@ }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" } @@ -8217,6 +9541,7 @@ "layoutAttributes": { "bargap": { "description": "Sets the gap (in plot fraction) between bars of adjacent location coordinates.", + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -8225,6 +9550,7 @@ "bargroupgap": { "description": "Sets the gap (in plot fraction) between bars of the same location coordinate.", "dflt": 0, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -8233,6 +9559,7 @@ "barmode": { "description": "Determines how bars at the same location coordinate are displayed on the graph. With *stack*, the bars are stacked on top of one another With *relative*, the bars are stacked on top of one another, with negative values below the axis, positive values above With *group*, the bars are plotted next to one another centered around the shared location. With *overlay*, the bars are plotted over one another, you might need to an *opacity* to see multiple bars.", "dflt": "group", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -8245,6 +9572,7 @@ "barnorm": { "description": "Sets the normalization for bar traces on the graph. With *fraction*, the value of each bar is divide by the sum of the values at the location coordinate. With *percent*, the results form *fraction* are presented in percents.", "dflt": "", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -8263,6 +9591,7 @@ "boxmean": { "description": "If *true*, the mean of the box(es)' underlying distribution is drawn as a dashed line inside the box(es). If *sd* the standard deviation is also drawn.", "dflt": false, + "editType": "calcIfAutorange", "role": "style", "valType": "enumerated", "values": [ @@ -8274,6 +9603,7 @@ "boxpoints": { "description": "If *outliers*, only the sample points lying outside the whiskers are shown If *suspectedoutliers*, the outlier points are shown and points either less than 4*Q1-3*Q3 or greater than 4*Q3-3*Q1 are highlighted (see `outliercolor`) If *all*, all sample points are shown If *false*, only the box(es) are shown with no sample points", "dflt": "outliers", + "editType": "calcIfAutorange", "role": "style", "valType": "enumerated", "values": [ @@ -8285,16 +9615,19 @@ }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "style", "role": "style", "valType": "color" }, @@ -8302,6 +9635,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -8319,6 +9653,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -8326,39 +9661,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -8366,18 +9711,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -8385,12 +9733,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -8398,16 +9748,19 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "jitter": { "description": "Sets the amount of jitter in the sample points drawn. If *0*, the sample points align along the distribution axis. If *1*, the sample points are drawn in a random jitter of width equal to the width of the box(es).", + "editType": "calcIfAutorange", "max": 1, "min": 0, "role": "style", @@ -8416,19 +9769,23 @@ "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the color of line bounding the box(es).", + "editType": "style", "role": "style", "valType": "color" }, + "editType": "plot", "role": "object", "width": { "description": "Sets the width (in px) of line bounding the box(es).", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -8438,25 +9795,31 @@ "color": { "arrayOk": false, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, + "editType": "plot", "line": { "color": { "arrayOk": false, "description": "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 `cmin` and `cmax` if set.", "dflt": "#444", + "editType": "style", "role": "style", "valType": "color" }, + "editType": "style", "outliercolor": { "description": "Sets the border line color of the outlier sample points. Defaults to marker.color", + "editType": "style", "role": "style", "valType": "color" }, "outlierwidth": { "description": "Sets the border line width (in px) of the outlier sample points.", "dflt": 1, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -8466,6 +9829,7 @@ "arrayOk": false, "description": "Sets the width (in px) of the lines bounding the marker points.", "dflt": 0, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -8475,6 +9839,7 @@ "arrayOk": false, "description": "Sets the marker opacity.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -8483,6 +9848,7 @@ "outliercolor": { "description": "Sets the color of the outlier sample points.", "dflt": "rgba(0, 0, 0, 0)", + "editType": "style", "role": "style", "valType": "color" }, @@ -8491,6 +9857,7 @@ "arrayOk": false, "description": "Sets the marker size (in px).", "dflt": 6, + "editType": "calcIfAutorange", "min": 0, "role": "style", "valType": "number" @@ -8499,6 +9866,7 @@ "arrayOk": false, "description": "Sets the marker symbol type. Adding 100 is equivalent to appending *-open* to a symbol name. Adding 200 is equivalent to appending *-dot* to a symbol name. Adding 300 is equivalent to appending *-open-dot* or *dot-open* to a symbol name.", "dflt": "circle", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -8790,13 +10158,15 @@ } }, "name": { - "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "description": "Sets the trace name. The trace name appear as the legend item and on hover. For box traces, the name will also be used for the position coordinate, if `x` and `x0` (`y` and `y0` if horizontal) are missing and the position axis is categorical", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -8804,6 +10174,7 @@ }, "orientation": { "description": "Sets the orientation of the box(es). If *v* (*h*), the distribution is visualized along the vertical (horizontal).", + "editType": "calc+clearAxisTypes", "role": "style", "valType": "enumerated", "values": [ @@ -8813,6 +10184,7 @@ }, "pointpos": { "description": "Sets the position of the sample points in relation to the box(es). If *0*, the sample points are places over the center of the box(es). Positive (negative) values correspond to positions to the right (left) for vertical boxes and above (below) for horizontal boxes", + "editType": "calcIfAutorange", "max": 2, "min": -2, "role": "style", @@ -8821,13 +10193,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -8836,6 +10211,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -8845,12 +10221,14 @@ "type": "box", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -8862,6 +10240,7 @@ "whiskerwidth": { "description": "Sets the width of the whiskers relative to the box' width. For example, with 1, the whiskers are as wide as the box(es).", "dflt": 0.5, + "editType": "calcIfAutorange", "max": 1, "min": 0, "role": "style", @@ -8869,43 +10248,101 @@ }, "x": { "description": "Sets the x sample data or coordinates. See overview for more info.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "x0": { "description": "Sets the x coordinate of the box. See overview for more info.", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "any" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, + "xcalendar": { + "description": "Sets the calendar system to use with `x` date data.", + "dflt": "gregorian", + "editType": "calc", + "role": "info", + "valType": "enumerated", + "values": [ + "gregorian", + "chinese", + "coptic", + "discworld", + "ethiopian", + "hebrew", + "islamic", + "julian", + "mayan", + "nanakshahi", + "nepali", + "persian", + "jalali", + "taiwan", + "thai", + "ummalqura" + ] + }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the y sample data or coordinates. See overview for more info.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "y0": { "description": "Sets the y coordinate of the box. See overview for more info.", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "any" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, + "ycalendar": { + "description": "Sets the calendar system to use with `y` date data.", + "dflt": "gregorian", + "editType": "calc", + "role": "info", + "valType": "enumerated", + "values": [ + "gregorian", + "chinese", + "coptic", + "discworld", + "ethiopian", + "hebrew", + "islamic", + "julian", + "mayan", + "nanakshahi", + "nepali", + "persian", + "jalali", + "taiwan", + "thai", + "ummalqura" + ] + }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" } @@ -8914,6 +10351,7 @@ "boxgap": { "description": "Sets the gap (in plot fraction) between boxes of adjacent location coordinates.", "dflt": 0.3, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -8922,6 +10360,7 @@ "boxgroupgap": { "description": "Sets the gap (in plot fraction) between boxes of the same location coordinate.", "dflt": 0.3, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -8930,6 +10369,7 @@ "boxmode": { "description": "Determines how boxes at the same location coordinate are displayed on the graph. If *group*, the boxes are plotted next to one another centered around the shared location. If *overlay*, the boxes are plotted over one another, you might need to set *opacity* to see them multiple boxes.", "dflt": "overlay", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -8947,27 +10387,33 @@ "close": { "description": "Sets the close values.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "closesrc": { "description": "Sets the source reference on plot.ly for close .", + "editType": "none", "role": "info", "valType": "string" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "decreasing": { + "editType": "style", "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "style", "role": "style", "valType": "color" }, @@ -8975,13 +10421,16 @@ "color": { "description": "Sets the color of line bounding the box(es).", "dflt": "#FF4136", + "editType": "style", "role": "style", "valType": "color" }, + "editType": "style", "role": "object", "width": { "description": "Sets the width (in px) of line bounding the box(es).", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -8989,6 +10438,7 @@ }, "name": { "description": "Sets the segment name. The segment name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, @@ -8996,6 +10446,7 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this segment is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" } @@ -9003,11 +10454,13 @@ "high": { "description": "Sets the high values.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "highsrc": { "description": "Sets the source reference on plot.ly for high .", + "editType": "none", "role": "info", "valType": "string" }, @@ -9015,6 +10468,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -9032,6 +10486,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -9039,39 +10494,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -9079,18 +10544,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -9098,12 +10566,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -9111,17 +10581,21 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "increasing": { + "editType": "style", "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "style", "role": "style", "valType": "color" }, @@ -9129,13 +10603,16 @@ "color": { "description": "Sets the color of line bounding the box(es).", "dflt": "#3D9970", + "editType": "style", "role": "style", "valType": "color" }, + "editType": "style", "role": "object", "width": { "description": "Sets the width (in px) of line bounding the box(es).", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -9143,6 +10620,7 @@ }, "name": { "description": "Sets the segment name. The segment name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, @@ -9150,6 +10628,7 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this segment is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" } @@ -9157,14 +10636,17 @@ "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { + "editType": "style", "role": "object", "width": { "description": "Sets the width (in px) of line bounding the box(es). Note that this style setting can also be set per direction via `increasing.line.width` and `decreasing.line.width`.", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -9173,22 +10655,26 @@ "low": { "description": "Sets the low values.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "lowsrc": { "description": "Sets the source reference on plot.ly for low .", + "editType": "none", "role": "info", "valType": "string" }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -9197,24 +10683,29 @@ "open": { "description": "Sets the open values.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "opensrc": { "description": "Sets the source reference on plot.ly for open .", + "editType": "none", "role": "info", "valType": "string" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -9223,6 +10714,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -9233,23 +10725,27 @@ "arrayOk": true, "description": "Sets hover text elements associated with each sample point. 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 this trace's sample points.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "candlestick", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -9261,6 +10757,7 @@ "whiskerwidth": { "description": "Sets the width of the whiskers relative to the box' width. For example, with 1, the whiskers are as wide as the box(es).", "dflt": 0, + "editType": "calcIfAutorange", "max": 1, "min": 0, "role": "style", @@ -9268,18 +10765,21 @@ }, "x": { "description": "Sets the x coordinates. If absent, linear coordinate will be generated.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -9303,12 +10803,14 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" } @@ -9321,12 +10823,14 @@ "attributes": { "a": { "description": "An array containing values of the first parameter value", + "editType": "calc", "role": "data", "valType": "data_array" }, "a0": { "description": "Alternate to `a`. Builds a linear space of a coordinates. Use with `da` where `a0` is the starting coordinate and `da` the step.", "dflt": 0, + "editType": "calc", "role": "info", "valType": "number" }, @@ -9334,6 +10838,7 @@ "arraydtick": { "description": "The stride between grid lines along the axis", "dflt": 1, + "editType": "calc", "min": 1, "role": "info", "valType": "integer" @@ -9341,6 +10846,7 @@ "arraytick0": { "description": "The starting index of grid lines along the axis", "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" @@ -9348,6 +10854,7 @@ "autorange": { "description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided, then `autorange` is set to *false*.", "dflt": true, + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9358,17 +10865,20 @@ }, "categoryarray": { "description": "Sets the order in which categories on this axis appear. Only has an effect if `categoryorder` is set to *array*. Used with `categoryorder`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "categoryarraysrc": { "description": "Sets the source reference on plot.ly for categoryarray .", + "editType": "none", "role": "info", "valType": "string" }, "categoryorder": { "description": "Specifies the ordering logic for the case of categorical variables. By default, plotly uses *trace*, which specifies the order that is present in the data supplied. Set `categoryorder` to *category ascending* or *category descending* if order should be determined by the alphanumerical order of the category names. Set `categoryorder` to *array* to derive the ordering from the attribute `categoryarray`. If a category is not found in the `categoryarray` array, the sorting behavior for that attribute will be identical to the *trace* mode. The unspecified categories will follow the categories in `categoryarray`.", "dflt": "trace", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -9380,6 +10890,7 @@ }, "cheatertype": { "dflt": "value", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -9389,35 +10900,42 @@ }, "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", + "editType": "calc", "role": "style", "valType": "color" }, "dtick": { "description": "The stride between grid lines along the axis", "dflt": 1, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, + "editType": "calc", "endline": { "description": "Determines whether or not a line is drawn at along the final value of this axis. If *true*, the end line is drawn on top of the grid lines.", + "editType": "calc", "role": "style", "valType": "boolean" }, "endlinecolor": { "description": "Sets the line color of the end line.", + "editType": "calc", "role": "style", "valType": "color" }, "endlinewidth": { "description": "Sets the width (in px) of the end line.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "exponentformat": { "description": "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.", "dflt": "B", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9432,17 +10950,20 @@ "fixedrange": { "description": "Determines whether or not this axis is zoom-able. If true, then zoom is disabled.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "gridcolor": { "description": "Sets the axis line color.", + "editType": "calc", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -9450,29 +10971,34 @@ "labelpadding": { "description": "Extra padding between label and the axis", "dflt": 10, + "editType": "calc", "role": "style", "valType": "integer" }, "labelprefix": { "description": "Sets a axis label prefix.", + "editType": "calc", "role": "style", "valType": "string" }, "labelsuffix": { "description": "Sets a axis label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -9480,12 +11006,14 @@ "minorgridcolor": { "description": "Sets the color of the grid lines.", "dflt": "#eee", + "editType": "calc", "role": "style", "valType": "color" }, "minorgridcount": { "description": "Sets the number of minor grid ticks per major grid tick", "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" @@ -9493,6 +11021,7 @@ "minorgridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -9500,17 +11029,21 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" }, "range": { "description": "Sets the range of this axis. If the axis `type` is *log*, then you must take the log of your desired range (e.g. to set the range from 1 to 100, set the range from 0 to 2). If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calc", "items": [ { + "editType": "calc", "valType": "any" }, { + "editType": "calc", "valType": "any" } ], @@ -9520,6 +11053,7 @@ "rangemode": { "description": "If *normal*, the range is computed in relation to the extrema of the input data. If *tozero*`, the range extends to 0, regardless of the input data If *nonnegative*, the range is non-negative, regardless of the input data.", "dflt": "normal", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9532,12 +11066,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9550,18 +11086,21 @@ "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showticklabels": { "description": "Determines whether axis labels are drawn on the low side, the high side, both, or neither side of the axis.", "dflt": "start", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9574,6 +11113,7 @@ "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9586,6 +11126,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9597,6 +11138,7 @@ }, "smoothing": { "dflt": 1, + "editType": "calc", "max": 1.3, "min": 0, "role": "info", @@ -9604,23 +11146,27 @@ }, "startline": { "description": "Determines whether or not a line is drawn at along the starting value of this axis. If *true*, the start line is drawn on top of the grid lines.", + "editType": "calc", "role": "style", "valType": "boolean" }, "startlinecolor": { "description": "Sets the line color of the start line.", + "editType": "calc", "role": "style", "valType": "color" }, "startlinewidth": { "description": "Sets the width (in px) of the start line.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "tick0": { "description": "The starting index of grid lines along the axis", "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -9628,17 +11174,21 @@ "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "calc", "role": "style", "valType": "angle" }, "tickfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -9646,6 +11196,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -9654,11 +11205,13 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "tickmode": { "dflt": "array", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -9669,48 +11222,58 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "title": { "description": "Sets the title of this axis.", + "editType": "calc", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -9718,6 +11281,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -9726,12 +11290,14 @@ "titleoffset": { "description": "An additional amount by which to offset the title from the tick labels, given in pixels", "dflt": 10, + "editType": "calc", "role": "info", "valType": "number" }, "type": { "description": "Sets the axis type. By default, plotly attempts to determined the axis type by looking into the data of the traces that referenced the axis in question.", "dflt": "-", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -9744,17 +11310,20 @@ }, "asrc": { "description": "Sets the source reference on plot.ly for a .", + "editType": "none", "role": "info", "valType": "string" }, "b": { "description": "A two dimensional array of y coordinates at each carpet point.", + "editType": "calc", "role": "data", "valType": "data_array" }, "b0": { "description": "Alternate to `b`. Builds a linear space of a coordinates. Use with `db` where `b0` is the starting coordinate and `db` the step.", "dflt": 0, + "editType": "calc", "role": "info", "valType": "number" }, @@ -9762,6 +11331,7 @@ "arraydtick": { "description": "The stride between grid lines along the axis", "dflt": 1, + "editType": "calc", "min": 1, "role": "info", "valType": "integer" @@ -9769,6 +11339,7 @@ "arraytick0": { "description": "The starting index of grid lines along the axis", "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" @@ -9776,6 +11347,7 @@ "autorange": { "description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided, then `autorange` is set to *false*.", "dflt": true, + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9786,17 +11358,20 @@ }, "categoryarray": { "description": "Sets the order in which categories on this axis appear. Only has an effect if `categoryorder` is set to *array*. Used with `categoryorder`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "categoryarraysrc": { "description": "Sets the source reference on plot.ly for categoryarray .", + "editType": "none", "role": "info", "valType": "string" }, "categoryorder": { "description": "Specifies the ordering logic for the case of categorical variables. By default, plotly uses *trace*, which specifies the order that is present in the data supplied. Set `categoryorder` to *category ascending* or *category descending* if order should be determined by the alphanumerical order of the category names. Set `categoryorder` to *array* to derive the ordering from the attribute `categoryarray`. If a category is not found in the `categoryarray` array, the sorting behavior for that attribute will be identical to the *trace* mode. The unspecified categories will follow the categories in `categoryarray`.", "dflt": "trace", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -9808,6 +11383,7 @@ }, "cheatertype": { "dflt": "value", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -9817,35 +11393,42 @@ }, "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", + "editType": "calc", "role": "style", "valType": "color" }, "dtick": { "description": "The stride between grid lines along the axis", "dflt": 1, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, + "editType": "calc", "endline": { "description": "Determines whether or not a line is drawn at along the final value of this axis. If *true*, the end line is drawn on top of the grid lines.", + "editType": "calc", "role": "style", "valType": "boolean" }, "endlinecolor": { "description": "Sets the line color of the end line.", + "editType": "calc", "role": "style", "valType": "color" }, "endlinewidth": { "description": "Sets the width (in px) of the end line.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "exponentformat": { "description": "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.", "dflt": "B", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9860,17 +11443,20 @@ "fixedrange": { "description": "Determines whether or not this axis is zoom-able. If true, then zoom is disabled.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "gridcolor": { "description": "Sets the axis line color.", + "editType": "calc", "role": "style", "valType": "color" }, "gridwidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -9878,29 +11464,34 @@ "labelpadding": { "description": "Extra padding between label and the axis", "dflt": 10, + "editType": "calc", "role": "style", "valType": "integer" }, "labelprefix": { "description": "Sets a axis label prefix.", + "editType": "calc", "role": "style", "valType": "string" }, "labelsuffix": { "description": "Sets a axis label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "linecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "linewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -9908,12 +11499,14 @@ "minorgridcolor": { "description": "Sets the color of the grid lines.", "dflt": "#eee", + "editType": "calc", "role": "style", "valType": "color" }, "minorgridcount": { "description": "Sets the number of minor grid ticks per major grid tick", "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" @@ -9921,6 +11514,7 @@ "minorgridwidth": { "description": "Sets the width (in px) of the grid lines.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -9928,17 +11522,21 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" }, "range": { "description": "Sets the range of this axis. If the axis `type` is *log*, then you must take the log of your desired range (e.g. to set the range from 1 to 100, set the range from 0 to 2). If the axis `type` is *date*, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axis `type` is *category*, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calc", "items": [ { + "editType": "calc", "valType": "any" }, { + "editType": "calc", "valType": "any" } ], @@ -9948,6 +11546,7 @@ "rangemode": { "description": "If *normal*, the range is computed in relation to the extrema of the input data. If *tozero*`, the range extends to 0, regardless of the input data If *nonnegative*, the range is non-negative, regardless of the input data.", "dflt": "normal", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9960,12 +11559,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -9978,18 +11579,21 @@ "showgrid": { "description": "Determines whether or not grid lines are drawn. If *true*, the grid lines are drawn at every tick mark.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "showline": { "description": "Determines whether or not a line bounding this axis is drawn.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showticklabels": { "description": "Determines whether axis labels are drawn on the low side, the high side, both, or neither side of the axis.", "dflt": "start", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -10002,6 +11606,7 @@ "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -10014,6 +11619,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -10025,6 +11631,7 @@ }, "smoothing": { "dflt": 1, + "editType": "calc", "max": 1.3, "min": 0, "role": "info", @@ -10032,23 +11639,27 @@ }, "startline": { "description": "Determines whether or not a line is drawn at along the starting value of this axis. If *true*, the start line is drawn on top of the grid lines.", + "editType": "calc", "role": "style", "valType": "boolean" }, "startlinecolor": { "description": "Sets the line color of the start line.", + "editType": "calc", "role": "style", "valType": "color" }, "startlinewidth": { "description": "Sets the width (in px) of the start line.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "tick0": { "description": "The starting index of grid lines along the axis", "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -10056,17 +11667,21 @@ "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "calc", "role": "style", "valType": "angle" }, "tickfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets the tick font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -10074,6 +11689,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -10082,11 +11698,13 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "tickmode": { "dflt": "array", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -10097,48 +11715,58 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "title": { "description": "Sets the title of this axis.", + "editType": "calc", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets this axis' title font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -10146,6 +11774,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -10154,12 +11783,14 @@ "titleoffset": { "description": "An additional amount by which to offset the title from the tick labels, given in pixels", "dflt": 10, + "editType": "calc", "role": "info", "valType": "number" }, "type": { "description": "Sets the axis type. By default, plotly attempts to determined the axis type by looking into the data of the traces that referenced the axis in question.", "dflt": "-", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -10172,57 +11803,69 @@ }, "bsrc": { "description": "Sets the source reference on plot.ly for b .", + "editType": "none", "role": "info", "valType": "string" }, "carpet": { "description": "An identifier for this carpet, so that `scattercarpet` and `scattercontour` traces can specify a carpet plot on which they lie", + "editType": "calc", "role": "info", "valType": "string" }, "cheaterslope": { "description": "The shift applied to each successive row of data in creating a cheater plot. Only used if `x` is been ommitted.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, "color": { "description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.", "dflt": "#444", + "editType": "plot", "role": "style", "valType": "color" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "da": { "description": "Sets the a coordinate step. See `a0` for more info.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, "db": { "description": "Sets the b coordinate step. See `b0` for more info.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, "font": { "color": { "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, + "description": "The default font used for axis & tick labels on this carpet", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", "dflt": "\"Open Sans\", verdana, arial, sans-serif", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -10231,6 +11874,7 @@ "role": "object", "size": { "dflt": 12, + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -10240,6 +11884,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -10257,6 +11902,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -10264,39 +11910,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -10304,18 +11960,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -10323,12 +11982,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -10336,28 +11997,33 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -10366,13 +12032,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -10381,6 +12050,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -10390,12 +12060,14 @@ "type": "carpet", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -10406,33 +12078,39 @@ }, "x": { "description": "A two dimensional array of x coordinates at each carpet point. If ommitted, the plot is a cheater plot and the xaxis is hidden by default.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "A two dimensional array of y coordinates at each carpet point.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" } @@ -10446,6 +12124,8 @@ "autocolorscale": { "description": "Determines whether or not the colorscale is picked using the sign of the input z values.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, @@ -10453,30 +12133,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -10491,6 +12180,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -10498,6 +12188,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -10508,6 +12199,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -10515,12 +12207,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -10529,12 +12223,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -10547,12 +12243,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -10565,6 +12263,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -10577,6 +12276,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -10584,6 +12284,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -10593,29 +12294,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -10623,6 +12333,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -10631,18 +12342,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -10654,12 +12369,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -10671,32 +12388,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -10704,17 +12427,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -10722,6 +12449,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -10730,6 +12458,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -10741,6 +12470,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -10749,6 +12479,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -10760,6 +12491,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -10767,6 +12499,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -10775,6 +12508,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -10786,6 +12520,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -10793,22 +12528,29 @@ }, "colorscale": { "description": "Sets the colorscale. 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 z space, use zmin and zmax", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "geo": { "description": "Sets a reference between this trace's geospatial coordinates and a geographic map. If *geo* (the default value), the geospatial coordinates refer to `layout.geo`. If *geo2*, the geospatial coordinates refer to `layout.geo2`, and so on.", "dflt": "geo", + "editType": "calc", "role": "info", "valType": "subplotid" }, @@ -10816,6 +12558,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "calc", "extras": [ "all", "none", @@ -10833,6 +12576,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -10840,39 +12584,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -10880,18 +12634,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -10899,12 +12656,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -10912,23 +12671,27 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "locationmode": { "description": "Determines the set of locations used to match entries in `locations` to regions on the map.", "dflt": "ISO-3", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -10939,38 +12702,46 @@ }, "locations": { "description": "Sets the coordinates via location IDs or names. See `locationmode` for more info.", + "editType": "calc", "role": "data", "valType": "data_array" }, "locationssrc": { "description": "Sets the source reference on plot.ly for locations .", + "editType": "none", "role": "info", "valType": "string" }, "marker": { + "editType": "calc", "line": { "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object", "width": { "arrayOk": true, "description": "Sets the width (in px) of the lines bounding the marker points.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -10979,12 +12750,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -10993,25 +12766,30 @@ "reversescale": { "description": "Reverses the colorscale.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "showscale": { "description": "Determines whether or not a colorbar is displayed for this trace.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -11020,6 +12798,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -11027,24 +12806,30 @@ } }, "text": { + "arrayOk": true, "description": "Sets the text elements associated with each location.", - "role": "data", - "valType": "data_array" + "dflt": "", + "editType": "calc", + "role": "info", + "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "choropleth", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -11055,29 +12840,41 @@ }, "z": { "description": "Sets the color values.", + "editType": "calc", "role": "data", "valType": "data_array" }, "zauto": { "description": "Determines the whether or not the color domain is computed with respect to the input data.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "zmax": { "description": "Sets the upper bound of color domain.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zmin": { "description": "Sets the lower bound of color domain.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -11091,13 +12888,16 @@ "autocolorscale": { "description": "Determines whether or not the colorscale is picked using the sign of the input z values.", "dflt": false, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "autocontour": { "description": "Determines whether or not the contour level attributes are picked by an algorithm. If *true*, the number of contour levels can be set in `ncontours`. If *false*, set the contour level attributes in `contours`.", "dflt": true, - "editType": "docalc", + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, @@ -11105,30 +12905,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -11143,6 +12952,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -11150,6 +12960,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -11160,6 +12971,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -11167,12 +12979,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -11181,12 +12995,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -11199,12 +13015,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -11217,6 +13035,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -11229,6 +13048,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -11236,6 +13056,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -11245,29 +13066,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -11275,6 +13105,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -11283,18 +13114,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -11306,12 +13141,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -11323,32 +13160,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -11356,17 +13199,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -11374,6 +13221,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -11382,6 +13230,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -11393,6 +13242,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -11401,6 +13251,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -11412,6 +13263,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -11419,6 +13271,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -11427,6 +13280,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -11438,6 +13292,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -11445,12 +13300,17 @@ }, "colorscale": { "description": "Sets the colorscale. 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 z space, use zmin and zmax", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the `z` data are filled in.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -11458,7 +13318,7 @@ "coloring": { "description": "Determines the coloring method showing the contour values. If *fill*, coloring is done evenly between each contour level If *heatmap*, a heatmap gradient coloring is applied between each contour level. If *lines*, coloring is done on the contour lines. If *none*, no coloring is applied on this trace.", "dflt": "fill", - "editType": "docalc", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -11468,23 +13328,32 @@ "none" ] }, + "editType": "calc", "end": { "description": "Sets the end contour level value. Must be more than `contours.start`", "dflt": null, - "editType": "doplot", + "editType": "plot", + "impliedEdits": { + "^autocontour": false + }, "role": "style", "valType": "number" }, + "impliedEdits": { + "autocontour": false, + "role": "object" + }, "labelfont": { "color": { - "editType": "dostyle", + "editType": "style", "role": "style", "valType": "color" }, "description": "Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", - "editType": "doplot", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -11492,7 +13361,7 @@ }, "role": "object", "size": { - "editType": "doplot", + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -11501,7 +13370,7 @@ "labelformat": { "description": "Sets the contour label formatting rule using d3 formatting mini-language which is very similar to Python, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format.", "dflt": "", - "editType": "doplot", + "editType": "plot", "role": "style", "valType": "string" }, @@ -11509,21 +13378,24 @@ "showlabels": { "description": "Determines whether to label the contour lines with their values.", "dflt": false, - "editType": "doplot", + "editType": "plot", "role": "style", "valType": "boolean" }, "showlines": { "description": "Determines whether or not the contour lines are drawn. Has an effect only if `contours.coloring` is set to *fill*.", "dflt": true, - "editType": "doplot", + "editType": "plot", "role": "style", "valType": "boolean" }, "size": { "description": "Sets the step between each contour level. Must be positive.", "dflt": null, - "editType": "doplot", + "editType": "plot", + "impliedEdits": { + "^autocontour": false + }, "min": 0, "role": "style", "valType": "number" @@ -11531,30 +13403,43 @@ "start": { "description": "Sets the starting contour level value. Must be less than `contours.end`", "dflt": null, - "editType": "doplot", + "editType": "plot", + "impliedEdits": { + "^autocontour": false + }, "role": "style", "valType": "number" } }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "dx": { "description": "Sets the x coordinate step. See `x0` for more info.", "dflt": 1, + "editType": "calc", + "impliedEdits": { + "xtype": "scaled" + }, "role": "info", "valType": "number" }, "dy": { "description": "Sets the y coordinate step. See `y0` for more info.", "dflt": 1, + "editType": "calc", + "impliedEdits": { + "ytype": "scaled" + }, "role": "info", "valType": "number" }, @@ -11562,6 +13447,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -11579,6 +13465,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -11586,39 +13473,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -11626,18 +13523,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -11645,12 +13545,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -11658,29 +13560,34 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the color of the contour level. Has no effect if `contours.coloring` is set to *lines*.", + "editType": "style+colorbars", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "style", "role": "style", "valType": "string", "values": [ @@ -11692,10 +13599,12 @@ "longdashdot" ] }, + "editType": "plot", "role": "object", "smoothing": { "description": "Sets the amount of smoothing for the contour lines, where *0* corresponds to no smoothing.", "dflt": 1, + "editType": "plot", "max": 1.3, "min": 0, "role": "style", @@ -11704,6 +13613,7 @@ "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "style+colorbars", "min": 0, "role": "style", "valType": "number" @@ -11711,13 +13621,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "ncontours": { "description": "Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is *true* or if `contours.size` is missing.", "dflt": 15, - "editType": "docalc", + "editType": "calc", "min": 1, "role": "style", "valType": "integer" @@ -11725,6 +13636,7 @@ "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -11733,25 +13645,30 @@ "reversescale": { "description": "Reverses the colorscale.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "showscale": { "description": "Determines whether or not a colorbar is displayed for this trace.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -11760,6 +13677,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -11768,29 +13686,34 @@ }, "text": { "description": "Sets the text elements associated with each z value.", + "editType": "calc", "role": "data", "valType": "data_array" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "transpose": { "description": "Transposes the z data.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "type": "contour", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -11801,24 +13724,34 @@ }, "x": { "description": "Sets the x coordinates.", + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "xtype": "array" + }, "role": "data", "valType": "data_array" }, "x0": { "description": "Alternate to `x`. Builds a linear space of x coordinates. Use with `dx` where `x0` is the starting coordinate and `dx` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "xtype": "scaled" + }, "role": "info", "valType": "any" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -11842,11 +13775,13 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "xtype": { "description": "If *array*, the heatmap's x coordinates are given by *x* (the default behavior when `x` is provided). If *scaled*, the heatmap's x coordinates are given by *x0* and *dx* (the default behavior when `x` is not provided).", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "enumerated", "values": [ @@ -11856,24 +13791,34 @@ }, "y": { "description": "Sets the y coordinates.", + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "ytype": "array" + }, "role": "data", "valType": "data_array" }, "y0": { "description": "Alternate to `y`. Builds a linear space of y coordinates. Use with `dy` where `y0` is the starting coordinate and `dy` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "ytype": "scaled" + }, "role": "info", "valType": "any" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -11897,11 +13842,13 @@ }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" }, "ytype": { "description": "If *array*, the heatmap's y coordinates are given by *y* (the default behavior when `y` is provided) If *scaled*, the heatmap's y coordinates are given by *y0* and *dy* (the default behavior when `y` is not provided)", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "enumerated", "values": [ @@ -11911,31 +13858,41 @@ }, "z": { "description": "Sets the z data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "zauto": { "description": "Determines the whether or not the color domain is computed with respect to the input data.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "zmax": { "description": "Sets the upper bound of color domain.", "dflt": null, - "editType": "docalc", + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zmin": { "description": "Sets the lower bound of color domain.", "dflt": null, - "editType": "docalc", + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -11948,22 +13905,32 @@ "attributes": { "a": { "description": "Sets the x coordinates.", + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "xtype": "array" + }, "role": "data", "valType": "data_array" }, "a0": { "description": "Alternate to `x`. Builds a linear space of x coordinates. Use with `dx` where `x0` is the starting coordinate and `dx` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "xtype": "scaled" + }, "role": "info", "valType": "any" }, "asrc": { "description": "Sets the source reference on plot.ly for a .", + "editType": "none", "role": "info", "valType": "string" }, "atype": { "description": "If *array*, the heatmap's x coordinates are given by *x* (the default behavior when `x` is provided). If *scaled*, the heatmap's x coordinates are given by *x0* and *dx* (the default behavior when `x` is not provided).", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "enumerated", "values": [ @@ -11974,34 +13941,47 @@ "autocolorscale": { "description": "Determines whether or not the colorscale is picked using the sign of the input z values.", "dflt": false, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "autocontour": { "description": "Determines whether or not the contour level attributes are picked by an algorithm. If *true*, the number of contour levels can be set in `ncontours`. If *false*, set the contour level attributes in `contours`.", "dflt": true, - "editType": "docalc", + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "b": { "description": "Sets the y coordinates.", + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "ytype": "array" + }, "role": "data", "valType": "data_array" }, "b0": { "description": "Alternate to `y`. Builds a linear space of y coordinates. Use with `dy` where `y0` is the starting coordinate and `dy` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "ytype": "scaled" + }, "role": "info", "valType": "any" }, "bsrc": { "description": "Sets the source reference on plot.ly for b .", + "editType": "none", "role": "info", "valType": "string" }, "btype": { "description": "If *array*, the heatmap's y coordinates are given by *y* (the default behavior when `y` is provided) If *scaled*, the heatmap's y coordinates are given by *y0* and *dy* (the default behavior when `y` is not provided)", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "enumerated", "values": [ @@ -12011,6 +13991,7 @@ }, "carpet": { "description": "The `carpet` of the carpet axes on which this contour trace lies", + "editType": "calc", "role": "info", "valType": "string" }, @@ -12018,30 +13999,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12056,6 +14046,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -12063,6 +14054,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -12073,6 +14065,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -12080,12 +14073,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -12094,12 +14089,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12112,12 +14109,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12130,6 +14129,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12142,6 +14142,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -12149,6 +14150,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12158,29 +14160,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -12188,6 +14199,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -12196,18 +14208,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -12219,12 +14235,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12236,32 +14254,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -12269,17 +14293,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -12287,6 +14315,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -12295,6 +14324,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12306,6 +14336,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -12314,6 +14345,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12325,6 +14357,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -12332,6 +14365,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -12340,6 +14374,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12351,6 +14386,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -12358,12 +14394,17 @@ }, "colorscale": { "description": "Sets the colorscale. 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 z space, use zmin and zmax", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the `z` data are filled in.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -12371,7 +14412,7 @@ "coloring": { "description": "Determines the coloring method showing the contour values. If *fill*, coloring is done evenly between each contour level If *lines*, coloring is done on the contour lines. If *none*, no coloring is applied on this trace.", "dflt": "fill", - "editType": "docalc", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -12380,23 +14421,28 @@ "none" ] }, + "editType": "calc", "end": { "description": "Sets the end contour level value. Must be more than `contours.start`", "dflt": null, - "editType": "doplot", + "editType": "plot", + "impliedEdits": { + "^autocontour": false + }, "role": "style", "valType": "number" }, "labelfont": { "color": { - "editType": "dostyle", + "editType": "style", "role": "style", "valType": "color" }, "description": "Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", - "editType": "doplot", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -12404,7 +14450,7 @@ }, "role": "object", "size": { - "editType": "doplot", + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -12413,14 +14459,14 @@ "labelformat": { "description": "Sets the contour label formatting rule using d3 formatting mini-language which is very similar to Python, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format.", "dflt": "", - "editType": "doplot", + "editType": "plot", "role": "style", "valType": "string" }, "operation": { "description": "Sets the filter operation. *=* keeps items equal to `value` *<* keeps items less than `value` *<=* keeps items less than or equal to `value` *>* keeps items greater than `value` *>=* keeps items greater than or equal to `value` *[]* keeps items inside `value[0]` to value[1]` including both bounds` *()* keeps items inside `value[0]` to value[1]` excluding both bounds` *[)* keeps items inside `value[0]` to value[1]` including `value[0]` but excluding `value[1] *(]* keeps items inside `value[0]` to value[1]` excluding `value[0]` but including `value[1] *][* keeps items outside `value[0]` to value[1]` and equal to both bounds` *)(* keeps items outside `value[0]` to value[1]` *](* keeps items outside `value[0]` to value[1]` and equal to `value[0]` *)[* keeps items outside `value[0]` to value[1]` and equal to `value[1]`", "dflt": "=", - "editType": "docalc", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -12445,21 +14491,24 @@ "showlabels": { "description": "Determines whether to label the contour lines with their values.", "dflt": false, - "editType": "doplot", + "editType": "plot", "role": "style", "valType": "boolean" }, "showlines": { "description": "Determines whether or not the contour lines are drawn. Has an effect only if `contours.coloring` is set to *fill*.", "dflt": true, - "editType": "doplot", + "editType": "plot", "role": "style", "valType": "boolean" }, "size": { "description": "Sets the step between each contour level. Must be positive.", "dflt": null, - "editType": "doplot", + "editType": "plot", + "impliedEdits": { + "^autocontour": false + }, "min": 0, "role": "style", "valType": "number" @@ -12467,14 +14516,17 @@ "start": { "description": "Sets the starting contour level value. Must be less than `contours.end`", "dflt": null, - "editType": "doplot", + "editType": "plot", + "impliedEdits": { + "^autocontour": false + }, "role": "style", "valType": "number" }, "type": { "description": "If `levels`, the data is represented as a contour plot with multiple levels displayed. If `constraint`, the data is represented as constraints with the invalid region shaded as specified by the `operation` and `value` parameters.", "dflt": "levels", - "editType": "docalc", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -12485,35 +14537,46 @@ "value": { "description": "Sets the value or values by which to filter by. Values are expected to be in the same type as the data linked to *target*. When `operation` is set to one of the inequality values (=,<,>=,>,<=) *value* is expected to be a number or a string. When `operation` is set to one of the interval value ([],(),[),(],][,)(,](,)[) *value* is expected to be 2-item array where the first item is the lower bound and the second item is the upper bound. When `operation`, is set to one of the set value ({},}{) *value* is expected to be an array with as many items as the desired set elements.", "dflt": 0, - "editType": "docalc", + "editType": "calc", "role": "info", "valType": "any" } }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "da": { "description": "Sets the x coordinate step. See `x0` for more info.", "dflt": 1, + "editType": "calc", + "impliedEdits": { + "xtype": "scaled" + }, "role": "info", "valType": "number" }, "db": { "description": "Sets the y coordinate step. See `y0` for more info.", "dflt": 1, + "editType": "calc", + "impliedEdits": { + "ytype": "scaled" + }, "role": "info", "valType": "number" }, "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "calc", "role": "style", "valType": "color" }, @@ -12521,6 +14584,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -12538,6 +14602,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -12545,39 +14610,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -12585,18 +14660,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -12604,12 +14682,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -12617,29 +14697,34 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the color of the contour level. Has no if `contours.coloring` is set to *lines*.", + "editType": "style", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "style", "role": "style", "valType": "string", "values": [ @@ -12651,10 +14736,12 @@ "longdashdot" ] }, + "editType": "plot", "role": "object", "smoothing": { "description": "Sets the amount of smoothing for the contour lines, where *0* corresponds to no smoothing.", "dflt": 1, + "editType": "plot", "max": 1.3, "min": 0, "role": "style", @@ -12663,6 +14750,7 @@ "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -12670,6 +14758,7 @@ }, "mode": { "description": "The mode.", + "editType": "calc", "extras": [ "none" ], @@ -12682,13 +14771,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "ncontours": { "description": "Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is *true* or if `contours.size` is missing.", "dflt": 15, - "editType": "docalc", + "editType": "calc", "min": 1, "role": "style", "valType": "integer" @@ -12696,6 +14786,7 @@ "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -12704,25 +14795,30 @@ "reversescale": { "description": "Reverses the colorscale.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "showscale": { "description": "Determines whether or not a colorbar is displayed for this trace.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -12731,6 +14827,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -12739,29 +14836,34 @@ }, "text": { "description": "Sets the text elements associated with each z value.", + "editType": "calc", "role": "data", "valType": "data_array" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "transpose": { "description": "Transposes the z data.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "type": "contourcarpet", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -12773,40 +14875,54 @@ "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "z": { "description": "Sets the z data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "zauto": { "description": "Determines the whether or not the color domain is computed with respect to the input data.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "zmax": { "description": "Sets the upper bound of color domain.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zmin": { "description": "Sets the lower bound of color domain.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -12821,6 +14937,8 @@ "autocolorscale": { "description": "Determines whether or not the colorscale is picked using the sign of the input z values.", "dflt": false, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, @@ -12828,30 +14946,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12866,6 +14993,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -12873,6 +15001,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -12883,6 +15012,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -12890,12 +15020,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -12904,12 +15036,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12922,12 +15056,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12940,6 +15076,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12952,6 +15089,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -12959,6 +15097,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -12968,29 +15107,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -12998,6 +15146,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -13006,18 +15155,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -13029,12 +15182,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -13046,32 +15201,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -13079,17 +15240,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -13097,6 +15262,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -13105,6 +15271,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -13116,6 +15283,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -13124,6 +15292,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -13135,6 +15304,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -13142,6 +15312,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -13150,6 +15321,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -13161,6 +15333,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -13168,34 +15341,49 @@ }, "colorscale": { "description": "Sets the colorscale. 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 z space, use zmin and zmax", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the `z` data are filled in.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "dx": { "description": "Sets the x coordinate step. See `x0` for more info.", "dflt": 1, + "editType": "calc", + "impliedEdits": { + "xtype": "scaled" + }, "role": "info", "valType": "number" }, "dy": { "description": "Sets the y coordinate step. See `y0` for more info.", "dflt": 1, + "editType": "calc", + "impliedEdits": { + "ytype": "scaled" + }, "role": "info", "valType": "number" }, @@ -13203,6 +15391,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -13220,6 +15409,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -13227,39 +15417,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -13267,18 +15467,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -13286,12 +15489,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -13299,28 +15504,33 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -13329,25 +15539,30 @@ "reversescale": { "description": "Reverses the colorscale.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "showscale": { "description": "Determines whether or not a colorbar is displayed for this trace.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -13356,6 +15571,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -13364,29 +15580,34 @@ }, "text": { "description": "Sets the text elements associated with each z value.", + "editType": "calc", "role": "data", "valType": "data_array" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "transpose": { "description": "Transposes the z data.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "type": "heatmap", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -13397,24 +15618,34 @@ }, "x": { "description": "Sets the x coordinates.", + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "xtype": "array" + }, "role": "data", "valType": "data_array" }, "x0": { "description": "Alternate to `x`. Builds a linear space of x coordinates. Use with `dx` where `x0` is the starting coordinate and `dx` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "xtype": "scaled" + }, "role": "info", "valType": "any" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -13439,17 +15670,20 @@ "xgap": { "description": "Sets the horizontal gap (in pixels) between bricks.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "xtype": { "description": "If *array*, the heatmap's x coordinates are given by *x* (the default behavior when `x` is provided). If *scaled*, the heatmap's x coordinates are given by *x0* and *dx* (the default behavior when `x` is not provided).", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "enumerated", "values": [ @@ -13459,24 +15693,34 @@ }, "y": { "description": "Sets the y coordinates.", + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "ytype": "array" + }, "role": "data", "valType": "data_array" }, "y0": { "description": "Alternate to `y`. Builds a linear space of y coordinates. Use with `dy` where `y0` is the starting coordinate and `dy` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", + "impliedEdits": { + "ytype": "scaled" + }, "role": "info", "valType": "any" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -13501,17 +15745,20 @@ "ygap": { "description": "Sets the vertical gap (in pixels) between bricks.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" }, "ytype": { "description": "If *array*, the heatmap's y coordinates are given by *y* (the default behavior when `y` is provided) If *scaled*, the heatmap's y coordinates are given by *y0* and *dy* (the default behavior when `y` is not provided)", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "enumerated", "values": [ @@ -13521,30 +15768,42 @@ }, "z": { "description": "Sets the z data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "zauto": { "description": "Determines the whether or not the color domain is computed with respect to the input data.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "zmax": { "description": "Sets the upper bound of color domain.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zmin": { "description": "Sets the lower bound of color domain.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zsmooth": { "description": "Picks a smoothing algorithm use to smooth `z` data.", "dflt": false, + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13555,6 +15814,7 @@ }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -13568,6 +15828,8 @@ "autocolorscale": { "description": "Determines whether or not the colorscale is picked using the sign of the input z values.", "dflt": false, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, @@ -13575,30 +15837,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "calc", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13613,6 +15884,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -13620,6 +15892,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -13630,6 +15903,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -13637,12 +15911,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -13651,12 +15927,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13669,12 +15947,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13687,6 +15967,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13699,6 +15980,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -13706,6 +15988,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13715,29 +15998,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "calc", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -13745,6 +16037,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -13753,18 +16046,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -13776,12 +16073,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13793,32 +16092,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -13826,17 +16131,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "calc", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -13844,6 +16153,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -13852,6 +16162,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13863,6 +16174,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -13871,6 +16183,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13882,6 +16195,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -13889,6 +16203,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -13897,6 +16212,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -13908,6 +16224,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -13915,28 +16232,42 @@ }, "colorscale": { "description": "Sets the colorscale. 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 z space, use zmin and zmax", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "dx": { "description": "Sets the x coordinate step. See `x0` for more info.", "dflt": 1, + "editType": "calc", + "impliedEdits": { + "xtype": "scaled" + }, "role": "info", "valType": "number" }, "dy": { "description": "Sets the y coordinate step. See `y0` for more info.", "dflt": 1, + "editType": "calc", + "impliedEdits": { + "ytype": "scaled" + }, "role": "info", "valType": "number" }, @@ -13944,6 +16275,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -13961,6 +16293,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -13968,39 +16301,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -14008,18 +16351,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -14027,12 +16373,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -14040,28 +16388,33 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -14070,25 +16423,30 @@ "reversescale": { "description": "Reverses the colorscale.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "showscale": { "description": "Determines whether or not a colorbar is displayed for this trace.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -14097,6 +16455,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -14105,29 +16464,34 @@ }, "text": { "description": "Sets the text elements associated with each z value.", + "editType": "calc", "role": "data", "valType": "data_array" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "transpose": { "description": "Transposes the z data.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "type": "heatmapgl", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -14138,28 +16502,39 @@ }, "x": { "description": "Sets the x coordinates.", + "editType": "calc", + "impliedEdits": { + "xtype": "array" + }, "role": "data", "valType": "data_array" }, "x0": { "description": "Alternate to `x`. Builds a linear space of x coordinates. Use with `dx` where `x0` is the starting coordinate and `dx` the step.", "dflt": 0, + "editType": "calc", + "impliedEdits": { + "xtype": "scaled" + }, "role": "info", "valType": "any" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "xtype": { "description": "If *array*, the heatmap's x coordinates are given by *x* (the default behavior when `x` is provided). If *scaled*, the heatmap's x coordinates are given by *x0* and *dx* (the default behavior when `x` is not provided).", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -14169,28 +16544,39 @@ }, "y": { "description": "Sets the y coordinates.", + "editType": "calc", + "impliedEdits": { + "ytype": "array" + }, "role": "data", "valType": "data_array" }, "y0": { "description": "Alternate to `y`. Builds a linear space of y coordinates. Use with `dy` where `y0` is the starting coordinate and `dy` the step.", "dflt": 0, + "editType": "calc", + "impliedEdits": { + "ytype": "scaled" + }, "role": "info", "valType": "any" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" }, "ytype": { "description": "If *array*, the heatmap's y coordinates are given by *y* (the default behavior when `y` is provided) If *scaled*, the heatmap's y coordinates are given by *y0* and *dy* (the default behavior when `y` is not provided)", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -14200,29 +16586,41 @@ }, "z": { "description": "Sets the z data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "zauto": { "description": "Determines the whether or not the color domain is computed with respect to the input data.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "zmax": { "description": "Sets the upper bound of color domain.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zmin": { "description": "Sets the lower bound of color domain.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -14236,6 +16634,7 @@ "_deprecated": { "bardir": { "description": "Renamed to `orientation`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -14247,12 +16646,16 @@ "autobinx": { "description": "Determines whether or not the x axis bin attributes are picked by an algorithm. Note that this should be set to false if you want to manually set the number of bins using the attributes in xbins.", "dflt": null, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "autobiny": { "description": "Determines whether or not the y axis bin attributes are picked by an algorithm. Note that this should be set to false if you want to manually set the number of bins using the attributes in ybins.", "dflt": null, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, @@ -14260,6 +16663,7 @@ "currentbin": { "description": "Only applies if cumulative is enabled. Sets whether the current bin is included, excluded, or has half of its value included in the current cumulative value. *include* is the default for compatibility with various other tools, however it introduces a half-bin bias to the results. *exclude* makes the opposite half-bin bias, and *half* removes it.", "dflt": "include", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -14271,6 +16675,7 @@ "direction": { "description": "Only applies if cumulative is enabled. If *increasing* (default) we sum all prior bins, so the result increases from left to right. If *decreasing* we sum later bins so the result decreases from left to right.", "dflt": "increasing", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -14278,9 +16683,11 @@ "decreasing" ] }, + "editType": "calc", "enabled": { "description": "If true, display the cumulative distribution by summing the binned values. Use the `direction` and `centralbin` attributes to tune the accumulation method. Note: in this mode, the *density* `histnorm` settings behave the same as their equivalents without *density*: ** and *density* both rise to the number of data points, and *probability* and *probability density* both rise to the number of sample points.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -14288,11 +16695,13 @@ }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, @@ -14300,70 +16709,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "style", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "style", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "plot", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "style", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -14376,6 +16799,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -14383,17 +16807,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -14403,70 +16830,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "style", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "style", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "plot", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "style", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -14479,6 +16920,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -14486,17 +16928,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -14505,6 +16950,7 @@ "histfunc": { "description": "Specifies the binning function used for this histogram trace. If *count*, the histogram values are computed by counting the number of values lying inside each bin. If *sum*, *avg*, *min*, *max*, the histogram values are computed using the sum, the average, the minimum or the maximum of the values lying inside each bin respectively.", "dflt": "count", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -14518,6 +16964,7 @@ "histnorm": { "description": "Specifies the type of normalization used for this histogram trace. If **, the span of each bar corresponds to the number of occurrences (i.e. the number of data points lying inside the bins). If *percent* / *probability*, the span of each bar corresponds to the percentage / fraction of occurrences with respect to the total number of sample points (here, the sum of all bin HEIGHTS equals 100% / 1). If *density*, the span of each bar corresponds to the number of occurrences in a bin divided by the size of the bin interval (here, the sum of all bin AREAS equals the total number of sample points). If *probability density*, the area of each bar corresponds to the probability that an event will fall into the corresponding bin (here, the sum of all bin AREAS equals 1).", "dflt": "", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -14532,6 +16979,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -14549,6 +16997,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -14556,39 +17005,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -14596,18 +17055,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -14615,12 +17077,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -14628,17 +17092,20 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -14646,30 +17113,43 @@ "autocolorscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, @@ -14677,30 +17157,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -14715,6 +17204,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -14722,6 +17212,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -14732,6 +17223,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -14739,12 +17231,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -14753,12 +17247,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -14771,12 +17267,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -14789,6 +17287,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -14801,6 +17300,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -14808,6 +17308,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -14817,29 +17318,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -14847,6 +17357,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -14855,18 +17366,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -14878,12 +17393,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -14895,32 +17412,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -14928,17 +17451,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -14946,6 +17473,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -14954,6 +17482,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -14965,6 +17494,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -14973,6 +17503,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -14984,6 +17515,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -14991,6 +17523,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -14999,6 +17532,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15010,6 +17544,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -15017,58 +17552,84 @@ }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "line": { "autocolorscale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.line.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.line.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "reversescale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -15077,12 +17638,14 @@ "arrayOk": true, "description": "Sets the width (in px) of the lines bounding the marker points.", "dflt": 0, + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -15090,6 +17653,7 @@ "reversescale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -15097,18 +17661,21 @@ "showscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" } }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "nbinsx": { "description": "Specifies the maximum number of desired bins. This value will be used in an algorithm that will decide the optimal bin size such that the histogram best visualizes the distribution of the data.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -15116,6 +17683,7 @@ "nbinsy": { "description": "Specifies the maximum number of desired bins. This value will be used in an algorithm that will decide the optimal bin size such that the histogram best visualizes the distribution of the data.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -15123,6 +17691,7 @@ "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -15130,6 +17699,7 @@ }, "orientation": { "description": "Sets the orientation of the bars. With *v* (*h*), the value of the each bar spans along the vertical (horizontal).", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "enumerated", "values": [ @@ -15140,13 +17710,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -15155,6 +17728,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -15165,23 +17739,27 @@ "arrayOk": true, "description": "Sets text elements associated with each (x,y) pair. 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) coordinates. If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "histogram", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -15192,32 +17770,51 @@ }, "x": { "description": "Sets the sample data to be binned on the x axis.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xbins": { + "editType": "calc", "end": { "description": "Sets the end value for the x axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobinx": false + }, "role": "style", "valType": "any" }, + "impliedEdits": { + "autobinx": false, + "role": "object" + }, "role": "object", "size": { "description": "Sets the step in-between value each x axis bin.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobinx": false + }, "role": "style", "valType": "any" }, "start": { "description": "Sets the starting value for the x axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobinx": false + }, "role": "style", "valType": "any" } @@ -15225,6 +17822,7 @@ "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -15248,37 +17846,57 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the sample data to be binned on the y axis.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ybins": { + "editType": "calc", "end": { "description": "Sets the end value for the y axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobiny": false + }, "role": "style", "valType": "any" }, + "impliedEdits": { + "autobiny": false, + "role": "object" + }, "role": "object", "size": { "description": "Sets the step in-between value each y axis bin.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobiny": false + }, "role": "style", "valType": "any" }, "start": { "description": "Sets the starting value for the y axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobiny": false + }, "role": "style", "valType": "any" } @@ -15286,6 +17904,7 @@ "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -15309,6 +17928,7 @@ }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" } @@ -15316,6 +17936,7 @@ "layoutAttributes": { "bargap": { "description": "Sets the gap (in plot fraction) between bars of adjacent location coordinates.", + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -15324,6 +17945,7 @@ "bargroupgap": { "description": "Sets the gap (in plot fraction) between bars of the same location coordinate.", "dflt": 0, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -15332,6 +17954,7 @@ "barmode": { "description": "Determines how bars at the same location coordinate are displayed on the graph. With *stack*, the bars are stacked on top of one another With *relative*, the bars are stacked on top of one another, with negative values below the axis, positive values above With *group*, the bars are plotted next to one another centered around the shared location. With *overlay*, the bars are plotted over one another, you might need to an *opacity* to see multiple bars.", "dflt": "group", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -15344,6 +17967,7 @@ "barnorm": { "description": "Sets the normalization for bar traces on the graph. With *fraction*, the value of each bar is divide by the sum of the values at the location coordinate. With *percent*, the results form *fraction* are presented in percents.", "dflt": "", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -15362,18 +17986,24 @@ "autobinx": { "description": "Determines whether or not the x axis bin attributes are picked by an algorithm. Note that this should be set to false if you want to manually set the number of bins using the attributes in xbins.", "dflt": null, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "autobiny": { "description": "Determines whether or not the y axis bin attributes are picked by an algorithm. Note that this should be set to false if you want to manually set the number of bins using the attributes in ybins.", "dflt": null, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "autocolorscale": { "description": "Determines whether or not the colorscale is picked using the sign of the input z values.", "dflt": false, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, @@ -15381,30 +18011,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15419,6 +18058,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -15426,6 +18066,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -15436,6 +18077,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -15443,12 +18085,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -15457,12 +18101,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15475,12 +18121,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15493,6 +18141,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15505,6 +18154,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -15512,6 +18162,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15521,29 +18172,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -15551,6 +18211,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -15559,18 +18220,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -15582,12 +18247,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15599,32 +18266,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -15632,17 +18305,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -15650,6 +18327,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -15658,6 +18336,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15669,6 +18348,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -15677,6 +18357,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15688,6 +18369,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -15695,6 +18377,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -15703,6 +18386,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -15714,6 +18398,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -15721,22 +18406,29 @@ }, "colorscale": { "description": "Sets the colorscale. 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 z space, use zmin and zmax", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "histfunc": { "description": "Specifies the binning function used for this histogram trace. If *count*, the histogram values are computed by counting the number of values lying inside each bin. If *sum*, *avg*, *min*, *max*, the histogram values are computed using the sum, the average, the minimum or the maximum of the values lying inside each bin respectively.", "dflt": "count", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -15750,6 +18442,7 @@ "histnorm": { "description": "Specifies the type of normalization used for this histogram trace. If **, the span of each bar corresponds to the number of occurrences (i.e. the number of data points lying inside the bins). If *percent* / *probability*, the span of each bar corresponds to the percentage / fraction of occurrences with respect to the total number of sample points (here, the sum of all bin HEIGHTS equals 100% / 1). If *density*, the span of each bar corresponds to the number of occurrences in a bin divided by the size of the bin interval (here, the sum of all bin AREAS equals the total number of sample points). If *probability density*, the area of each bar corresponds to the probability that an event will fall into the corresponding bin (here, the sum of all bin AREAS equals 1).", "dflt": "", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -15764,6 +18457,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -15781,6 +18475,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -15788,39 +18483,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -15828,18 +18533,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -15847,12 +18555,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -15860,41 +18570,49 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "marker": { "color": { "description": "Sets the aggregation data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object" }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "nbinsx": { "description": "Specifies the maximum number of desired bins. This value will be used in an algorithm that will decide the optimal bin size such that the histogram best visualizes the distribution of the data.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -15902,6 +18620,7 @@ "nbinsy": { "description": "Specifies the maximum number of desired bins. This value will be used in an algorithm that will decide the optimal bin size such that the histogram best visualizes the distribution of the data.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -15909,6 +18628,7 @@ "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -15917,25 +18637,30 @@ "reversescale": { "description": "Reverses the colorscale.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "showscale": { "description": "Determines whether or not a colorbar is displayed for this trace.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -15944,6 +18669,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -15953,12 +18679,14 @@ "type": "histogram2d", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -15969,32 +18697,51 @@ }, "x": { "description": "Sets the sample data to be binned on the x axis.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xbins": { + "editType": "calc", "end": { "description": "Sets the end value for the x axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobinx": false + }, "role": "style", "valType": "any" }, + "impliedEdits": { + "autobinx": false, + "role": "object" + }, "role": "object", "size": { "description": "Sets the step in-between value each x axis bin.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobinx": false + }, "role": "style", "valType": "any" }, "start": { "description": "Sets the starting value for the x axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobinx": false + }, "role": "style", "valType": "any" } @@ -16002,6 +18749,7 @@ "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -16026,43 +18774,64 @@ "xgap": { "description": "Sets the horizontal gap (in pixels) between bricks.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the sample data to be binned on the y axis.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ybins": { + "editType": "calc", "end": { "description": "Sets the end value for the y axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobiny": false + }, "role": "style", "valType": "any" }, + "impliedEdits": { + "autobiny": false, + "role": "object" + }, "role": "object", "size": { "description": "Sets the step in-between value each y axis bin.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobiny": false + }, "role": "style", "valType": "any" }, "start": { "description": "Sets the starting value for the y axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobiny": false + }, "role": "style", "valType": "any" } @@ -16070,6 +18839,7 @@ "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -16094,41 +18864,55 @@ "ygap": { "description": "Sets the vertical gap (in pixels) between bricks.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "number" }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" }, "z": { "description": "Sets the aggregation data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "zauto": { "description": "Determines the whether or not the color domain is computed with respect to the input data.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "zmax": { "description": "Sets the upper bound of color domain.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zmin": { "description": "Sets the lower bound of color domain.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zsmooth": { "description": "Picks a smoothing algorithm use to smooth `z` data.", "dflt": false, + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -16139,6 +18923,7 @@ }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -16153,25 +18938,32 @@ "autobinx": { "description": "Determines whether or not the x axis bin attributes are picked by an algorithm. Note that this should be set to false if you want to manually set the number of bins using the attributes in xbins.", "dflt": null, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "autobiny": { "description": "Determines whether or not the y axis bin attributes are picked by an algorithm. Note that this should be set to false if you want to manually set the number of bins using the attributes in ybins.", "dflt": null, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "autocolorscale": { "description": "Determines whether or not the colorscale is picked using the sign of the input z values.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "autocontour": { "description": "Determines whether or not the contour level attributes are picked by an algorithm. If *true*, the number of contour levels can be set in `ncontours`. If *false*, set the contour level attributes in `contours`.", "dflt": true, - "editType": "docalc", + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, @@ -16179,30 +18971,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -16217,6 +19018,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -16224,6 +19026,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -16234,6 +19037,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -16241,12 +19045,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -16255,12 +19061,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -16273,12 +19081,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -16291,6 +19101,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -16303,6 +19114,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -16310,6 +19122,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -16319,29 +19132,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -16349,6 +19171,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -16357,18 +19180,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -16380,12 +19207,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -16397,32 +19226,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -16430,17 +19265,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -16448,6 +19287,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -16456,6 +19296,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -16467,6 +19308,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -16475,6 +19317,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -16486,6 +19329,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -16493,6 +19337,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -16501,6 +19346,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -16512,6 +19358,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -16519,6 +19366,10 @@ }, "colorscale": { "description": "Sets the colorscale. 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 z space, use zmin and zmax", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, @@ -16526,7 +19377,7 @@ "coloring": { "description": "Determines the coloring method showing the contour values. If *fill*, coloring is done evenly between each contour level If *heatmap*, a heatmap gradient coloring is applied between each contour level. If *lines*, coloring is done on the contour lines. If *none*, no coloring is applied on this trace.", "dflt": "fill", - "editType": "docalc", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -16536,23 +19387,32 @@ "none" ] }, + "editType": "calc", "end": { "description": "Sets the end contour level value. Must be more than `contours.start`", "dflt": null, - "editType": "doplot", + "editType": "plot", + "impliedEdits": { + "^autocontour": false + }, "role": "style", "valType": "number" }, + "impliedEdits": { + "autocontour": false, + "role": "object" + }, "labelfont": { "color": { - "editType": "dostyle", + "editType": "style", "role": "style", "valType": "color" }, "description": "Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.", + "editType": "plot", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", - "editType": "doplot", + "editType": "plot", "noBlank": true, "role": "style", "strict": true, @@ -16560,7 +19420,7 @@ }, "role": "object", "size": { - "editType": "doplot", + "editType": "plot", "min": 1, "role": "style", "valType": "number" @@ -16569,7 +19429,7 @@ "labelformat": { "description": "Sets the contour label formatting rule using d3 formatting mini-language which is very similar to Python, see: https://github.com/d3/d3-format/blob/master/README.md#locale_format.", "dflt": "", - "editType": "doplot", + "editType": "plot", "role": "style", "valType": "string" }, @@ -16577,21 +19437,24 @@ "showlabels": { "description": "Determines whether to label the contour lines with their values.", "dflt": false, - "editType": "doplot", + "editType": "plot", "role": "style", "valType": "boolean" }, "showlines": { "description": "Determines whether or not the contour lines are drawn. Has an effect only if `contours.coloring` is set to *fill*.", "dflt": true, - "editType": "doplot", + "editType": "plot", "role": "style", "valType": "boolean" }, "size": { "description": "Sets the step between each contour level. Must be positive.", "dflt": null, - "editType": "doplot", + "editType": "plot", + "impliedEdits": { + "^autocontour": false + }, "min": 0, "role": "style", "valType": "number" @@ -16599,24 +19462,30 @@ "start": { "description": "Sets the starting contour level value. Must be less than `contours.end`", "dflt": null, - "editType": "doplot", + "editType": "plot", + "impliedEdits": { + "^autocontour": false + }, "role": "style", "valType": "number" } }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "histfunc": { "description": "Specifies the binning function used for this histogram trace. If *count*, the histogram values are computed by counting the number of values lying inside each bin. If *sum*, *avg*, *min*, *max*, the histogram values are computed using the sum, the average, the minimum or the maximum of the values lying inside each bin respectively.", "dflt": "count", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -16630,6 +19499,7 @@ "histnorm": { "description": "Specifies the type of normalization used for this histogram trace. If **, the span of each bar corresponds to the number of occurrences (i.e. the number of data points lying inside the bins). If *percent* / *probability*, the span of each bar corresponds to the percentage / fraction of occurrences with respect to the total number of sample points (here, the sum of all bin HEIGHTS equals 100% / 1). If *density*, the span of each bar corresponds to the number of occurrences in a bin divided by the size of the bin interval (here, the sum of all bin AREAS equals the total number of sample points). If *probability density*, the area of each bar corresponds to the probability that an event will fall into the corresponding bin (here, the sum of all bin AREAS equals 1).", "dflt": "", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -16644,6 +19514,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -16661,6 +19532,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -16668,39 +19540,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -16708,18 +19590,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -16727,12 +19612,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -16740,29 +19627,34 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the color of the contour level. Has no effect if `contours.coloring` is set to *lines*.", + "editType": "style+colorbars", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "style", "role": "style", "valType": "string", "values": [ @@ -16774,10 +19666,12 @@ "longdashdot" ] }, + "editType": "plot", "role": "object", "smoothing": { "description": "Sets the amount of smoothing for the contour lines, where *0* corresponds to no smoothing.", "dflt": 1, + "editType": "plot", "max": 1.3, "min": 0, "role": "style", @@ -16786,6 +19680,7 @@ "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "style+colorbars", "min": 0, "role": "style", "valType": "number" @@ -16794,24 +19689,29 @@ "marker": { "color": { "description": "Sets the aggregation data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object" }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "nbinsx": { "description": "Specifies the maximum number of desired bins. This value will be used in an algorithm that will decide the optimal bin size such that the histogram best visualizes the distribution of the data.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -16819,6 +19719,7 @@ "nbinsy": { "description": "Specifies the maximum number of desired bins. This value will be used in an algorithm that will decide the optimal bin size such that the histogram best visualizes the distribution of the data.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -16826,7 +19727,7 @@ "ncontours": { "description": "Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is *true* or if `contours.size` is missing.", "dflt": 15, - "editType": "docalc", + "editType": "calc", "min": 1, "role": "style", "valType": "integer" @@ -16834,6 +19735,7 @@ "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -16842,25 +19744,30 @@ "reversescale": { "description": "Reverses the colorscale.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "showscale": { "description": "Determines whether or not a colorbar is displayed for this trace.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -16869,6 +19776,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -16878,12 +19786,14 @@ "type": "histogram2dcontour", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -16894,32 +19804,51 @@ }, "x": { "description": "Sets the sample data to be binned on the x axis.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xbins": { + "editType": "calc", "end": { "description": "Sets the end value for the x axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobinx": false + }, "role": "style", "valType": "any" }, + "impliedEdits": { + "autobinx": false, + "role": "object" + }, "role": "object", "size": { "description": "Sets the step in-between value each x axis bin.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobinx": false + }, "role": "style", "valType": "any" }, "start": { "description": "Sets the starting value for the x axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobinx": false + }, "role": "style", "valType": "any" } @@ -16927,6 +19856,7 @@ "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -16950,37 +19880,57 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the sample data to be binned on the y axis.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ybins": { + "editType": "calc", "end": { "description": "Sets the end value for the y axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobiny": false + }, "role": "style", "valType": "any" }, + "impliedEdits": { + "autobiny": false, + "role": "object" + }, "role": "object", "size": { "description": "Sets the step in-between value each y axis bin.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobiny": false + }, "role": "style", "valType": "any" }, "start": { "description": "Sets the starting value for the y axis bins.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "^autobiny": false + }, "role": "style", "valType": "any" } @@ -16988,6 +19938,7 @@ "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -17011,36 +19962,47 @@ }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" }, "z": { "description": "Sets the aggregation data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "zauto": { "description": "Determines the whether or not the color domain is computed with respect to the input data.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "zmax": { "description": "Sets the upper bound of color domain.", "dflt": null, - "editType": "docalc", + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zmin": { "description": "Sets the lower bound of color domain.", "dflt": null, - "editType": "docalc", + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -17055,35 +20017,49 @@ "alphahull": { "description": "Determines how the mesh surface triangles are derived from the set of vertices (points) represented by the `x`, `y` and `z` arrays, if the `i`, `j`, `k` arrays are not supplied. For general use of `mesh3d` it is preferred that `i`, `j`, `k` are supplied. If *-1*, Delaunay triangulation is used, which is mainly suitable if the mesh is a single, more or less layer surface that is perpendicular to `delaunayaxis`. In case the `delaunayaxis` intersects the mesh surface at more than one point it will result triangles that are very long in the dimension of `delaunayaxis`. If *>0*, the alpha-shape algorithm is used. In this case, the positive `alphahull` value signals the use of the alpha-shape algorithm, _and_ its value acts as the parameter for the mesh fitting. If *0*, the convex-hull algorithm is used. It is suitable for convex bodies or if the intention is to enclose the `x`, `y` and `z` point set into a convex hull.", "dflt": -1, + "editType": "calc", "role": "style", "valType": "number" }, "autocolorscale": { - "description": "Determines whether or not the colorscale is picked using the sign of the input z values.", + "description": "Has an effect only if `color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `colorscale`. 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.", "dflt": false, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { - "description": "Determines the whether or not the color domain is computed with respect to the input data.", + "description": "Has an effect only if `color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { - "description": "Sets the upper bound of color domain.", + "description": "Has an effect only if `color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `color` array index, and if set, `cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { - "description": "Sets the lower bound of color domain.", + "description": "Has an effect only if `color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `color` array index, and if set, `cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "description": "Sets the color of the whole mesh", + "editType": "calc", "role": "style", "valType": "color" }, @@ -17091,30 +20067,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -17129,6 +20114,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -17136,6 +20122,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -17146,6 +20133,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -17153,12 +20141,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -17167,12 +20157,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -17185,12 +20177,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -17203,6 +20197,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -17215,6 +20210,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -17222,6 +20218,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -17231,29 +20228,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -17261,6 +20267,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -17269,18 +20276,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -17292,12 +20303,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -17309,32 +20322,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -17342,17 +20361,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -17360,6 +20383,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -17368,6 +20392,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -17379,6 +20404,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -17387,6 +20413,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -17398,6 +20425,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -17405,6 +20433,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -17413,6 +20442,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -17424,13 +20454,18 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" } }, "colorscale": { - "description": "Sets the colorscale. 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 z space, use zmin and zmax", + "description": "Sets the colorscale and only has an effect if `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 `cmin` and `cmax`. Alternatively, `colorscale` may be a palette name string of the following list: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, @@ -17438,19 +20473,23 @@ "color": { "description": "Sets the color of the contour lines.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, + "editType": "calc", "role": "object", "show": { "description": "Sets whether or not dynamic contours are shown on hover", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width of the contour lines.", "dflt": 2, + "editType": "calc", "max": 16, "min": 1, "role": "style", @@ -17459,17 +20498,20 @@ }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "delaunayaxis": { "description": "Sets the Delaunay axis, which is the axis that is perpendicular to the surface of the Delaunay triangulation. It has an effect if `i`, `j`, `k` are not provided and `alphahull` is set to indicate Delaunay triangulation.", "dflt": "z", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -17480,17 +20522,20 @@ }, "facecolor": { "description": "Sets the color of each face Overrides *color* and *vertexcolor*.", + "editType": "calc", "role": "data", "valType": "data_array" }, "facecolorsrc": { "description": "Sets the source reference on plot.ly for facecolor .", + "editType": "none", "role": "info", "valType": "string" }, "flatshading": { "description": "Determines whether or not normal smoothing is applied to the meshes, creating meshes with an angular, low-poly look via flat reflections.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -17498,6 +20543,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -17515,6 +20561,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -17522,39 +20569,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -17562,18 +20619,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -17581,12 +20641,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -17594,57 +20656,68 @@ }, "i": { "description": "A vector of vertex indices, i.e. integer values between 0 and the length of the vertex vectors, representing the *first* vertex of a triangle. For example, `{i[m], j[m], k[m]}` together represent face m (triangle m) in the mesh, where `i[m] = n` points to the triplet `{x[n], y[n], z[n]}` in the vertex arrays. Therefore, each element in `i` represents a point in space, which is the first vertex of a triangle.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "intensity": { "description": "Sets the vertex intensity values, used for plotting fields on meshes", + "editType": "calc", "role": "data", "valType": "data_array" }, "intensitysrc": { "description": "Sets the source reference on plot.ly for intensity .", + "editType": "none", "role": "info", "valType": "string" }, "isrc": { "description": "Sets the source reference on plot.ly for i .", + "editType": "none", "role": "info", "valType": "string" }, "j": { "description": "A vector of vertex indices, i.e. integer values between 0 and the length of the vertex vectors, representing the *second* vertex of a triangle. For example, `{i[m], j[m], k[m]}` together represent face m (triangle m) in the mesh, where `j[m] = n` points to the triplet `{x[n], y[n], z[n]}` in the vertex arrays. Therefore, each element in `j` represents a point in space, which is the second vertex of a triangle.", + "editType": "calc", "role": "data", "valType": "data_array" }, "jsrc": { "description": "Sets the source reference on plot.ly for j .", + "editType": "none", "role": "info", "valType": "string" }, "k": { "description": "A vector of vertex indices, i.e. integer values between 0 and the length of the vertex vectors, representing the *third* vertex of a triangle. For example, `{i[m], j[m], k[m]}` together represent face m (triangle m) in the mesh, where `k[m] = n` points to the triplet `{x[n], y[n], z[n]}` in the vertex arrays. Therefore, each element in `k` represents a point in space, which is the third vertex of a triangle.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ksrc": { "description": "Sets the source reference on plot.ly for k .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -17652,6 +20725,7 @@ "ambient": { "description": "Ambient light increases overall color visibility but can wash out the image.", "dflt": 0.8, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -17660,14 +20734,17 @@ "diffuse": { "description": "Represents the extent that incident rays are reflected in a range of angles.", "dflt": 0.8, + "editType": "calc", "max": 1, "min": 0, "role": "style", "valType": "number" }, + "editType": "calc", "facenormalsepsilon": { "description": "Epsilon for face normals calculation avoids math issues arising from degenerate geometry.", "dflt": 1e-06, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -17676,6 +20753,7 @@ "fresnel": { "description": "Represents the reflectance as a dependency of the viewing angle; e.g. paper is reflective when viewing it from the edge of the paper (almost 90 degrees), causing shine.", "dflt": 0.2, + "editType": "calc", "max": 5, "min": 0, "role": "style", @@ -17685,6 +20763,7 @@ "roughness": { "description": "Alters specular reflection; the rougher the surface, the wider and less contrasty the shine.", "dflt": 0.5, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -17693,6 +20772,7 @@ "specular": { "description": "Represents the level that incident rays are reflected in a single direction, causing shine.", "dflt": 0.05, + "editType": "calc", "max": 2, "min": 0, "role": "style", @@ -17701,6 +20781,7 @@ "vertexnormalsepsilon": { "description": "Epsilon for vertex normals calculation avoids math issues arising from degenerate geometry.", "dflt": 1e-12, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -17708,10 +20789,12 @@ } }, "lightposition": { + "editType": "calc", "role": "object", "x": { "description": "Numeric vector, representing the X coordinate for each vertex.", "dflt": 100000, + "editType": "calc", "max": 100000, "min": -100000, "role": "style", @@ -17720,6 +20803,7 @@ "y": { "description": "Numeric vector, representing the Y coordinate for each vertex.", "dflt": 100000, + "editType": "calc", "max": 100000, "min": -100000, "role": "style", @@ -17728,6 +20812,7 @@ "z": { "description": "Numeric vector, representing the Z coordinate for each vertex.", "dflt": 0, + "editType": "calc", "max": 100000, "min": -100000, "role": "style", @@ -17736,45 +20821,53 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the surface.", "dflt": 1, + "editType": "calc", "max": 1, "min": 0, "role": "style", "valType": "number" }, "reversescale": { - "description": "Reverses the colorscale.", + "description": "Has an effect only if `color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "scene": { "description": "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.", "dflt": "scene", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "showscale": { "description": "Determines whether or not a colorbar is displayed for this trace.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -17783,6 +20876,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -17792,22 +20886,26 @@ "type": "mesh3d", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "vertexcolor": { "description": "Sets the color of each vertex Overrides *color*.", + "editType": "calc", "role": "data", "valType": "data_array" }, "vertexcolorsrc": { "description": "Sets the source reference on plot.ly for vertexcolor .", + "editType": "none", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -17818,12 +20916,14 @@ }, "x": { "description": "Sets the X coordinates of the vertices. The nth element of vectors `x`, `y` and `z` jointly represent the X, Y and Z coordinates of the nth vertex.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -17847,17 +20947,20 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the Y coordinates of the vertices. The nth element of vectors `x`, `y` and `z` jointly represent the X, Y and Z coordinates of the nth vertex.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -17881,17 +20984,20 @@ }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" }, "z": { "description": "Sets the Z coordinates of the vertices. The nth element of vectors `x`, `y` and `z` jointly represent the X, Y and Z coordinates of the nth vertex.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "zcalendar": { "description": "Sets the calendar system to use with `z` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -17915,6 +21021,7 @@ }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -17928,35 +21035,42 @@ "close": { "description": "Sets the close values.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "closesrc": { "description": "Sets the source reference on plot.ly for close .", + "editType": "none", "role": "info", "valType": "string" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "decreasing": { + "editType": "style", "line": { "color": { "description": "Sets the line color.", "dflt": "#FF4136", + "editType": "style", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "style", "role": "style", "valType": "string", "values": [ @@ -17968,10 +21082,12 @@ "longdashdot" ] }, + "editType": "style", "role": "object", "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -17979,6 +21095,7 @@ }, "name": { "description": "Sets the segment name. The segment name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, @@ -17986,6 +21103,7 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this segment is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" } @@ -17993,11 +21111,13 @@ "high": { "description": "Sets the high values.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "highsrc": { "description": "Sets the source reference on plot.ly for high .", + "editType": "none", "role": "info", "valType": "string" }, @@ -18005,6 +21125,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -18022,6 +21143,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -18029,39 +21151,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -18069,18 +21201,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -18088,12 +21223,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -18101,25 +21238,30 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "increasing": { + "editType": "style", "line": { "color": { "description": "Sets the line color.", "dflt": "#3D9970", + "editType": "style", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "style", "role": "style", "valType": "string", "values": [ @@ -18131,10 +21273,12 @@ "longdashdot" ] }, + "editType": "style", "role": "object", "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -18142,6 +21286,7 @@ }, "name": { "description": "Sets the segment name. The segment name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, @@ -18149,6 +21294,7 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this segment is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" } @@ -18156,6 +21302,7 @@ "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -18163,6 +21310,7 @@ "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*). Note that this style setting can also be set per direction via `increasing.line.dash` and `decreasing.line.dash`.", "dflt": "solid", + "editType": "style", "role": "style", "valType": "string", "values": [ @@ -18174,10 +21322,12 @@ "longdashdot" ] }, + "editType": "style", "role": "object", "width": { "description": "[object Object] Note that this style setting can also be set per direction via `increasing.line.width` and `decreasing.line.width`.", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -18186,22 +21336,26 @@ "low": { "description": "Sets the low values.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "lowsrc": { "description": "Sets the source reference on plot.ly for low .", + "editType": "none", "role": "info", "valType": "string" }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -18210,24 +21364,29 @@ "open": { "description": "Sets the open values.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "opensrc": { "description": "Sets the source reference on plot.ly for open .", + "editType": "none", "role": "info", "valType": "string" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -18236,6 +21395,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -18246,17 +21406,20 @@ "arrayOk": true, "description": "Sets hover text elements associated with each sample point. 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 this trace's sample points.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the width of the open/close tick marks relative to the *x* minimal interval.", "dflt": 0.3, + "editType": "calcIfAutorange", "max": 0.5, "min": 0, "role": "style", @@ -18265,12 +21428,14 @@ "type": "ohlc", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -18281,18 +21446,21 @@ }, "x": { "description": "Sets the x coordinates. If absent, linear coordinate will be generated.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -18316,12 +21484,14 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" } @@ -18334,11 +21504,13 @@ "attributes": { "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, @@ -18347,11 +21519,14 @@ "dimension": { "constraintrange": { "description": "The domain range to which the filter on the dimension is constrained. Must be an array of `[fromValue, toValue]` with finite numbers as elements.", + "editType": "calc", "items": [ { + "editType": "calc", "valType": "number" }, { + "editType": "calc", "valType": "number" } ], @@ -18359,18 +21534,23 @@ "valType": "info_array" }, "description": "The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported.", + "editType": "calc", "label": { "description": "The shown name of the dimension.", + "editType": "calc", "role": "info", "valType": "string" }, "range": { "description": "The domain range that represents the full, shown axis extent. Defaults to the `values` extent. Must be an array of `[fromValue, toValue]` with finite numbers as elements.", + "editType": "calc", "items": [ { + "editType": "calc", "valType": "number" }, { + "editType": "calc", "valType": "number" } ], @@ -18381,43 +21561,51 @@ "tickformat": { "description": "Sets the tick label formatting rule using d3 formatting mini-language which is similar to those of Python. See https://github.com/d3/d3-format/blob/master/README.md#locale_format", "dflt": "3s", + "editType": "calc", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "values": { "description": "Dimension values. `values[n]` represents the value of the `n`th point in the dataset, therefore the `values` vector for all dimensions must be the same (longer vectors will be truncated). Each value must be a finite number.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "valuessrc": { "description": "Sets the source reference on plot.ly for values .", + "editType": "none", "role": "info", "valType": "string" }, "visible": { "description": "Shows the dimension when set to `true` (the default). Hides the dimension for `false`.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" } @@ -18426,6 +21614,7 @@ "role": "object" }, "domain": { + "editType": "calc", "role": "object", "x": { "description": "Sets the horizontal domain of this `parcoords` trace (in plot fraction).", @@ -18433,13 +21622,16 @@ 0, 1 ], + "editType": "calc", "items": [ { + "editType": "calc", "max": 1, "min": 0, "valType": "number" }, { + "editType": "calc", "max": 1, "min": 0, "valType": "number" @@ -18454,13 +21646,16 @@ 0, 1 ], + "editType": "calc", "items": [ { + "editType": "calc", "max": 1, "min": 0, "valType": "number" }, { + "editType": "calc", "max": 1, "min": 0, "valType": "number" @@ -18474,6 +21669,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -18491,6 +21687,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -18498,39 +21695,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -18538,18 +21745,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -18557,12 +21767,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -18570,22 +21782,27 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "labelfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets the font for the `dimension` labels.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -18593,6 +21810,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -18601,6 +21819,7 @@ "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -18608,30 +21827,43 @@ "autocolorscale": { "description": "Has an effect only if line.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `line.colorscale`. 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. The default value is false, so that `parcoords` colorscale can default to `Viridis`.", "dflt": false, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `line.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `line.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `line.color` array index, and if set, `line.cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `line.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `line.color` array index, and if set, `line.cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, @@ -18639,30 +21871,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -18677,6 +21918,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -18684,6 +21926,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -18694,6 +21937,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -18701,12 +21945,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -18715,12 +21961,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -18733,12 +21981,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -18751,6 +22001,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -18763,6 +22014,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -18770,6 +22022,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -18779,29 +22032,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -18809,6 +22071,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -18817,18 +22080,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -18840,12 +22107,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -18857,32 +22126,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -18890,17 +22165,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -18908,6 +22187,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -18916,6 +22196,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -18927,6 +22208,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -18935,6 +22217,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -18946,6 +22229,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -18953,6 +22237,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -18961,6 +22246,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -18972,6 +22258,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -19049,17 +22336,24 @@ "#fde725" ] ], + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "reversescale": { "description": "Has an effect only if `line.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -19067,18 +22361,21 @@ "showscale": { "description": "Has an effect only if `line.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" } }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -19086,12 +22383,15 @@ }, "rangefont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets the font for the `dimension` range values.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -19099,6 +22399,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -19107,13 +22408,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -19122,6 +22426,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -19130,12 +22435,15 @@ }, "tickfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets the font for the `dimension` tick values.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -19143,6 +22451,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -19151,12 +22460,14 @@ "type": "parcoords", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -19174,17 +22485,20 @@ "attributes": { "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "direction": { "description": "Specifies the direction at which succeeding sectors follow one another.", "dflt": "counterclockwise", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -19195,10 +22509,12 @@ "dlabel": { "description": "Sets the label step. See `label0` for more info.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, "domain": { + "editType": "calc", "role": "object", "x": { "description": "Sets the horizontal domain of this pie trace (in plot fraction).", @@ -19206,13 +22522,16 @@ 0, 1 ], + "editType": "calc", "items": [ { + "editType": "calc", "max": 1, "min": 0, "valType": "number" }, { + "editType": "calc", "max": 1, "min": 0, "valType": "number" @@ -19227,13 +22546,16 @@ 0, 1 ], + "editType": "calc", "items": [ { + "editType": "calc", "max": 1, "min": 0, "valType": "number" }, { + "editType": "calc", "max": 1, "min": 0, "valType": "number" @@ -19246,6 +22568,7 @@ "hole": { "description": "Sets the fraction of the radius to cut out of the pie. Use this to make a donut chart.", "dflt": 0, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -19255,6 +22578,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -19272,6 +22596,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -19279,39 +22604,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -19319,18 +22654,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -19338,12 +22676,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -19353,32 +22693,39 @@ "arrayOk": true, "description": "Sets hover text elements associated with each sector. If a single string, the same string appears for all data points. If an array of string, the items are mapped in order of this trace's sectors. To be seen, trace `hoverinfo` must contain a *text* flag.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "hovertextsrc": { "description": "Sets the source reference on plot.ly for hovertext .", + "editType": "none", "role": "info", "valType": "string" }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "insidetextfont": { "color": { + "editType": "style", "role": "style", "valType": "color" }, "description": "Sets the font used for `textinfo` lying inside the pie.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -19386,6 +22733,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -19394,60 +22742,72 @@ "label0": { "description": "Alternate to `labels`. Builds a numeric set of labels. Use with `dlabel` where `label0` is the starting label and `dlabel` the step.", "dflt": 0, + "editType": "calc", "role": "info", "valType": "number" }, "labels": { "description": "Sets the sector labels.", + "editType": "calc", "role": "data", "valType": "data_array" }, "labelssrc": { "description": "Sets the source reference on plot.ly for labels .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "marker": { "colors": { "description": "Sets the color of each sector of this pie chart. If not specified, the default trace color set is used to pick the sector colors.", + "editType": "calc", "role": "data", "valType": "data_array" }, "colorssrc": { "description": "Sets the source reference on plot.ly for colors .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "line": { "color": { "arrayOk": true, "description": "Sets the color of the line enclosing each sector.", "dflt": "#444", + "editType": "style", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object", "width": { "arrayOk": true, "description": "Sets the width (in px) of the line enclosing each sector.", "dflt": 0, + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -19456,12 +22816,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -19469,12 +22831,15 @@ }, "outsidetextfont": { "color": { + "editType": "style", "role": "style", "valType": "color" }, "description": "Sets the font used for `textinfo` lying outside the pie.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -19482,6 +22847,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -19491,6 +22857,7 @@ "arrayOk": true, "description": "Sets the fraction of larger radius to pull the sectors out from the center. This can be a constant to pull all slices apart from each other equally or an array to highlight one or more slices.", "dflt": 0, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -19498,12 +22865,14 @@ }, "pullsrc": { "description": "Sets the source reference on plot.ly for pull .", + "editType": "none", "role": "info", "valType": "string" }, "rotation": { "description": "Instead of the first slice starting at 12 o'clock, rotate to some other angle.", "dflt": 0, + "editType": "calc", "max": 360, "min": -360, "role": "style", @@ -19512,25 +22881,30 @@ "scalegroup": { "description": "If there are multiple pies that should be sized according to their totals, link them by providing a non-empty group id here shared by every trace in the same group.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "sort": { "description": "Determines whether or not the sectors are reordered from largest to smallest.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -19539,6 +22913,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -19547,17 +22922,21 @@ }, "text": { "description": "Sets text elements associated with each sector. If trace `textinfo` contains a *text* flag, these elements will seen on the chart. If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", + "editType": "calc", "role": "data", "valType": "data_array" }, "textfont": { "color": { + "editType": "style", "role": "style", "valType": "color" }, "description": "Sets the font used for `textinfo`.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -19565,6 +22944,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -19572,6 +22952,7 @@ }, "textinfo": { "description": "Determines which trace information appear on the graph.", + "editType": "calc", "extras": [ "none" ], @@ -19588,6 +22969,7 @@ "arrayOk": true, "description": "Specifies the location of the `textinfo`.", "dflt": "auto", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -19599,33 +22981,39 @@ }, "textpositionsrc": { "description": "Sets the source reference on plot.ly for textposition .", + "editType": "none", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "pie", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "values": { "description": "Sets the values of the sectors of this pie chart.", + "editType": "calc", "role": "data", "valType": "data_array" }, "valuessrc": { "description": "Sets the source reference on plot.ly for values .", + "editType": "none", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -19637,11 +23025,13 @@ }, "layoutAttributes": { "hiddenlabels": { + "editType": "calc", "role": "data", "valType": "data_array" }, "hiddenlabelssrc": { "description": "Sets the source reference on plot.ly for hiddenlabels .", + "editType": "none", "role": "info", "valType": "string" } @@ -19654,11 +23044,13 @@ "attributes": { "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, @@ -19666,6 +23058,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -19683,6 +23076,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -19690,39 +23084,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -19730,18 +23134,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -19749,12 +23156,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -19762,27 +23171,32 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "indices": { "description": "A sequential value, 0..n, supply it to avoid creating this array inside plotting. If specified, it must be a typed `Int32Array` array. Its length must be equal to or greater than the number of points. For the best performance and memory use, create one large `indices` typed array that is guaranteed to be at least as long as the largest number of points during use, and reuse it on each `Plotly.restyle()` call.", + "editType": "calc", "role": "data", "valType": "data_array" }, "indicessrc": { "description": "Sets the source reference on plot.ly for indices .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -19790,6 +23204,7 @@ "blend": { "description": "Determines if colors are blended together for a translucency effect in case `opacity` is specified as a value less then `1`. Setting `blend` to `true` reduces zoom/pan speed if used with large numbers of points.", "dflt": null, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -19797,6 +23212,7 @@ "arearatio": { "description": "Specifies what fraction of the marker area is covered with the border.", "dflt": 0, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -19805,21 +23221,26 @@ "color": { "arrayOk": false, "description": "Sets the stroke color. It accepts a specific color. If the color is not fully opaque and there are hundreds of thousands of points, it may cause slower zooming and panning.", + "editType": "calc", "role": "style", "valType": "color" }, + "editType": "calc", "role": "object" }, "color": { "arrayOk": false, "description": "Sets the marker fill color. It accepts a specific color.If the color is not fully opaque and there are hundreds of thousandsof points, it may cause slower zooming and panning.", + "editType": "calc", "role": "style", "valType": "color" }, + "editType": "calc", "opacity": { "arrayOk": false, "description": "Sets the marker opacity. The default value is `1` (fully opaque). If the markers are not fully opaque and there are hundreds of thousands of points, it may cause slower zooming and panning. Opacity fades the color even if `blend` is left on `false` even if there is no translucency effect in that case.", "dflt": 1, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -19829,6 +23250,7 @@ "sizemax": { "description": "Sets the maximum size (in px) of the rendered marker points. Effective when the `pointcloud` shows only few points.", "dflt": 20, + "editType": "calc", "min": 0.1, "role": "style", "valType": "number" @@ -19836,6 +23258,7 @@ "sizemin": { "description": "Sets the minimum size (in px) of the rendered marker points, effective when the `pointcloud` shows a million or more points.", "dflt": 0.5, + "editType": "calc", "max": 2, "min": 0.1, "role": "style", @@ -19844,12 +23267,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -19858,13 +23283,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -19873,6 +23301,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -19883,23 +23312,27 @@ "arrayOk": true, "description": "Sets text elements associated with each (x,y) pair to appear on hover. 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) coordinates.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "pointcloud", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -19910,63 +23343,75 @@ }, "x": { "description": "Sets the x coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xbounds": { "description": "Specify `xbounds` in the shape of `[xMin, xMax] to avoid looping through the `xy` typed array. Use it in conjunction with `xy` and `ybounds` for the performance benefits.", + "editType": "calc", "role": "data", "valType": "data_array" }, "xboundssrc": { "description": "Sets the source reference on plot.ly for xbounds .", + "editType": "none", "role": "info", "valType": "string" }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "xy": { "description": "Faster alternative to specifying `x` and `y` separately. If supplied, it must be a typed `Float32Array` array that represents points such that `xy[i * 2] = x[i]` and `xy[i * 2 + 1] = y[i]`", + "editType": "calc", "role": "data", "valType": "data_array" }, "xysrc": { "description": "Sets the source reference on plot.ly for xy .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the y coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ybounds": { "description": "Specify `ybounds` in the shape of `[yMin, yMax] to avoid looping through the `xy` typed array. Use it in conjunction with `xy` and `xbounds` for the performance benefits.", + "editType": "calc", "role": "data", "valType": "data_array" }, "yboundssrc": { "description": "Sets the source reference on plot.ly for ybounds .", + "editType": "none", "role": "info", "valType": "string" }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" } @@ -19980,6 +23425,7 @@ "arrangement": { "description": "If value is `snap` (the default), the node arrangement is assisted by automatic snapping of elements to preserve space between nodes specified via `nodepad`. If value is `perpendicular`, the nodes can only move along a line perpendicular to the flow. If value is `freeform`, the nodes can freely move on the plane. If value is `fixed`, the nodes are stationary.", "dflt": "snap", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -19991,15 +23437,18 @@ }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "domain": { + "editType": "calc", "role": "object", "x": { "description": "Sets the horizontal domain of this `sankey` trace (in plot fraction).", @@ -20007,13 +23456,16 @@ 0, 1 ], + "editType": "calc", "items": [ { + "editType": "calc", "max": 1, "min": 0, "valType": "number" }, { + "editType": "calc", "max": 1, "min": 0, "valType": "number" @@ -20028,13 +23480,16 @@ 0, 1 ], + "editType": "calc", "items": [ { + "editType": "calc", "max": 1, "min": 0, "valType": "number" }, { + "editType": "calc", "max": 1, "min": 0, "valType": "number" @@ -20048,6 +23503,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "calc", "extras": [ "all", "none", @@ -20065,6 +23521,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -20072,39 +23529,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "calc", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "calc", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -20112,18 +23579,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -20131,12 +23601,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "calc", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -20144,17 +23616,20 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -20162,24 +23637,28 @@ "color": { "arrayOk": true, "description": "Sets the `link` color. It can be a single value, or an array for specifying color for each `link`. If `link.color` is omitted, then by default, a translucent grey link will be used.", - "dflt": "rgba(0,0,0,0)", - "role": "info", + "editType": "calc", + "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "The links of the Sankey plot.", + "editType": "calc", "label": { "description": "The shown name of the link.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "labelsrc": { "description": "Sets the source reference on plot.ly for label .", + "editType": "none", "role": "info", "valType": "string" }, @@ -20188,25 +23667,30 @@ "arrayOk": true, "description": "Sets the color of the `line` around each `link`.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object", "width": { "arrayOk": true, "description": "Sets the width (in px) of the `line` around each `link`.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -20215,39 +23699,46 @@ "source": { "description": "An integer number `[0..nodes.length - 1]` that represents the source node.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "sourcesrc": { "description": "Sets the source reference on plot.ly for source .", + "editType": "none", "role": "info", "valType": "string" }, "target": { "description": "An integer number `[0..nodes.length - 1]` that represents the target node.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "targetsrc": { "description": "Sets the source reference on plot.ly for target .", + "editType": "none", "role": "info", "valType": "string" }, "value": { "description": "A numeric value representing the flow volume value.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "valuesrc": { "description": "Sets the source reference on plot.ly for value .", + "editType": "none", "role": "info", "valType": "string" } }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, @@ -20255,24 +23746,28 @@ "color": { "arrayOk": true, "description": "Sets the `node` color. It can be a single value, or an array for specifying color for each `node`. If `node.color` is omitted, then the default `Plotly` color palette will be cycled through to have a variety of colors. These defaults are not fully opaque, to allow some visibility of what is beneath the node.", - "dflt": "rgba(0,0,0,0)", - "role": "info", + "editType": "calc", + "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "The nodes of the Sankey plot.", + "editType": "calc", "label": { "description": "The shown name of the node.", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "labelsrc": { "description": "Sets the source reference on plot.ly for label .", + "editType": "none", "role": "info", "valType": "string" }, @@ -20281,25 +23776,30 @@ "arrayOk": true, "description": "Sets the color of the `line` around each `node`.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object", "width": { "arrayOk": true, "description": "Sets the width (in px) of the `line` around each `node`.", "dflt": 0.5, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -20308,6 +23808,7 @@ "arrayOk": false, "description": "Sets the padding (in px) between the `nodes`.", "dflt": 20, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -20317,6 +23818,7 @@ "arrayOk": false, "description": "Sets the thickness (in px) of the `nodes`.", "dflt": 20, + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -20325,6 +23827,7 @@ "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -20333,6 +23836,7 @@ "orientation": { "description": "Sets the orientation of the Sankey diagram.", "dflt": "h", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -20343,13 +23847,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -20358,6 +23865,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -20366,11 +23874,15 @@ }, "textfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, + "description": "Sets the font for node labels", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -20378,6 +23890,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -20386,24 +23899,28 @@ "type": "sankey", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "valueformat": { "description": "Sets the value formatting rule using d3 formatting mini-language which is similar to those of Python. See https://github.com/d3/d3-format/blob/master/README.md#locale_format", "dflt": ".3s", + "editType": "calc", "role": "style", "valType": "string" }, "valuesuffix": { "description": "Adds a unit to follow the value in the hover tooltip. Add a space if a separation is necessary from the value.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -20422,35 +23939,40 @@ "cliponaxis": { "description": "Determines whether or not markers and text nodes are clipped about the subplot axes. To show markers and text nodes above axis lines and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*.", "dflt": true, - "editType": "doplot", + "editType": "plot", "role": "info", "valType": "boolean" }, "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "dx": { "description": "Sets the x coordinate step. See `x0` for more info.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, "dy": { "description": "Sets the y coordinate step. See `y0` for more info.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, @@ -20458,70 +23980,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "style", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "style", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "plot", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "style", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -20534,6 +24070,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -20541,17 +24078,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -20561,70 +24101,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "style", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "style", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "plot", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "style", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "style", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -20637,6 +24191,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -20644,17 +24199,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -20663,6 +24221,7 @@ "fill": { "description": "Sets the area to fill with a solid color. Use with `fillcolor` if not *none*. *tozerox* and *tozeroy* fill to x=0 and y=0 respectively. *tonextx* and *tonexty* fill between the endpoints of this trace and the endpoints of the trace before it, connecting those endpoints with straight lines (to make a stacked area graph); if there is no trace before it, they behave like *tozerox* and *tozeroy*. *toself* connects the endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape. *tonext* fills the space between two traces if one completely encloses the other (eg consecutive contour lines), and behaves like *toself* if there is no trace before it. *tonext* should not be used if one trace does not enclose the other.", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -20677,6 +24236,7 @@ }, "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "style", "role": "style", "valType": "color" }, @@ -20684,6 +24244,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -20701,6 +24262,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -20708,39 +24270,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -20748,18 +24320,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -20767,12 +24342,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -20780,6 +24357,7 @@ }, "hoveron": { "description": "Do the hover effects highlight individual points (markers or line points) or do they highlight filled regions? If the fill is *toself* or *tonext* and there are no markers or text, then the default is *fills*, otherwise it is *points*.", + "editType": "style", "flags": [ "points", "fills" @@ -20791,39 +24369,46 @@ "arrayOk": true, "description": "Sets hover text elements associated with each (x,y) pair. 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) coordinates. To be seen, trace `hoverinfo` must contain a *text* flag.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "hovertextsrc": { "description": "Sets the source reference on plot.ly for hovertext .", + "editType": "none", "role": "info", "valType": "string" }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the line color.", + "editType": "style", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "style", "role": "style", "valType": "string", "values": [ @@ -20835,10 +24420,12 @@ "longdashdot" ] }, + "editType": "plot", "role": "object", "shape": { "description": "Determines the line shape. With *spline* the lines are drawn using spline interpolation. The other available values correspond to step-wise line shapes.", "dflt": "linear", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -20853,12 +24440,14 @@ "simplify": { "description": "Simplifies lines by removing nearly-collinear points. When transitioning lines, it may be desirable to disable this so that the number of points along the resulting SVG path is unaffected.", "dflt": true, + "editType": "plot", "role": "info", "valType": "boolean" }, "smoothing": { "description": "Has an effect only if `shape` is set to *spline* Sets the amount of smoothing. *0* corresponds to no smoothing (equivalent to a *linear* shape).", "dflt": 1, + "editType": "plot", "max": 1.3, "min": 0, "role": "style", @@ -20867,6 +24456,7 @@ "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -20876,30 +24466,43 @@ "autocolorscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, @@ -20907,30 +24510,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -20945,6 +24557,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -20952,6 +24565,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -20962,6 +24576,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -20969,12 +24584,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -20983,12 +24600,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -21001,12 +24620,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -21019,6 +24640,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -21031,6 +24653,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -21038,6 +24661,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -21047,29 +24671,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -21077,6 +24710,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -21085,18 +24719,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -21108,12 +24746,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -21125,32 +24765,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -21158,17 +24804,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -21176,6 +24826,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -21184,6 +24835,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -21195,6 +24847,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -21203,6 +24856,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -21214,6 +24868,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -21221,6 +24876,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -21229,6 +24885,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -21240,6 +24897,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -21247,31 +24905,41 @@ }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "gradient": { "color": { "arrayOk": true, "description": "Sets the final color of the gradient fill: the center color for radial, the right for horizontal, or the bottom for vertical.", + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object", "type": { "arrayOk": true, "description": "Sets the type of gradient used to fill the markers", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -21283,6 +24951,7 @@ }, "typesrc": { "description": "Sets the source reference on plot.ly for type .", + "editType": "none", "role": "info", "valType": "string" } @@ -21291,46 +24960,66 @@ "autocolorscale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.line.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.line.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "reversescale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -21338,12 +25027,14 @@ "width": { "arrayOk": true, "description": "Sets the width (in px) of the lines bounding the marker points.", + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -21351,6 +25042,7 @@ "maxdisplayed": { "description": "Sets a maximum number of points to be drawn on the graph. *0* corresponds to no limit.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -21358,6 +25050,7 @@ "opacity": { "arrayOk": true, "description": "Sets the marker opacity.", + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -21365,12 +25058,14 @@ }, "opacitysrc": { "description": "Sets the source reference on plot.ly for opacity .", + "editType": "none", "role": "info", "valType": "string" }, "reversescale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -21378,6 +25073,7 @@ "showscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -21385,6 +25081,7 @@ "arrayOk": true, "description": "Sets the marker size (in px).", "dflt": 6, + "editType": "calcIfAutorange", "min": 0, "role": "style", "valType": "number" @@ -21392,6 +25089,7 @@ "sizemin": { "description": "Has an effect only if `marker.size` is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -21399,6 +25097,7 @@ "sizemode": { "description": "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.", "dflt": "diameter", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -21409,11 +25108,13 @@ "sizeref": { "description": "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`.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" }, @@ -21421,6 +25122,7 @@ "arrayOk": true, "description": "Sets the marker symbol type. Adding 100 is equivalent to appending *-open* to a symbol name. Adding 200 is equivalent to appending *-dot* to a symbol name. Adding 300 is equivalent to appending *-open-dot* or *dot-open* to a symbol name.", "dflt": "circle", + "editType": "style", "role": "style", "valType": "enumerated", "values": [ @@ -21712,12 +25414,14 @@ }, "symbolsrc": { "description": "Sets the source reference on plot.ly for symbol .", + "editType": "none", "role": "info", "valType": "string" } }, "mode": { "description": "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, then the default is *lines+markers*. Otherwise, *lines*.", + "editType": "calc", "extras": [ "none" ], @@ -21731,12 +25435,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -21744,24 +25450,29 @@ }, "r": { "description": "For polar chart only.Sets the radial coordinates.", + "editType": "calc", "role": "data", "valType": "data_array" }, "rsrc": { "description": "Sets the source reference on plot.ly for r .", + "editType": "none", "role": "info", "valType": "string" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -21770,6 +25481,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -21778,6 +25490,7 @@ }, "t": { "description": "For polar chart only.Sets the angular coordinates.", + "editType": "calc", "role": "data", "valType": "data_array" }, @@ -21785,23 +25498,29 @@ "arrayOk": true, "description": "Sets text elements associated with each (x,y) pair. 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) coordinates. If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textfont": { "color": { "arrayOk": true, + "editType": "style", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "Sets the text font.", + "editType": "calc", "family": { "arrayOk": true, + "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -21809,18 +25528,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -21829,6 +25551,7 @@ "arrayOk": true, "description": "Sets the positions of the `text` elements with respects to the (x,y) coordinates.", "dflt": "middle center", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -21845,28 +25568,33 @@ }, "textpositionsrc": { "description": "Sets the source reference on plot.ly for textposition .", + "editType": "none", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "tsrc": { "description": "Sets the source reference on plot.ly for t .", + "editType": "none", "role": "info", "valType": "string" }, "type": "scatter", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -21877,24 +25605,28 @@ }, "x": { "description": "Sets the x coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "x0": { "description": "Alternate to `x`. Builds a linear space of x coordinates. Use with `dx` where `x0` is the starting coordinate and `dx` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", "role": "info", "valType": "any" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -21918,29 +25650,34 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the y coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "y0": { "description": "Alternate to `y`. Builds a linear space of y coordinates. Use with `dy` where `y0` is the starting coordinate and `dy` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", "role": "info", "valType": "any" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -21964,6 +25701,7 @@ }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" } @@ -21977,16 +25715,19 @@ "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, @@ -21994,70 +25735,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "calc", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "calc", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -22070,6 +25825,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -22077,17 +25833,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22097,70 +25856,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "calc", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "calc", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -22173,6 +25946,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -22180,17 +25954,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22200,70 +25977,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "calc", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "calc", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -22276,6 +26067,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -22283,17 +26075,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22303,6 +26098,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -22320,6 +26116,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -22327,39 +26124,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -22367,18 +26174,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -22386,12 +26196,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -22401,27 +26213,32 @@ "arrayOk": true, "description": "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.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "hovertextsrc": { "description": "Sets the source reference on plot.ly for hovertext .", + "editType": "none", "role": "info", "valType": "string" }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -22429,46 +26246,65 @@ "autocolorscale": { "description": "Has an effect only if `line.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `line.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `line.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `line.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `line.color` array index, and if set, `line.cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `line.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `line.color` array index, and if set, `line.cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "dash": { "description": "Sets the dash style of the lines.", "dflt": "solid", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22480,9 +26316,11 @@ "longdashdot" ] }, + "editType": "calc", "reversescale": { "description": "Has an effect only if `line.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -22490,12 +26328,14 @@ "showscale": { "description": "Has an effect only if `line.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22505,30 +26345,43 @@ "autocolorscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, @@ -22536,30 +26389,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "calc", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22574,6 +26436,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22581,6 +26444,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -22591,6 +26455,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -22598,12 +26463,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22612,12 +26479,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22630,12 +26499,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22648,6 +26519,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22660,6 +26532,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22667,6 +26540,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22676,29 +26550,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "calc", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -22706,6 +26589,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -22714,18 +26598,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -22737,12 +26625,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22754,32 +26644,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22787,17 +26683,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "calc", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -22805,6 +26705,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -22813,6 +26714,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22824,6 +26726,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -22832,6 +26735,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22843,6 +26747,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22850,6 +26755,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -22858,6 +26764,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -22869,6 +26776,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22876,58 +26784,84 @@ }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "line": { "autocolorscale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.line.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.line.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "reversescale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -22935,6 +26869,7 @@ "width": { "arrayOk": false, "description": "Sets the width (in px) of the lines bounding the marker points.", + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22943,6 +26878,7 @@ "opacity": { "arrayOk": false, "description": "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.", + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -22951,6 +26887,7 @@ "reversescale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -22958,6 +26895,7 @@ "showscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -22965,6 +26903,7 @@ "arrayOk": true, "description": "Sets the marker size (in px).", "dflt": 8, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22972,6 +26911,7 @@ "sizemin": { "description": "Has an effect only if `marker.size` is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -22979,6 +26919,7 @@ "sizemode": { "description": "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.", "dflt": "diameter", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -22989,11 +26930,13 @@ "sizeref": { "description": "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`.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" }, @@ -23001,6 +26944,7 @@ "arrayOk": true, "description": "Sets the marker symbol type.", "dflt": "circle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -23016,6 +26960,7 @@ }, "symbolsrc": { "description": "Sets the source reference on plot.ly for symbol .", + "editType": "none", "role": "info", "valType": "string" } @@ -23023,6 +26968,7 @@ "mode": { "description": "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, then the default is *lines+markers*. Otherwise, *lines*.", "dflt": "lines+markers", + "editType": "calc", "extras": [ "none" ], @@ -23036,23 +26982,28 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", "valType": "number" }, "projection": { + "editType": "calc", "role": "object", "x": { + "editType": "calc", "opacity": { "description": "Sets the projection color.", "dflt": 1, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -23062,6 +27013,7 @@ "scale": { "description": "Sets the scale factor determining the size of the projection marker points.", "dflt": 0.6666666666666666, + "editType": "calc", "max": 10, "min": 0, "role": "style", @@ -23070,14 +27022,17 @@ "show": { "description": "Sets whether or not projections are shown along the x axis.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" } }, "y": { + "editType": "calc", "opacity": { "description": "Sets the projection color.", "dflt": 1, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -23087,6 +27042,7 @@ "scale": { "description": "Sets the scale factor determining the size of the projection marker points.", "dflt": 0.6666666666666666, + "editType": "calc", "max": 10, "min": 0, "role": "style", @@ -23095,14 +27051,17 @@ "show": { "description": "Sets whether or not projections are shown along the y axis.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" } }, "z": { + "editType": "calc", "opacity": { "description": "Sets the projection color.", "dflt": 1, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -23112,6 +27071,7 @@ "scale": { "description": "Sets the scale factor determining the size of the projection marker points.", "dflt": 0.6666666666666666, + "editType": "calc", "max": 10, "min": 0, "role": "style", @@ -23120,6 +27080,7 @@ "show": { "description": "Sets whether or not projections are shown along the z axis.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" } @@ -23128,19 +27089,23 @@ "scene": { "description": "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.", "dflt": "scene", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -23149,6 +27114,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -23158,6 +27124,7 @@ "surfaceaxis": { "description": "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.", "dflt": -1, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -23169,6 +27136,7 @@ }, "surfacecolor": { "description": "Sets the surface fill color.", + "editType": "calc", "role": "style", "valType": "color" }, @@ -23176,23 +27144,29 @@ "arrayOk": true, "description": "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.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textfont": { "color": { "arrayOk": true, + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "Sets the text font.", + "editType": "calc", "family": { "arrayOk": true, + "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -23200,18 +27174,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -23220,6 +27197,7 @@ "arrayOk": true, "description": "Sets the positions of the `text` elements with respects to the (x,y) coordinates.", "dflt": "top center", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -23236,23 +27214,27 @@ }, "textpositionsrc": { "description": "Sets the source reference on plot.ly for textposition .", + "editType": "none", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "scatter3d", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -23263,12 +27245,14 @@ }, "x": { "description": "Sets the x coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -23292,17 +27276,20 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the y coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -23326,17 +27313,20 @@ }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" }, "z": { "description": "Sets the z coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "zcalendar": { "description": "Sets the calendar system to use with `z` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -23360,6 +27350,7 @@ }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -23373,48 +27364,57 @@ "attributes": { "a": { "description": "Sets the quantity of component `a` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary.sum`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "asrc": { "description": "Sets the source reference on plot.ly for a .", + "editType": "none", "role": "info", "valType": "string" }, "b": { "description": "Sets the quantity of component `a` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary.sum`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "bsrc": { "description": "Sets the source reference on plot.ly for b .", + "editType": "none", "role": "info", "valType": "string" }, "carpet": { "description": "An identifier for this carpet, so that `scattercarpet` and `scattercontour` traces can specify a carpet plot on which they lie", + "editType": "calc", "role": "info", "valType": "string" }, "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "fill": { "description": "Sets the area to fill with a solid color. Use with `fillcolor` if not *none*. scatterternary has a subset of the options available to scatter. *toself* connects the endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape. *tonext* fills the space between two traces if one completely encloses the other (eg consecutive contour lines), and behaves like *toself* if there is no trace before it. *tonext* should not be used if one trace does not enclose the other.", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -23425,6 +27425,7 @@ }, "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "style", "role": "style", "valType": "color" }, @@ -23432,6 +27433,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -23449,6 +27451,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -23456,39 +27459,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -23496,18 +27509,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -23515,12 +27531,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -23528,6 +27546,7 @@ }, "hoveron": { "description": "Do the hover effects highlight individual points (markers or line points) or do they highlight filled regions? If the fill is *toself* or *tonext* and there are no markers or text, then the default is *fills*, otherwise it is *points*.", + "editType": "style", "flags": [ "points", "fills" @@ -23537,29 +27556,34 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the line color.", + "editType": "style", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "style", "role": "style", "valType": "string", "values": [ @@ -23571,10 +27595,12 @@ "longdashdot" ] }, + "editType": "calc", "role": "object", "shape": { "description": "Determines the line shape. With *spline* the lines are drawn using spline interpolation. The other available values correspond to step-wise line shapes.", "dflt": "linear", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -23585,6 +27611,7 @@ "smoothing": { "description": "Has an effect only if `shape` is set to *spline* Sets the amount of smoothing. *0* corresponds to no smoothing (equivalent to a *linear* shape).", "dflt": 1, + "editType": "plot", "max": 1.3, "min": 0, "role": "style", @@ -23593,6 +27620,7 @@ "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -23602,30 +27630,43 @@ "autocolorscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, @@ -23633,30 +27674,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -23671,6 +27721,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -23678,6 +27729,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -23688,6 +27740,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -23695,12 +27748,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -23709,12 +27764,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -23727,12 +27784,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -23745,6 +27804,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -23757,6 +27817,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -23764,6 +27825,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -23773,29 +27835,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -23803,6 +27874,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -23811,18 +27883,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -23834,12 +27910,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -23851,32 +27929,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -23884,17 +27968,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -23902,6 +27990,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -23910,6 +27999,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -23921,6 +28011,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -23929,6 +28020,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -23940,6 +28032,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -23947,6 +28040,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -23955,6 +28049,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -23966,6 +28061,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -23973,31 +28069,41 @@ }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "gradient": { "color": { "arrayOk": true, "description": "Sets the final color of the gradient fill: the center color for radial, the right for horizontal, or the bottom for vertical.", + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object", "type": { "arrayOk": true, "description": "Sets the type of gradient used to fill the markers", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -24009,54 +28115,75 @@ }, "typesrc": { "description": "Sets the source reference on plot.ly for type .", + "editType": "none", "role": "info", "valType": "string" } }, "line": { "autocolorscale": { - "description": "Has an effect only if `.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `.colorscale`. 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.", + "description": "Has an effect only if `color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { - "description": "Has an effect only if `.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", + "description": "Has an effect only if `color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { - "description": "Has an effect only if `.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `.color` array index, and if set, `.cmin` must be set as well.", + "description": "Has an effect only if `color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `color` array index, and if set, `cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { - "description": "Has an effect only if `.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `.color` array index, and if set, `.cmax` must be set as well.", + "description": "Has an effect only if `color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `color` array index, and if set, `cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "Sets the 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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, "colorscale": { - "description": "Sets the colorscale and only has an effect if `.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 `.cmin` and `.cmax`. Alternatively, `colorscale` may be a palette name string of the following list: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "description": "Sets the colorscale and only has an effect if `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 `cmin` and `cmax`. Alternatively, `colorscale` may be a palette name string of the following list: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "reversescale": { - "description": "Has an effect only if `.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", + "description": "Has an effect only if `color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -24064,12 +28191,14 @@ "width": { "arrayOk": true, "description": "Sets the width (in px) of the lines bounding the marker points.", + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -24077,6 +28206,7 @@ "maxdisplayed": { "description": "Sets a maximum number of points to be drawn on the graph. *0* corresponds to no limit.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -24084,6 +28214,7 @@ "opacity": { "arrayOk": true, "description": "Sets the marker opacity.", + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -24091,12 +28222,14 @@ }, "opacitysrc": { "description": "Sets the source reference on plot.ly for opacity .", + "editType": "none", "role": "info", "valType": "string" }, "reversescale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -24104,6 +28237,7 @@ "showscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -24111,6 +28245,7 @@ "arrayOk": true, "description": "Sets the marker size (in px).", "dflt": 6, + "editType": "calcIfAutorange", "min": 0, "role": "style", "valType": "number" @@ -24118,6 +28253,7 @@ "sizemin": { "description": "Has an effect only if `marker.size` is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -24125,6 +28261,7 @@ "sizemode": { "description": "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.", "dflt": "diameter", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -24135,11 +28272,13 @@ "sizeref": { "description": "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`.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" }, @@ -24147,6 +28286,7 @@ "arrayOk": true, "description": "Sets the marker symbol type. Adding 100 is equivalent to appending *-open* to a symbol name. Adding 200 is equivalent to appending *-dot* to a symbol name. Adding 300 is equivalent to appending *-open-dot* or *dot-open* to a symbol name.", "dflt": "circle", + "editType": "style", "role": "style", "valType": "enumerated", "values": [ @@ -24438,6 +28578,7 @@ }, "symbolsrc": { "description": "Sets the source reference on plot.ly for symbol .", + "editType": "none", "role": "info", "valType": "string" } @@ -24445,6 +28586,7 @@ "mode": { "description": "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, then the default is *lines+markers*. Otherwise, *lines*.", "dflt": "markers", + "editType": "calc", "extras": [ "none" ], @@ -24458,12 +28600,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -24472,13 +28616,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -24487,40 +28634,40 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, "valType": "string" } }, - "sum": { - "description": "The number each triplet should sum to, if only two of `a`, `b`, and `c` are provided. This overrides `ternary.sum` to normalize this specific trace, but does not affect the values displayed on the axes. 0 (or missing) means to use ternary.sum", - "dflt": 0, - "min": 0, - "role": "info", - "valType": "number" - }, "text": { "arrayOk": true, "description": "Sets text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order to the the data points in (a,b,c).", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textfont": { "color": { "arrayOk": true, + "editType": "style", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "Sets the text font.", + "editType": "calc", "family": { "arrayOk": true, + "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -24528,18 +28675,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -24548,6 +28698,7 @@ "arrayOk": true, "description": "Sets the positions of the `text` elements with respects to the (x,y) coordinates.", "dflt": "middle center", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -24564,23 +28715,27 @@ }, "textpositionsrc": { "description": "Sets the source reference on plot.ly for textposition .", + "editType": "none", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "scattercarpet", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -24592,12 +28747,14 @@ "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" } @@ -24612,22 +28769,26 @@ "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "fill": { "description": "Sets the area to fill with a solid color. Use with `fillcolor` if not *none*. *toself* connects the endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape.", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -24637,12 +28798,14 @@ }, "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "calc", "role": "style", "valType": "color" }, "geo": { "description": "Sets a reference between this trace's geospatial coordinates and a geographic map. If *geo* (the default value), the geospatial coordinates refer to `layout.geo`. If *geo2*, the geospatial coordinates refer to `layout.geo2`, and so on.", "dflt": "geo", + "editType": "calc", "role": "info", "valType": "subplotid" }, @@ -24650,6 +28813,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "calc", "extras": [ "all", "none", @@ -24667,6 +28831,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -24674,39 +28839,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -24714,18 +28889,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -24733,12 +28911,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -24748,49 +28928,58 @@ "arrayOk": true, "description": "Sets hover text elements associated with each (lon,lat) pair or item in `locations`. 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 (lon,lat) or `locations` coordinates. To be seen, trace `hoverinfo` must contain a *text* flag.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "hovertextsrc": { "description": "Sets the source reference on plot.ly for hovertext .", + "editType": "none", "role": "info", "valType": "string" }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "lat": { "description": "Sets the latitude coordinates (in degrees North).", + "editType": "calc", "role": "data", "valType": "data_array" }, "latsrc": { "description": "Sets the source reference on plot.ly for lat .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the line color.", + "editType": "calc", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "calc", "role": "style", "valType": "string", "values": [ @@ -24802,10 +28991,12 @@ "longdashdot" ] }, + "editType": "calc", "role": "object", "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -24814,6 +29005,7 @@ "locationmode": { "description": "Determines the set of locations used to match entries in `locations` to regions on the map.", "dflt": "ISO-3", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -24824,21 +29016,25 @@ }, "locations": { "description": "Sets the coordinates via location IDs or names. Coordinates correspond to the centroid of each location given. See `locationmode` for more info.", + "editType": "calc", "role": "data", "valType": "data_array" }, "locationssrc": { "description": "Sets the source reference on plot.ly for locations .", + "editType": "none", "role": "info", "valType": "string" }, "lon": { "description": "Sets the longitude coordinates (in degrees East).", + "editType": "calc", "role": "data", "valType": "data_array" }, "lonsrc": { "description": "Sets the source reference on plot.ly for lon .", + "editType": "none", "role": "info", "valType": "string" }, @@ -24846,30 +29042,43 @@ "autocolorscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, @@ -24877,30 +29086,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "calc", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -24915,6 +29133,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -24922,6 +29141,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -24932,6 +29152,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -24939,12 +29160,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -24953,12 +29176,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -24971,12 +29196,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -24989,6 +29216,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -25001,6 +29229,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -25008,6 +29237,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -25017,29 +29247,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "calc", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -25047,6 +29286,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -25055,18 +29295,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -25078,12 +29322,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -25095,32 +29341,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -25128,17 +29380,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "calc", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -25146,6 +29402,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -25154,6 +29411,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -25165,6 +29423,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -25173,6 +29432,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -25184,6 +29444,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -25191,6 +29452,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -25199,6 +29461,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -25210,6 +29473,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -25217,31 +29481,41 @@ }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "gradient": { "color": { "arrayOk": true, "description": "Sets the final color of the gradient fill: the center color for radial, the right for horizontal, or the bottom for vertical.", + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object", "type": { "arrayOk": true, "description": "Sets the type of gradient used to fill the markers", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -25253,6 +29527,7 @@ }, "typesrc": { "description": "Sets the source reference on plot.ly for type .", + "editType": "none", "role": "info", "valType": "string" } @@ -25261,46 +29536,66 @@ "autocolorscale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.line.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.line.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "reversescale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -25308,12 +29603,14 @@ "width": { "arrayOk": true, "description": "Sets the width (in px) of the lines bounding the marker points.", + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -25321,6 +29618,7 @@ "opacity": { "arrayOk": true, "description": "Sets the marker opacity.", + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -25328,12 +29626,14 @@ }, "opacitysrc": { "description": "Sets the source reference on plot.ly for opacity .", + "editType": "none", "role": "info", "valType": "string" }, "reversescale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -25341,6 +29641,7 @@ "showscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -25348,6 +29649,7 @@ "arrayOk": true, "description": "Sets the marker size (in px).", "dflt": 6, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -25355,6 +29657,7 @@ "sizemin": { "description": "Has an effect only if `marker.size` is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -25362,6 +29665,7 @@ "sizemode": { "description": "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.", "dflt": "diameter", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -25372,11 +29676,13 @@ "sizeref": { "description": "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`.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" }, @@ -25384,6 +29690,7 @@ "arrayOk": true, "description": "Sets the marker symbol type. Adding 100 is equivalent to appending *-open* to a symbol name. Adding 200 is equivalent to appending *-dot* to a symbol name. Adding 300 is equivalent to appending *-open-dot* or *dot-open* to a symbol name.", "dflt": "circle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -25675,6 +29982,7 @@ }, "symbolsrc": { "description": "Sets the source reference on plot.ly for symbol .", + "editType": "none", "role": "info", "valType": "string" } @@ -25682,6 +29990,7 @@ "mode": { "description": "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, then the default is *lines+markers*. Otherwise, *lines*.", "dflt": "markers", + "editType": "calc", "extras": [ "none" ], @@ -25695,12 +30004,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -25709,13 +30020,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -25724,6 +30038,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -25734,23 +30049,29 @@ "arrayOk": true, "description": "Sets text elements associated with each (lon,lat) pair or item in `locations`. 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 (lon,lat) or `locations` coordinates. If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textfont": { "color": { "arrayOk": true, + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "Sets the text font.", + "editType": "calc", "family": { "arrayOk": true, + "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -25758,18 +30079,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -25778,6 +30102,7 @@ "arrayOk": true, "description": "Sets the positions of the `text` elements with respects to the (x,y) coordinates.", "dflt": "middle center", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -25794,23 +30119,27 @@ }, "textpositionsrc": { "description": "Sets the source reference on plot.ly for textposition .", + "editType": "none", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "scattergeo", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -25830,28 +30159,33 @@ "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "dx": { "description": "Sets the x coordinate step. See `x0` for more info.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, "dy": { "description": "Sets the y coordinate step. See `y0` for more info.", "dflt": 1, + "editType": "calc", "role": "info", "valType": "number" }, @@ -25859,70 +30193,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "calc", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "calc", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -25935,6 +30283,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -25942,17 +30291,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -25962,70 +30314,84 @@ "_deprecated": { "opacity": { "description": "Obsolete. Use the alpha channel in error bar `color` to set the opacity.", + "editType": "calc", "role": "style", "valType": "number" } }, "array": { "description": "Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminus": { "description": "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.", + "editType": "calc", "role": "data", "valType": "data_array" }, "arrayminussrc": { "description": "Sets the source reference on plot.ly for arrayminus .", + "editType": "none", "role": "info", "valType": "string" }, "arraysrc": { "description": "Sets the source reference on plot.ly for array .", + "editType": "none", "role": "info", "valType": "string" }, "color": { "description": "Sets the stoke color of the error bars.", + "editType": "calc", "role": "style", "valType": "color" }, "copy_ystyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, "copy_zstyle": { + "editType": "calc", "role": "style", "valType": "boolean" }, + "editType": "calc", "role": "object", "symmetric": { "description": "Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.", + "editType": "calc", "role": "info", "valType": "boolean" }, "thickness": { "description": "Sets the thickness (in px) of the error bars.", "dflt": 2, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "traceref": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "tracerefminus": { "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "integer" }, "type": { "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *array*, the bar lengths are set with data set `array`.", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -26038,6 +30404,7 @@ "value": { "description": "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.", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -26045,17 +30412,20 @@ "valueminus": { "description": "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", "dflt": 10, + "editType": "calc", "min": 0, "role": "info", "valType": "number" }, "visible": { "description": "Determines whether or not this set of error bars is visible.", + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width (in px) of the cross-bar at both ends of the error bars.", + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26064,6 +30434,7 @@ "fill": { "description": "Sets the area to fill with a solid color. Use with `fillcolor` if not *none*. *tozerox* and *tozeroy* fill to x=0 and y=0 respectively. *tonextx* and *tonexty* fill between the endpoints of this trace and the endpoints of the trace before it, connecting those endpoints with straight lines (to make a stacked area graph); if there is no trace before it, they behave like *tozerox* and *tozeroy*. *toself* connects the endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape. *tonext* fills the space between two traces if one completely encloses the other (eg consecutive contour lines), and behaves like *toself* if there is no trace before it. *tonext* should not be used if one trace does not enclose the other.", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26074,6 +30445,7 @@ }, "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "calc", "role": "style", "valType": "color" }, @@ -26081,6 +30453,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -26098,6 +30471,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -26105,39 +30479,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -26145,18 +30529,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -26164,12 +30551,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -26177,29 +30566,34 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the line color.", + "editType": "calc", "role": "style", "valType": "color" }, "dash": { "description": "Sets the style of the lines.", "dflt": "solid", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26211,10 +30605,12 @@ "longdashdot" ] }, + "editType": "calc", "role": "object", "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26224,30 +30620,43 @@ "autocolorscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, @@ -26255,30 +30664,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "calc", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26293,6 +30711,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26300,6 +30719,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -26310,6 +30730,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -26317,12 +30738,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26331,12 +30754,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26349,12 +30774,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26367,6 +30794,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26379,6 +30807,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26386,6 +30815,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26395,29 +30825,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "calc", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -26425,6 +30864,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -26433,18 +30873,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -26456,12 +30900,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26473,32 +30919,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26506,17 +30958,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "calc", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -26524,6 +30980,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -26532,6 +30989,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26543,6 +31001,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -26551,6 +31010,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26562,6 +31022,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26569,6 +31030,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -26577,6 +31039,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26588,6 +31051,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26595,58 +31059,84 @@ }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "line": { "autocolorscale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.line.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.line.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "reversescale": { "description": "Has an effect only if `marker.line.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -26654,12 +31144,14 @@ "width": { "arrayOk": true, "description": "Sets the width (in px) of the lines bounding the marker points.", + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -26667,6 +31159,7 @@ "opacity": { "arrayOk": true, "description": "Sets the marker opacity.", + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -26674,12 +31167,14 @@ }, "opacitysrc": { "description": "Sets the source reference on plot.ly for opacity .", + "editType": "none", "role": "info", "valType": "string" }, "reversescale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -26687,6 +31182,7 @@ "showscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -26694,6 +31190,7 @@ "arrayOk": true, "description": "Sets the marker size (in px).", "dflt": 6, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26701,6 +31198,7 @@ "sizemin": { "description": "Has an effect only if `marker.size` is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -26708,6 +31206,7 @@ "sizemode": { "description": "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.", "dflt": "diameter", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -26718,11 +31217,13 @@ "sizeref": { "description": "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`.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" }, @@ -26730,6 +31231,7 @@ "arrayOk": true, "description": "Sets the marker symbol type.", "dflt": "circle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -26793,12 +31295,14 @@ }, "symbolsrc": { "description": "Sets the source reference on plot.ly for symbol .", + "editType": "none", "role": "info", "valType": "string" } }, "mode": { "description": "Determines the drawing mode for this scatter trace.", + "editType": "calc", "extras": [ "none" ], @@ -26811,12 +31315,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -26825,13 +31331,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -26840,6 +31349,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -26850,23 +31360,27 @@ "arrayOk": true, "description": "Sets text elements associated with each (x,y) pair to appear on hover. 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) coordinates.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "scattergl", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -26877,24 +31391,28 @@ }, "x": { "description": "Sets the x coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "x0": { "description": "Alternate to `x`. Builds a linear space of x coordinates. Use with `dx` where `x0` is the starting coordinate and `dx` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", "role": "info", "valType": "any" }, "xaxis": { "description": "Sets a reference between this trace's x coordinates and a 2D cartesian x axis. If *x* (the default value), the x coordinates refer to `layout.xaxis`. If *x2*, the x coordinates refer to `layout.xaxis2`, and so on.", "dflt": "x", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -26918,29 +31436,34 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the y coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "y0": { "description": "Alternate to `y`. Builds a linear space of y coordinates. Use with `dy` where `y0` is the starting coordinate and `dy` the step.", "dflt": 0, + "editType": "calc+clearAxisTypes", "role": "info", "valType": "any" }, "yaxis": { "description": "Sets a reference between this trace's y coordinates and a 2D cartesian y axis. If *y* (the default value), the y coordinates refer to `layout.yaxis`. If *y2*, the y coordinates refer to `layout.xaxis2`, and so on.", "dflt": "y", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -26964,6 +31487,7 @@ }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" } @@ -26977,22 +31501,26 @@ "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "fill": { "description": "Sets the area to fill with a solid color. Use with `fillcolor` if not *none*. *toself* connects the endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape.", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27002,6 +31530,7 @@ }, "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "calc", "role": "style", "valType": "color" }, @@ -27009,6 +31538,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "calc", "extras": [ "all", "none", @@ -27026,6 +31556,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -27033,39 +31564,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -27073,18 +31614,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -27092,12 +31636,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -27107,50 +31653,60 @@ "arrayOk": true, "description": "Sets hover text elements associated with each (lon,lat) pair 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 (lon,lat) coordinates. To be seen, trace `hoverinfo` must contain a *text* flag.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "hovertextsrc": { "description": "Sets the source reference on plot.ly for hovertext .", + "editType": "none", "role": "info", "valType": "string" }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "lat": { "description": "Sets the latitude coordinates (in degrees North).", + "editType": "calc", "role": "data", "valType": "data_array" }, "latsrc": { "description": "Sets the source reference on plot.ly for lat .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the line color.", + "editType": "calc", "role": "style", "valType": "color" }, + "editType": "calc", "role": "object", "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -27158,11 +31714,13 @@ }, "lon": { "description": "Sets the longitude coordinates (in degrees East).", + "editType": "calc", "role": "data", "valType": "data_array" }, "lonsrc": { "description": "Sets the source reference on plot.ly for lon .", + "editType": "none", "role": "info", "valType": "string" }, @@ -27170,30 +31728,43 @@ "autocolorscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmin` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmax` must be set as well.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "calc", "role": "style", "valType": "color" }, @@ -27201,30 +31772,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "calc", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27239,6 +31819,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -27246,6 +31827,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -27256,6 +31838,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -27263,12 +31846,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -27277,12 +31862,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27295,12 +31882,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27313,6 +31902,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27325,6 +31915,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -27332,6 +31923,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27341,29 +31933,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "calc", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -27371,6 +31972,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -27379,18 +31981,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -27402,12 +32008,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27419,32 +32027,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -27452,17 +32066,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "calc", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -27470,6 +32088,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -27478,6 +32097,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27489,6 +32109,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -27497,6 +32118,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27508,6 +32130,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -27515,6 +32138,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -27523,6 +32147,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27534,6 +32159,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -27541,17 +32167,24 @@ }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "opacity": { "arrayOk": true, "description": "Sets the marker opacity.", + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -27559,12 +32192,14 @@ }, "opacitysrc": { "description": "Sets the source reference on plot.ly for opacity .", + "editType": "none", "role": "info", "valType": "string" }, "reversescale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -27572,6 +32207,7 @@ "showscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -27579,6 +32215,7 @@ "arrayOk": true, "description": "Sets the marker size (in px).", "dflt": 6, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -27586,6 +32223,7 @@ "sizemin": { "description": "Has an effect only if `marker.size` is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -27593,6 +32231,7 @@ "sizemode": { "description": "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.", "dflt": "diameter", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -27603,11 +32242,13 @@ "sizeref": { "description": "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`.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" }, @@ -27615,11 +32256,13 @@ "arrayOk": true, "description": "Sets the marker symbol. Full list: https://www.mapbox.com/maki-icons/ Note that the array `marker.color` and `marker.size` are only available for *circle* symbols.", "dflt": "circle", + "editType": "calc", "role": "style", "valType": "string" }, "symbolsrc": { "description": "Sets the source reference on plot.ly for symbol .", + "editType": "none", "role": "info", "valType": "string" } @@ -27627,6 +32270,7 @@ "mode": { "description": "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.", "dflt": "markers", + "editType": "calc", "extras": [ "none" ], @@ -27640,12 +32284,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -27654,13 +32300,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -27669,6 +32318,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -27678,6 +32328,7 @@ "subplot": { "description": "Sets a reference between this trace's data coordinates and a mapbox subplot. If *mapbox* (the default value), the data refer to `layout.mapbox`. If *mapbox2*, the data refer to `layout.mapbox2`, and so on.", "dflt": "mapbox", + "editType": "calc", "role": "info", "valType": "subplotid" }, @@ -27685,18 +32336,22 @@ "arrayOk": true, "description": "Sets text elements associated with each (lon,lat) pair 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 (lon,lat) coordinates. If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets the icon text font. Has an effect only when `type` is set to *symbol*.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", "dflt": "Open Sans Regular, Arial Unicode MS Regular", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -27704,6 +32359,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -27713,6 +32369,7 @@ "arrayOk": false, "description": "Sets the positions of the `text` elements with respects to the (x,y) coordinates.", "dflt": "middle center", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27729,18 +32386,21 @@ }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "scattermapbox", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -27759,60 +32419,70 @@ "attributes": { "a": { "description": "Sets the quantity of component `a` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary.sum`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "asrc": { "description": "Sets the source reference on plot.ly for a .", + "editType": "none", "role": "info", "valType": "string" }, "b": { "description": "Sets the quantity of component `a` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary.sum`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "bsrc": { "description": "Sets the source reference on plot.ly for b .", + "editType": "none", "role": "info", "valType": "string" }, "c": { "description": "Sets the quantity of component `a` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary.sum`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "cliponaxis": { "description": "Determines whether or not markers and text nodes are clipped about the subplot axes. To show markers and text nodes above axis lines and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*.", "dflt": true, - "editType": "doplot", + "editType": "plot", "role": "info", "valType": "boolean" }, "connectgaps": { "description": "Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "csrc": { "description": "Sets the source reference on plot.ly for c .", + "editType": "none", "role": "info", "valType": "string" }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "fill": { "description": "Sets the area to fill with a solid color. Use with `fillcolor` if not *none*. scatterternary has a subset of the options available to scatter. *toself* connects the endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape. *tonext* fills the space between two traces if one completely encloses the other (eg consecutive contour lines), and behaves like *toself* if there is no trace before it. *tonext* should not be used if one trace does not enclose the other.", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -27823,6 +32493,7 @@ }, "fillcolor": { "description": "Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.", + "editType": "style", "role": "style", "valType": "color" }, @@ -27830,6 +32501,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -27847,6 +32519,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -27854,39 +32527,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -27894,18 +32577,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -27913,12 +32599,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -27926,6 +32614,7 @@ }, "hoveron": { "description": "Do the hover effects highlight individual points (markers or line points) or do they highlight filled regions? If the fill is *toself* or *tonext* and there are no markers or text, then the default is *fills*, otherwise it is *points*.", + "editType": "style", "flags": [ "points", "fills" @@ -27937,39 +32626,46 @@ "arrayOk": true, "description": "Sets hover text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order to the the data points in (a,b,c). To be seen, trace `hoverinfo` must contain a *text* flag.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "hovertextsrc": { "description": "Sets the source reference on plot.ly for hovertext .", + "editType": "none", "role": "info", "valType": "string" }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, "line": { "color": { "description": "Sets the line color.", + "editType": "style", "role": "style", "valType": "color" }, "dash": { "description": "Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*).", "dflt": "solid", + "editType": "style", "role": "style", "valType": "string", "values": [ @@ -27981,10 +32677,12 @@ "longdashdot" ] }, + "editType": "calc", "role": "object", "shape": { "description": "Determines the line shape. With *spline* the lines are drawn using spline interpolation. The other available values correspond to step-wise line shapes.", "dflt": "linear", + "editType": "plot", "role": "style", "valType": "enumerated", "values": [ @@ -27995,6 +32693,7 @@ "smoothing": { "description": "Has an effect only if `shape` is set to *spline* Sets the amount of smoothing. *0* corresponds to no smoothing (equivalent to a *linear* shape).", "dflt": 1, + "editType": "plot", "max": 1.3, "min": 0, "role": "style", @@ -28003,6 +32702,7 @@ "width": { "description": "Sets the line width (in px).", "dflt": 2, + "editType": "style", "min": 0, "role": "style", "valType": "number" @@ -28012,30 +32712,43 @@ "autocolorscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Has an effect only if `marker.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Has an effect only if `marker.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.color` array index, and if set, `marker.cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, @@ -28043,30 +32756,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "colorbars", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "colorbars", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -28081,6 +32803,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -28088,6 +32811,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "colorbars", "role": "info", "valType": "enumerated", "values": [ @@ -28098,6 +32822,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "colorbars", "min": 0, "role": "style", "valType": "integer" @@ -28105,12 +32830,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -28119,12 +32846,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -28137,12 +32866,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "colorbars", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -28155,6 +32886,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -28167,6 +32899,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -28174,6 +32907,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -28183,29 +32917,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "colorbars", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "colorbars", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "colorbars", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -28213,6 +32956,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -28221,18 +32965,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "colorbars", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -28244,12 +32992,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -28261,32 +33011,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "colorbars", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "colorbars", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -28294,17 +33050,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "colorbars", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "colorbars", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "colorbars", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "colorbars", "noBlank": true, "role": "style", "strict": true, @@ -28312,6 +33072,7 @@ }, "role": "object", "size": { + "editType": "colorbars", "min": 1, "role": "style", "valType": "number" @@ -28320,6 +33081,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -28331,6 +33093,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -28339,6 +33102,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -28350,6 +33114,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -28357,6 +33122,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "colorbars", "max": 3, "min": -2, "role": "style", @@ -28365,6 +33131,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "colorbars", "role": "style", "valType": "enumerated", "values": [ @@ -28376,6 +33143,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "colorbars", "min": 0, "role": "style", "valType": "number" @@ -28383,31 +33151,41 @@ }, "colorscale": { "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "gradient": { "color": { "arrayOk": true, "description": "Sets the final color of the gradient fill: the center color for radial, the right for horizontal, or the bottom for vertical.", + "editType": "calc", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "role": "object", "type": { "arrayOk": true, "description": "Sets the type of gradient used to fill the markers", "dflt": "none", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -28419,54 +33197,75 @@ }, "typesrc": { "description": "Sets the source reference on plot.ly for type .", + "editType": "none", "role": "info", "valType": "string" } }, "line": { "autocolorscale": { - "description": "Has an effect only if `.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `.colorscale`. 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.", + "description": "Has an effect only if `marker.line.color` is set to a numerical array. Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.line.colorscale`. 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.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { - "description": "Has an effect only if `.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", + "description": "Has an effect only if `marker.line.color` is set to a numerical array and `cmin`, `cmax` are set by the user. In this case, it controls whether the range of colors in `colorscale` is mapped to the range of values in the `color` array (`cauto: true`), or the `cmin`/`cmax` values (`cauto: false`). Defaults to `false` when `cmin`, `cmax` are set by the user.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { - "description": "Has an effect only if `.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `.color` array index, and if set, `.cmin` must be set as well.", + "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the upper bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmin` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "cmin": { - "description": "Has an effect only if `.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `.color` array index, and if set, `.cmax` must be set as well.", + "description": "Has an effect only if `marker.line.color` is set to a numerical array. Sets the lower bound of the color domain. Value should be associated to the `marker.line.color` array index, and if set, `marker.line.cmax` must be set as well.", "dflt": null, + "editType": "plot", + "impliedEdits": { + "cauto": false + }, "role": "info", "valType": "number" }, "color": { "arrayOk": true, - "description": "Sets the 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 `cmin` and `cmax` if set.", + "description": "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 `cmin` and `cmax` if set.", + "editType": "style", "role": "style", "valType": "color" }, "colorscale": { - "description": "Sets the colorscale and only has an effect if `.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 `.cmin` and `.cmax`. Alternatively, `colorscale` may be a palette name string of the following list: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "description": "Sets the colorscale and only has an effect if `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: Greys, YlGnBu, Greens, YlOrRd, Bluered, RdBu, Reds, Blues, Picnic, Rainbow, Portland, Jet, Hot, Blackbody, Earth, Electric, Viridis", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "reversescale": { - "description": "Has an effect only if `.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", + "description": "Has an effect only if `marker.line.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -28474,12 +33273,14 @@ "width": { "arrayOk": true, "description": "Sets the width (in px) of the lines bounding the marker points.", + "editType": "style", "min": 0, "role": "style", "valType": "number" }, "widthsrc": { "description": "Sets the source reference on plot.ly for width .", + "editType": "none", "role": "info", "valType": "string" } @@ -28487,6 +33288,7 @@ "maxdisplayed": { "description": "Sets a maximum number of points to be drawn on the graph. *0* corresponds to no limit.", "dflt": 0, + "editType": "plot", "min": 0, "role": "style", "valType": "number" @@ -28494,6 +33296,7 @@ "opacity": { "arrayOk": true, "description": "Sets the marker opacity.", + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -28501,12 +33304,14 @@ }, "opacitysrc": { "description": "Sets the source reference on plot.ly for opacity .", + "editType": "none", "role": "info", "valType": "string" }, "reversescale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Reverses the color mapping if true (`cmin` will correspond to the last color in the array and `cmax` will correspond to the first color).", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, @@ -28514,6 +33319,7 @@ "showscale": { "description": "Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -28521,6 +33327,7 @@ "arrayOk": true, "description": "Sets the marker size (in px).", "dflt": 6, + "editType": "calcIfAutorange", "min": 0, "role": "style", "valType": "number" @@ -28528,6 +33335,7 @@ "sizemin": { "description": "Has an effect only if `marker.size` is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -28535,6 +33343,7 @@ "sizemode": { "description": "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.", "dflt": "diameter", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -28545,11 +33354,13 @@ "sizeref": { "description": "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`.", "dflt": 1, + "editType": "calc", "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" }, @@ -28557,6 +33368,7 @@ "arrayOk": true, "description": "Sets the marker symbol type. Adding 100 is equivalent to appending *-open* to a symbol name. Adding 200 is equivalent to appending *-dot* to a symbol name. Adding 300 is equivalent to appending *-open-dot* or *dot-open* to a symbol name.", "dflt": "circle", + "editType": "style", "role": "style", "valType": "enumerated", "values": [ @@ -28848,6 +33660,7 @@ }, "symbolsrc": { "description": "Sets the source reference on plot.ly for symbol .", + "editType": "none", "role": "info", "valType": "string" } @@ -28855,6 +33668,7 @@ "mode": { "description": "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, then the default is *lines+markers*. Otherwise, *lines*.", "dflt": "markers", + "editType": "calc", "extras": [ "none" ], @@ -28868,12 +33682,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the trace.", "dflt": 1, + "editType": "style", "max": 1, "min": 0, "role": "style", @@ -28882,13 +33698,16 @@ "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -28897,6 +33716,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -28906,12 +33726,14 @@ "subplot": { "description": "Sets a reference between this trace's data coordinates and a ternary subplot. If *ternary* (the default value), the data refer to `layout.ternary`. If *ternary2*, the data refer to `layout.ternary2`, and so on.", "dflt": "ternary", + "editType": "calc", "role": "info", "valType": "subplotid" }, "sum": { "description": "The number each triplet should sum to, if only two of `a`, `b`, and `c` are provided. This overrides `ternary.sum` to normalize this specific trace, but does not affect the values displayed on the axes. 0 (or missing) means to use ternary.sum", "dflt": 0, + "editType": "calc", "min": 0, "role": "info", "valType": "number" @@ -28920,23 +33742,29 @@ "arrayOk": true, "description": "Sets text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order to the the data points in (a,b,c). If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "textfont": { "color": { "arrayOk": true, + "editType": "style", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, "description": "Sets the text font.", + "editType": "calc", "family": { "arrayOk": true, + "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -28944,18 +33772,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "calc", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -28964,6 +33795,7 @@ "arrayOk": true, "description": "Sets the positions of the `text` elements with respects to the (x,y) coordinates.", "dflt": "middle center", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -28980,23 +33812,27 @@ }, "textpositionsrc": { "description": "Sets the source reference on plot.ly for textposition .", + "editType": "none", "role": "info", "valType": "string" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "scatterternary", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -29017,18 +33853,28 @@ "zauto": { "description": "Obsolete. Use `cauto` instead.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "zmax": { "description": "Obsolete. Use `cmax` instead.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "zmin": { "description": "Obsolete. Use `cmin` instead.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" } @@ -29036,24 +33882,36 @@ "autocolorscale": { "description": "Determines whether or not the colorscale is picked using the sign of the input z values.", "dflt": false, + "editType": "calc", + "impliedEdits": {}, "role": "style", "valType": "boolean" }, "cauto": { "description": "Determines the whether or not the color domain is computed with respect to the input data.", "dflt": true, + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "boolean" }, "cmax": { "description": "Sets the upper bound of color domain.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, "cmin": { "description": "Sets the lower bound of color domain.", "dflt": null, + "editType": "calc", + "impliedEdits": { + "zauto": false + }, "role": "info", "valType": "number" }, @@ -29061,30 +33919,39 @@ "bgcolor": { "description": "Sets the color of padded area.", "dflt": "rgba(0,0,0,0)", + "editType": "calc", "role": "style", "valType": "color" }, "bordercolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "borderwidth": { "description": "Sets the width (in px) or the border enclosing this color bar.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "dtick": { "description": "Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to *log* and *date* axes. If the axis `type` is *log*, then ticks are set every 10^(n*dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. *log* has several special values; *L*, where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = *L0.5* will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use *D1* (all digits) or *D2* (only 2 and 5). `tick0` is ignored for *D1* and *D2*. If the axis `type` is *date*, then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. *date* also has special values *M* gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to *2000-01-15* and `dtick` to *M3*. To set ticks every 4 years, set `dtick` to *M48*", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, + "editType": "calc", "exponentformat": { "description": "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.", "dflt": "B", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -29099,6 +33966,7 @@ "len": { "description": "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.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -29106,6 +33974,7 @@ "lenmode": { "description": "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.", "dflt": "fraction", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -29116,6 +33985,7 @@ "nticks": { "description": "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*.", "dflt": 0, + "editType": "calc", "min": 0, "role": "style", "valType": "integer" @@ -29123,12 +33993,14 @@ "outlinecolor": { "description": "Sets the axis line color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "outlinewidth": { "description": "Sets the width (in px) of the axis line.", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -29137,12 +34009,14 @@ "separatethousands": { "description": "If \"true\", even 4-digit integers are separated", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "showexponent": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -29155,12 +34029,14 @@ "showticklabels": { "description": "Determines whether or not the tick labels are drawn.", "dflt": true, + "editType": "calc", "role": "style", "valType": "boolean" }, "showtickprefix": { "description": "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.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -29173,6 +34049,7 @@ "showticksuffix": { "description": "Same as `showtickprefix` but for tick suffixes.", "dflt": "all", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -29185,6 +34062,7 @@ "thickness": { "description": "Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.", "dflt": 30, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -29192,6 +34070,7 @@ "thicknessmode": { "description": "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.", "dflt": "pixels", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -29201,29 +34080,38 @@ }, "tick0": { "description": "Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is *log*, then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`=*L* (see `dtick` for more info). If the axis `type` is *date*, it should be a date string, like date data. If the axis `type` is *category*, it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.", + "editType": "calc", + "impliedEdits": { + "tickmode": "linear" + }, "role": "style", "valType": "any" }, "tickangle": { "description": "Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.", "dflt": "auto", + "editType": "calc", "role": "style", "valType": "angle" }, "tickcolor": { "description": "Sets the tick color.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "tickfont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, - "description": "Sets the tick font.", + "description": "Sets the color bar's tick label font", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -29231,6 +34119,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -29239,18 +34128,22 @@ "tickformat": { "description": "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/blob/master/README.md#locale_format And for dates see: https://github.com/d3/d3-time-format/blob/master/README.md#locale_format We add one item to d3's date formatter: *%{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*", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticklen": { "description": "Sets the tick length (in px).", "dflt": 5, + "editType": "calc", "min": 0, "role": "style", "valType": "number" }, "tickmode": { "description": "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).", + "editType": "calc", + "impliedEdits": {}, "role": "info", "valType": "enumerated", "values": [ @@ -29262,12 +34155,14 @@ "tickprefix": { "description": "Sets a tick label prefix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticks": { "description": "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.", "dflt": "", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -29279,32 +34174,38 @@ "ticksuffix": { "description": "Sets a tick label suffix.", "dflt": "", + "editType": "calc", "role": "style", "valType": "string" }, "ticktext": { "description": "Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to *array*. Used with `tickvals`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "ticktextsrc": { "description": "Sets the source reference on plot.ly for ticktext .", + "editType": "none", "role": "info", "valType": "string" }, "tickvals": { "description": "Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to *array*. Used with `ticktext`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "tickvalssrc": { "description": "Sets the source reference on plot.ly for tickvals .", + "editType": "none", "role": "info", "valType": "string" }, "tickwidth": { "description": "Sets the tick width (in px).", "dflt": 1, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -29312,17 +34213,21 @@ "title": { "description": "Sets the title of the color bar.", "dflt": "Click to enter colorscale title", + "editType": "calc", "role": "info", "valType": "string" }, "titlefont": { "color": { + "editType": "calc", "role": "style", "valType": "color" }, "description": "Sets this color bar's title font.", + "editType": "calc", "family": { "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", "noBlank": true, "role": "style", "strict": true, @@ -29330,6 +34235,7 @@ }, "role": "object", "size": { + "editType": "calc", "min": 1, "role": "style", "valType": "number" @@ -29338,6 +34244,7 @@ "titleside": { "description": "Determines the location of the colorbar title with respect to the color bar.", "dflt": "top", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -29349,6 +34256,7 @@ "x": { "description": "Sets the x position of the color bar (in plot fraction).", "dflt": 1.02, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -29357,6 +34265,7 @@ "xanchor": { "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.", "dflt": "left", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -29368,6 +34277,7 @@ "xpad": { "description": "Sets the amount of padding (in px) along the x direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -29375,6 +34285,7 @@ "y": { "description": "Sets the y position of the color bar (in plot fraction).", "dflt": 0.5, + "editType": "calc", "max": 3, "min": -2, "role": "style", @@ -29383,6 +34294,7 @@ "yanchor": { "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.", "dflt": "middle", + "editType": "calc", "role": "style", "valType": "enumerated", "values": [ @@ -29394,6 +34306,7 @@ "ypad": { "description": "Sets the amount of padding (in px) along the y direction.", "dflt": 10, + "editType": "calc", "min": 0, "role": "style", "valType": "number" @@ -29401,55 +34314,69 @@ }, "colorscale": { "description": "Sets the colorscale. 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 z space, use zmin and zmax", + "editType": "calc", + "impliedEdits": { + "autocolorscale": false + }, "role": "style", "valType": "colorscale" }, "contours": { + "editType": "calc", "role": "object", "x": { "color": { "description": "Sets the color of the contour lines.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, + "editType": "calc", "highlight": { "description": "Determines whether or not contour lines about the x dimension are highlighted on hover.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "highlightcolor": { "description": "Sets the color of the highlighted contour lines.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "highlightwidth": { "description": "Sets the width of the highlighted contour lines.", "dflt": 2, + "editType": "calc", "max": 16, "min": 1, "role": "style", "valType": "number" }, "project": { + "editType": "calc", "role": "object", "x": { "description": "Determines whether or not these contour lines are projected on the x plane. If `highlight` is set to *true* (the default), the projected lines are shown on hover. If `show` is set to *true*, the projected lines are shown in permanence.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "y": { "description": "Determines whether or not these contour lines are projected on the y plane. If `highlight` is set to *true* (the default), the projected lines are shown on hover. If `show` is set to *true*, the projected lines are shown in permanence.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "z": { "description": "Determines whether or not these contour lines are projected on the z plane. If `highlight` is set to *true* (the default), the projected lines are shown on hover. If `show` is set to *true*, the projected lines are shown in permanence.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" } @@ -29458,18 +34385,21 @@ "show": { "description": "Determines whether or not contour lines about the x dimension are drawn.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "usecolormap": { "description": "An alternate to *color*. Determines whether or not the contour lines are colored using the trace *colorscale*.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width of the contour lines.", "dflt": 2, + "editType": "calc", "max": 16, "min": 1, "role": "style", @@ -29480,46 +34410,55 @@ "color": { "description": "Sets the color of the contour lines.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, + "editType": "calc", "highlight": { "description": "Determines whether or not contour lines about the y dimension are highlighted on hover.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "highlightcolor": { "description": "Sets the color of the highlighted contour lines.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "highlightwidth": { "description": "Sets the width of the highlighted contour lines.", "dflt": 2, + "editType": "calc", "max": 16, "min": 1, "role": "style", "valType": "number" }, "project": { + "editType": "calc", "role": "object", "x": { "description": "Determines whether or not these contour lines are projected on the x plane. If `highlight` is set to *true* (the default), the projected lines are shown on hover. If `show` is set to *true*, the projected lines are shown in permanence.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "y": { "description": "Determines whether or not these contour lines are projected on the y plane. If `highlight` is set to *true* (the default), the projected lines are shown on hover. If `show` is set to *true*, the projected lines are shown in permanence.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "z": { "description": "Determines whether or not these contour lines are projected on the z plane. If `highlight` is set to *true* (the default), the projected lines are shown on hover. If `show` is set to *true*, the projected lines are shown in permanence.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" } @@ -29528,18 +34467,21 @@ "show": { "description": "Determines whether or not contour lines about the y dimension are drawn.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "usecolormap": { "description": "An alternate to *color*. Determines whether or not the contour lines are colored using the trace *colorscale*.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width of the contour lines.", "dflt": 2, + "editType": "calc", "max": 16, "min": 1, "role": "style", @@ -29550,46 +34492,55 @@ "color": { "description": "Sets the color of the contour lines.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, + "editType": "calc", "highlight": { "description": "Determines whether or not contour lines about the z dimension are highlighted on hover.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "highlightcolor": { "description": "Sets the color of the highlighted contour lines.", "dflt": "#444", + "editType": "calc", "role": "style", "valType": "color" }, "highlightwidth": { "description": "Sets the width of the highlighted contour lines.", "dflt": 2, + "editType": "calc", "max": 16, "min": 1, "role": "style", "valType": "number" }, "project": { + "editType": "calc", "role": "object", "x": { "description": "Determines whether or not these contour lines are projected on the x plane. If `highlight` is set to *true* (the default), the projected lines are shown on hover. If `show` is set to *true*, the projected lines are shown in permanence.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "y": { "description": "Determines whether or not these contour lines are projected on the y plane. If `highlight` is set to *true* (the default), the projected lines are shown on hover. If `show` is set to *true*, the projected lines are shown in permanence.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "z": { "description": "Determines whether or not these contour lines are projected on the z plane. If `highlight` is set to *true* (the default), the projected lines are shown on hover. If `show` is set to *true*, the projected lines are shown in permanence.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" } @@ -29598,18 +34549,21 @@ "show": { "description": "Determines whether or not contour lines about the z dimension are drawn.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "usecolormap": { "description": "An alternate to *color*. Determines whether or not the contour lines are colored using the trace *colorscale*.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, "width": { "description": "Sets the width of the contour lines.", "dflt": 2, + "editType": "calc", "max": 16, "min": 1, "role": "style", @@ -29619,17 +34573,20 @@ }, "customdata": { "description": "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", + "editType": "calc", "role": "data", "valType": "data_array" }, "customdatasrc": { "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", "role": "info", "valType": "string" }, "hidesurface": { "description": "Determines whether or not a surface is drawn. For example, set `hidesurface` to *false* `contours.x.show` to *true* and `contours.y.show` to *true* to draw a wire frame plot.", "dflt": false, + "editType": "calc", "role": "info", "valType": "boolean" }, @@ -29637,6 +34594,7 @@ "arrayOk": true, "description": "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.", "dflt": "all", + "editType": "none", "extras": [ "all", "none", @@ -29654,6 +34612,7 @@ }, "hoverinfosrc": { "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", "role": "info", "valType": "string" }, @@ -29661,39 +34620,49 @@ "bgcolor": { "arrayOk": true, "description": "Sets the background color of the hover labels for this trace", + "editType": "none", "role": "style", "valType": "color" }, "bgcolorsrc": { "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", "role": "info", "valType": "string" }, "bordercolor": { "arrayOk": true, "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", "role": "style", "valType": "color" }, "bordercolorsrc": { "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", "role": "info", "valType": "string" }, + "editType": "calc", "font": { "color": { "arrayOk": true, + "editType": "none", "role": "style", "valType": "color" }, "colorsrc": { "description": "Sets the source reference on plot.ly for color .", + "editType": "none", "role": "info", "valType": "string" }, + "description": "Sets the font used in hover labels.", + "editType": "none", "family": { "arrayOk": true, "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", "noBlank": true, "role": "style", "strict": true, @@ -29701,18 +34670,21 @@ }, "familysrc": { "description": "Sets the source reference on plot.ly for family .", + "editType": "none", "role": "info", "valType": "string" }, "role": "object", "size": { "arrayOk": true, + "editType": "none", "min": 1, "role": "style", "valType": "number" }, "sizesrc": { "description": "Sets the source reference on plot.ly for size .", + "editType": "none", "role": "info", "valType": "string" } @@ -29720,12 +34692,14 @@ "namelength": { "arrayOk": true, "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", "min": -1, "role": "style", "valType": "integer" }, "namelengthsrc": { "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", "role": "info", "valType": "string" }, @@ -29733,17 +34707,20 @@ }, "ids": { "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", "role": "data", "valType": "data_array" }, "idssrc": { "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", "role": "info", "valType": "string" }, "legendgroup": { "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", "dflt": "", + "editType": "style", "role": "info", "valType": "string" }, @@ -29751,6 +34728,7 @@ "ambient": { "description": "Ambient light increases overall color visibility but can wash out the image.", "dflt": 0.8, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -29759,14 +34737,17 @@ "diffuse": { "description": "Represents the extent that incident rays are reflected in a range of angles.", "dflt": 0.8, + "editType": "calc", "max": 1, "min": 0, "role": "style", "valType": "number" }, + "editType": "calc", "fresnel": { "description": "Represents the reflectance as a dependency of the viewing angle; e.g. paper is reflective when viewing it from the edge of the paper (almost 90 degrees), causing shine.", "dflt": 0.2, + "editType": "calc", "max": 5, "min": 0, "role": "style", @@ -29776,6 +34757,7 @@ "roughness": { "description": "Alters specular reflection; the rougher the surface, the wider and less contrasty the shine.", "dflt": 0.5, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -29784,6 +34766,7 @@ "specular": { "description": "Represents the level that incident rays are reflected in a single direction, causing shine.", "dflt": 0.05, + "editType": "calc", "max": 2, "min": 0, "role": "style", @@ -29791,10 +34774,12 @@ } }, "lightposition": { + "editType": "calc", "role": "object", "x": { "description": "Numeric vector, representing the X coordinate for each vertex.", "dflt": 10, + "editType": "calc", "max": 100000, "min": -100000, "role": "style", @@ -29803,6 +34788,7 @@ "y": { "description": "Numeric vector, representing the Y coordinate for each vertex.", "dflt": 10000, + "editType": "calc", "max": 100000, "min": -100000, "role": "style", @@ -29811,6 +34797,7 @@ "z": { "description": "Numeric vector, representing the Z coordinate for each vertex.", "dflt": 0, + "editType": "calc", "max": 100000, "min": -100000, "role": "style", @@ -29819,12 +34806,14 @@ }, "name": { "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", "role": "info", "valType": "string" }, "opacity": { "description": "Sets the opacity of the surface.", "dflt": 1, + "editType": "calc", "max": 1, "min": 0, "role": "style", @@ -29833,31 +34822,37 @@ "reversescale": { "description": "Reverses the colorscale.", "dflt": false, + "editType": "calc", "role": "style", "valType": "boolean" }, "scene": { "description": "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.", "dflt": "scene", + "editType": "calc+clearAxisTypes", "role": "info", "valType": "subplotid" }, "showlegend": { "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", "dflt": true, + "editType": "style", "role": "info", "valType": "boolean" }, "showscale": { "description": "Determines whether or not a colorbar is displayed for this trace.", "dflt": true, + "editType": "calc", "role": "info", "valType": "boolean" }, "stream": { + "editType": "calc", "maxpoints": { "description": "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.", "dflt": 500, + "editType": "calc", "max": 10000, "min": 0, "role": "info", @@ -29866,6 +34861,7 @@ "role": "object", "token": { "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", "noBlank": true, "role": "info", "strict": true, @@ -29874,33 +34870,39 @@ }, "surfacecolor": { "description": "Sets the surface color values, used for setting a color scale independent of `z`.", + "editType": "calc", "role": "data", "valType": "data_array" }, "surfacecolorsrc": { "description": "Sets the source reference on plot.ly for surfacecolor .", + "editType": "none", "role": "info", "valType": "string" }, "text": { "description": "Sets the text elements associated with each z value.", + "editType": "calc", "role": "data", "valType": "data_array" }, "textsrc": { "description": "Sets the source reference on plot.ly for text .", + "editType": "none", "role": "info", "valType": "string" }, "type": "surface", "uid": { "dflt": "", + "editType": "calc", "role": "info", "valType": "string" }, "visible": { "description": "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).", "dflt": true, + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -29911,12 +34913,14 @@ }, "x": { "description": "Sets the x coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "xcalendar": { "description": "Sets the calendar system to use with `x` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -29940,17 +34944,20 @@ }, "xsrc": { "description": "Sets the source reference on plot.ly for x .", + "editType": "none", "role": "info", "valType": "string" }, "y": { "description": "Sets the y coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "ycalendar": { "description": "Sets the calendar system to use with `y` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -29974,17 +34981,20 @@ }, "ysrc": { "description": "Sets the source reference on plot.ly for y .", + "editType": "none", "role": "info", "valType": "string" }, "z": { "description": "Sets the z coordinates.", + "editType": "calc+clearAxisTypes", "role": "data", "valType": "data_array" }, "zcalendar": { "description": "Sets the calendar system to use with `z` date data.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -30008,6 +35018,7 @@ }, "zsrc": { "description": "Sets the source reference on plot.ly for z .", + "editType": "none", "role": "info", "valType": "string" } @@ -30015,73 +35026,725 @@ "meta": { "description": "The data the describes the coordinates of the surface is set in `z`. Data in `z` should be a {2D array}. Coordinates in `x` and `y` can either be 1D {arrays} or {2D arrays} (e.g. to graph parametric surfaces). If not provided in `x` and `y`, the x and y coordinates are assumed to be linear starting at 0 with a unit step. The color scale corresponds to the `z` values by default. For custom color scales, use `surfacecolor` which should be a {2D array}, where its bounds can be controlled using `cmin` and `cmax`." } - } - }, - "transforms": { - "aggregate": { + }, + "table": { "attributes": { - "aggregations": { - "items": { - "aggregation": { - "enabled": { - "description": "Determines whether this aggregation function is enabled or disabled.", - "dflt": true, - "valType": "boolean" - }, - "func": { - "description": "Sets the aggregation function. All values from the linked `target`, corresponding to the same value in the `groups` array, are collected and reduced by this function. *count* is simply the number of values in the `groups` array, so does not even require the linked array to exist. *first* (*last*) is just the first (last) linked value. Invalid values are ignored, so for example in *avg* they do not contribute to either the numerator or the denominator. Any data type (numeric, date, category) may be aggregated with any function, even though in certain cases it is unlikely to make sense, for example a sum of dates or average of categories. *median* will return the average of the two central values if there is an even count. *mode* will return the first value to reach the maximum count, in case of a tie.", - "dflt": "first", - "role": "info", - "valType": "enumerated", - "values": [ - "count", - "sum", - "avg", - "median", - "mode", - "rms", - "stddev", - "min", - "max", - "first", - "last" - ] - }, - "funcmode": { - "description": "*stddev* supports two formula variants: *sample* (normalize by N-1) and *population* (normalize by N).", - "dflt": "sample", - "role": "info", - "valType": "enumerated", - "values": [ - "sample", - "population" - ] - }, - "role": "object", - "target": { - "description": "A reference to the data array in the parent trace to aggregate. To aggregate by nested variables, use *.* to access them. For example, set `groups` to *marker.color* to aggregate over the marker color array. The referenced array must already exist, unless `func` is *count*, and each array may only be referenced once.", - "role": "info", - "valType": "string" - } + "cells": { + "align": { + "arrayOk": true, + "description": "Sets the horizontal alignment of the `text` within the box. Has an effect only if `text` spans more two or more lines (i.e. `text` contains one or more
HTML tags) or if an explicit width is set to override the text width.", + "dflt": "center", + "editType": "calc", + "role": "style", + "valType": "enumerated", + "values": [ + "left", + "center", + "right" + ] + }, + "alignsrc": { + "description": "Sets the source reference on plot.ly for align .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "editType": "calc", + "fill": { + "color": { + "arrayOk": true, + "description": "Sets the cell fill color. It accepts either a specific color or an array of colors.", + "dflt": "white", + "editType": "calc", + "role": "style", + "valType": "color" + }, + "colorsrc": { + "description": "Sets the source reference on plot.ly for color .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "editType": "calc", + "role": "object" + }, + "font": { + "color": { + "arrayOk": true, + "editType": "calc", + "role": "style", + "valType": "color" + }, + "colorsrc": { + "description": "Sets the source reference on plot.ly for color .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "editType": "calc", + "family": { + "arrayOk": true, + "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", + "noBlank": true, + "role": "style", + "strict": true, + "valType": "string" + }, + "familysrc": { + "description": "Sets the source reference on plot.ly for family .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "role": "object", + "size": { + "arrayOk": true, + "editType": "calc", + "role": "style", + "valType": "number" + }, + "sizesrc": { + "description": "Sets the source reference on plot.ly for size .", + "editType": "none", + "role": "info", + "valType": "string" } }, - "role": "object" + "format": { + "description": "Sets the cell value formatting rule using d3 formatting mini-language which is similar to those of Python. See https://github.com/d3/d3-format/blob/master/README.md#locale_format", + "dflt": [], + "editType": "calc", + "role": "data", + "valType": "data_array" + }, + "formatsrc": { + "description": "Sets the source reference on plot.ly for format .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "height": { + "description": "The height of cells.", + "dflt": 20, + "editType": "calc", + "role": "style", + "valType": "number" + }, + "line": { + "color": { + "arrayOk": true, + "editType": "calc", + "role": "style", + "valType": "color" + }, + "colorsrc": { + "description": "Sets the source reference on plot.ly for color .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "editType": "calc", + "role": "object", + "width": { + "arrayOk": true, + "editType": "calc", + "role": "style", + "valType": "number" + }, + "widthsrc": { + "description": "Sets the source reference on plot.ly for width .", + "editType": "none", + "role": "info", + "valType": "string" + } + }, + "prefix": { + "arrayOk": true, + "description": "Prefix for cell values.", + "dflt": null, + "editType": "calc", + "role": "style", + "valType": "string" + }, + "prefixsrc": { + "description": "Sets the source reference on plot.ly for prefix .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "role": "object", + "suffix": { + "arrayOk": true, + "description": "Suffix for cell values.", + "dflt": null, + "editType": "calc", + "role": "style", + "valType": "string" + }, + "suffixsrc": { + "description": "Sets the source reference on plot.ly for suffix .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "values": { + "description": "Cell values. `values[m][n]` represents the value of the `n`th point in column `m`, therefore the `values[m]` vector length for all columns must be the same (longer vectors will be truncated). Each value must be a finite number or a string.", + "dflt": [], + "editType": "calc", + "role": "data", + "valType": "data_array" + }, + "valuessrc": { + "description": "Sets the source reference on plot.ly for values .", + "editType": "none", + "role": "info", + "valType": "string" + } }, - "enabled": { - "description": "Determines whether this aggregate transform is enabled or disabled.", - "dflt": true, - "valType": "boolean" + "columnorder": { + "description": "Specifies the rendered order of the data columns; for example, a value `2` at position `0` means that column index `0` in the data will be rendered as the third column, as columns have an index base of zero.", + "editType": "calc", + "role": "data", + "valType": "data_array" }, - "groups": { - "arrayOk": true, + "columnordersrc": { + "description": "Sets the source reference on plot.ly for columnorder .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "columnwidth": { + "arrayOk": true, + "description": "The width of cells.", + "dflt": null, + "editType": "calc", + "role": "style", + "valType": "number" + }, + "columnwidthsrc": { + "description": "Sets the source reference on plot.ly for columnwidth .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "customdata": { + "description": "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", + "editType": "calc", + "role": "data", + "valType": "data_array" + }, + "customdatasrc": { + "description": "Sets the source reference on plot.ly for customdata .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "domain": { + "editType": "calc", + "role": "object", + "x": { + "description": "Sets the horizontal domain of this `table` trace (in plot fraction).", + "dflt": [ + 0, + 1 + ], + "editType": "calc", + "items": [ + { + "editType": "calc", + "max": 1, + "min": 0, + "valType": "number" + }, + { + "editType": "calc", + "max": 1, + "min": 0, + "valType": "number" + } + ], + "role": "info", + "valType": "info_array" + }, + "y": { + "description": "Sets the vertical domain of this `table` trace (in plot fraction).", + "dflt": [ + 0, + 1 + ], + "editType": "calc", + "items": [ + { + "editType": "calc", + "max": 1, + "min": 0, + "valType": "number" + }, + { + "editType": "calc", + "max": 1, + "min": 0, + "valType": "number" + } + ], + "role": "info", + "valType": "info_array" + } + }, + "editType": "calc", + "header": { + "align": { + "arrayOk": true, + "description": "Sets the horizontal alignment of the `text` within the box. Has an effect only if `text` spans more two or more lines (i.e. `text` contains one or more
HTML tags) or if an explicit width is set to override the text width.", + "dflt": "center", + "editType": "calc", + "role": "style", + "valType": "enumerated", + "values": [ + "left", + "center", + "right" + ] + }, + "alignsrc": { + "description": "Sets the source reference on plot.ly for align .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "editType": "calc", + "fill": { + "color": { + "arrayOk": true, + "description": "Sets the cell fill color. It accepts either a specific color or an array of colors.", + "dflt": "white", + "editType": "calc", + "role": "style", + "valType": "color" + }, + "colorsrc": { + "description": "Sets the source reference on plot.ly for color .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "editType": "calc", + "role": "object" + }, + "font": { + "color": { + "arrayOk": true, + "editType": "calc", + "role": "style", + "valType": "color" + }, + "colorsrc": { + "description": "Sets the source reference on plot.ly for color .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "editType": "calc", + "family": { + "arrayOk": true, + "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "calc", + "noBlank": true, + "role": "style", + "strict": true, + "valType": "string" + }, + "familysrc": { + "description": "Sets the source reference on plot.ly for family .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "role": "object", + "size": { + "arrayOk": true, + "editType": "calc", + "role": "style", + "valType": "number" + }, + "sizesrc": { + "description": "Sets the source reference on plot.ly for size .", + "editType": "none", + "role": "info", + "valType": "string" + } + }, + "format": { + "description": "Sets the cell value formatting rule using d3 formatting mini-language which is similar to those of Python. See https://github.com/d3/d3-format/blob/master/README.md#locale_format", + "dflt": [], + "editType": "calc", + "role": "data", + "valType": "data_array" + }, + "formatsrc": { + "description": "Sets the source reference on plot.ly for format .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "height": { + "description": "The height of cells.", + "dflt": 28, + "editType": "calc", + "role": "style", + "valType": "number" + }, + "line": { + "color": { + "arrayOk": true, + "editType": "calc", + "role": "style", + "valType": "color" + }, + "colorsrc": { + "description": "Sets the source reference on plot.ly for color .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "editType": "calc", + "role": "object", + "width": { + "arrayOk": true, + "editType": "calc", + "role": "style", + "valType": "number" + }, + "widthsrc": { + "description": "Sets the source reference on plot.ly for width .", + "editType": "none", + "role": "info", + "valType": "string" + } + }, + "prefix": { + "arrayOk": true, + "description": "Prefix for cell values.", + "dflt": null, + "editType": "calc", + "role": "style", + "valType": "string" + }, + "prefixsrc": { + "description": "Sets the source reference on plot.ly for prefix .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "role": "object", + "suffix": { + "arrayOk": true, + "description": "Suffix for cell values.", + "dflt": null, + "editType": "calc", + "role": "style", + "valType": "string" + }, + "suffixsrc": { + "description": "Sets the source reference on plot.ly for suffix .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "values": { + "description": "Header cell values. `values[m][n]` represents the value of the `n`th point in column `m`, therefore the `values[m]` vector length for all columns must be the same (longer vectors will be truncated). Each value must be a finite number or a string.", + "dflt": [], + "editType": "calc", + "role": "data", + "valType": "data_array" + }, + "valuessrc": { + "description": "Sets the source reference on plot.ly for values .", + "editType": "none", + "role": "info", + "valType": "string" + } + }, + "hoverinfo": { + "arrayOk": true, + "description": "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.", + "dflt": "all", + "editType": "none", + "extras": [ + "all", + "none", + "skip" + ], + "flags": [ + "x", + "y", + "z", + "text", + "name" + ], + "role": "info", + "valType": "flaglist" + }, + "hoverinfosrc": { + "description": "Sets the source reference on plot.ly for hoverinfo .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "hoverlabel": { + "bgcolor": { + "arrayOk": true, + "description": "Sets the background color of the hover labels for this trace", + "editType": "none", + "role": "style", + "valType": "color" + }, + "bgcolorsrc": { + "description": "Sets the source reference on plot.ly for bgcolor .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "bordercolor": { + "arrayOk": true, + "description": "Sets the border color of the hover labels for this trace.", + "editType": "none", + "role": "style", + "valType": "color" + }, + "bordercolorsrc": { + "description": "Sets the source reference on plot.ly for bordercolor .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "editType": "calc", + "font": { + "color": { + "arrayOk": true, + "editType": "none", + "role": "style", + "valType": "color" + }, + "colorsrc": { + "description": "Sets the source reference on plot.ly for color .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "description": "Sets the font used in hover labels.", + "editType": "none", + "family": { + "arrayOk": true, + "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The plotly service (at https://plot.ly or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.", + "editType": "none", + "noBlank": true, + "role": "style", + "strict": true, + "valType": "string" + }, + "familysrc": { + "description": "Sets the source reference on plot.ly for family .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "role": "object", + "size": { + "arrayOk": true, + "editType": "none", + "min": 1, + "role": "style", + "valType": "number" + }, + "sizesrc": { + "description": "Sets the source reference on plot.ly for size .", + "editType": "none", + "role": "info", + "valType": "string" + } + }, + "namelength": { + "arrayOk": true, + "description": "Sets the length (in number of characters) of the trace name in the hover labels for this trace. -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.", + "editType": "none", + "min": -1, + "role": "style", + "valType": "integer" + }, + "namelengthsrc": { + "description": "Sets the source reference on plot.ly for namelength .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "role": "object" + }, + "ids": { + "description": "Assigns id labels to each datum. These ids for object constancy of data points during animation.", + "editType": "calc", + "role": "data", + "valType": "data_array" + }, + "idssrc": { + "description": "Sets the source reference on plot.ly for ids .", + "editType": "none", + "role": "info", + "valType": "string" + }, + "legendgroup": { + "description": "Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.", + "dflt": "", + "editType": "style", + "role": "info", + "valType": "string" + }, + "name": { + "description": "Sets the trace name. The trace name appear as the legend item and on hover.", + "editType": "style", + "role": "info", + "valType": "string" + }, + "opacity": { + "description": "Sets the opacity of the trace.", + "dflt": 1, + "editType": "style", + "max": 1, + "min": 0, + "role": "style", + "valType": "number" + }, + "showlegend": { + "description": "Determines whether or not an item corresponding to this trace is shown in the legend.", + "dflt": true, + "editType": "style", + "role": "info", + "valType": "boolean" + }, + "stream": { + "editType": "calc", + "maxpoints": { + "description": "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.", + "dflt": 500, + "editType": "calc", + "max": 10000, + "min": 0, + "role": "info", + "valType": "number" + }, + "role": "object", + "token": { + "description": "The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.", + "editType": "calc", + "noBlank": true, + "role": "info", + "strict": true, + "valType": "string" + } + }, + "type": "table", + "uid": { + "dflt": "", + "editType": "calc", + "role": "info", + "valType": "string" + }, + "visible": { + "description": "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).", + "dflt": true, + "editType": "calc", + "role": "info", + "valType": "enumerated", + "values": [ + true, + false, + "legendonly" + ] + } + }, + "meta": { + "description": "Table view for detailed data viewing. The data are arranged in a grid of rows and columns. Most styling can be specified for columns, rows or individual cells. Table is using a column-major order, ie. the grid is represented as a vector of column vectors." + } + } + }, + "transforms": { + "aggregate": { + "attributes": { + "aggregations": { + "items": { + "aggregation": { + "editType": "calc", + "enabled": { + "description": "Determines whether this aggregation function is enabled or disabled.", + "dflt": true, + "editType": "calc", + "role": "info", + "valType": "boolean" + }, + "func": { + "description": "Sets the aggregation function. All values from the linked `target`, corresponding to the same value in the `groups` array, are collected and reduced by this function. *count* is simply the number of values in the `groups` array, so does not even require the linked array to exist. *first* (*last*) is just the first (last) linked value. Invalid values are ignored, so for example in *avg* they do not contribute to either the numerator or the denominator. Any data type (numeric, date, category) may be aggregated with any function, even though in certain cases it is unlikely to make sense, for example a sum of dates or average of categories. *median* will return the average of the two central values if there is an even count. *mode* will return the first value to reach the maximum count, in case of a tie.", + "dflt": "first", + "editType": "calc", + "role": "info", + "valType": "enumerated", + "values": [ + "count", + "sum", + "avg", + "median", + "mode", + "rms", + "stddev", + "min", + "max", + "first", + "last" + ] + }, + "funcmode": { + "description": "*stddev* supports two formula variants: *sample* (normalize by N-1) and *population* (normalize by N).", + "dflt": "sample", + "editType": "calc", + "role": "info", + "valType": "enumerated", + "values": [ + "sample", + "population" + ] + }, + "role": "object", + "target": { + "description": "A reference to the data array in the parent trace to aggregate. To aggregate by nested variables, use *.* to access them. For example, set `groups` to *marker.color* to aggregate over the marker color array. The referenced array must already exist, unless `func` is *count*, and each array may only be referenced once.", + "editType": "calc", + "role": "info", + "valType": "string" + } + } + }, + "role": "object" + }, + "editType": "calc", + "enabled": { + "description": "Determines whether this aggregate transform is enabled or disabled.", + "dflt": true, + "editType": "calc", + "role": "info", + "valType": "boolean" + }, + "groups": { + "arrayOk": true, "description": "Sets the grouping target to which the aggregation is applied. Data points with matching group values will be coalesced into one point, using the supplied aggregation functions to reduce data in other data arrays. If a string, `groups` is assumed to be a reference to a data array in the parent trace object. To aggregate by nested variables, use *.* to access them. For example, set `groups` to *marker.color* to aggregate about the marker color array. If an array, `groups` is itself the data array by which we aggregate.", "dflt": "x", + "editType": "calc", "noBlank": true, + "role": "info", "strict": true, "valType": "string" }, "groupssrc": { "description": "Sets the source reference on plot.ly for groups .", + "editType": "none", "role": "info", "valType": "string" } @@ -30092,14 +35755,19 @@ }, "filter": { "attributes": { + "editType": "calc", "enabled": { "description": "Determines whether this filter transform is enabled or disabled.", "dflt": true, + "editType": "calc", + "role": "info", "valType": "boolean" }, "operation": { "description": "Sets the filter operation. *=* keeps items equal to `value` *!=* keeps items not equal to `value` *<* keeps items less than `value` *<=* keeps items less than or equal to `value` *>* keeps items greater than `value` *>=* keeps items greater than or equal to `value` *[]* keeps items inside `value[0]` to value[1]` including both bounds` *()* keeps items inside `value[0]` to value[1]` excluding both bounds` *[)* keeps items inside `value[0]` to value[1]` including `value[0]` but excluding `value[1] *(]* keeps items inside `value[0]` to value[1]` excluding `value[0]` but including `value[1] *][* keeps items outside `value[0]` to value[1]` and equal to both bounds` *)(* keeps items outside `value[0]` to value[1]` *](* keeps items outside `value[0]` to value[1]` and equal to `value[0]` *)[* keeps items outside `value[0]` to value[1]` and equal to `value[1]` *{}* keeps items present in a set of values *}{* keeps items not present in a set of values", "dflt": "=", + "editType": "calc", + "role": "info", "valType": "enumerated", "values": [ "=", @@ -30123,19 +35791,24 @@ "preservegaps": { "description": "Determines whether or not gaps in data arrays produced by the filter operation are preserved. Setting this to *true* might be useful when plotting a line chart with `connectgaps` set to *false*.", "dflt": false, + "editType": "calc", + "role": "info", "valType": "boolean" }, "target": { "arrayOk": true, "description": "Sets the filter target by which the filter is applied. If a string, `target` is assumed to be a reference to a data array in the parent trace object. To filter about nested variables, use *.* to access them. For example, set `target` to *marker.color* to filter about the marker color array. If an array, `target` is then the data array by which the filter is applied.", "dflt": "x", + "editType": "calc", "noBlank": true, + "role": "info", "strict": true, "valType": "string" }, "targetcalendar": { "description": "Sets the calendar system to use for `target`, if it is an array of dates. If `target` is a string (eg *x*) we use the corresponding trace attribute (eg `xcalendar`) if it exists, even if `targetcalendar` is provided.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -30159,17 +35832,21 @@ }, "targetsrc": { "description": "Sets the source reference on plot.ly for target .", + "editType": "none", "role": "info", "valType": "string" }, "value": { "description": "Sets the value or values by which to filter. Values are expected to be in the same type as the data linked to `target`. When `operation` is set to one of the comparison values (=,!=,<,>=,>,<=) `value` is expected to be a number or a string. When `operation` is set to one of the interval values ([],(),[),(],][,)(,](,)[) `value` is expected to be 2-item array where the first item is the lower bound and the second item is the upper bound. When `operation`, is set to one of the set values ({},}{) `value` is expected to be an array with as many items as the desired set elements.", "dflt": 0, + "editType": "calc", + "role": "info", "valType": "any" }, "valuecalendar": { "description": "Sets the calendar system to use for `value`, if it is a date.", "dflt": "gregorian", + "editType": "calc", "role": "info", "valType": "enumerated", "values": [ @@ -30195,38 +35872,48 @@ }, "groupby": { "attributes": { + "editType": "calc", "enabled": { "description": "Determines whether this group-by transform is enabled or disabled.", "dflt": true, + "editType": "calc", + "role": "info", "valType": "boolean" }, "groups": { "description": "Sets the groups in which the trace data will be split. For example, with `x` set to *[1, 2, 3, 4]* and `groups` set to *['a', 'b', 'a', 'b']*, the groupby transform with split in one trace with `x` [1, 3] and one trace with `x` [2, 4].", "dflt": [], + "editType": "calc", "role": "data", "valType": "data_array" }, "groupssrc": { "description": "Sets the source reference on plot.ly for groups .", + "editType": "none", "role": "info", "valType": "string" }, "nameformat": { "description": "Pattern by which grouped traces are named. If only one trace is present, defaults to the group name (`\"%{group}\"`), otherwise defaults to the group name with trace name (`\"%{group} (%{trace})\"`). Available escape sequences are `%{group}`, which inserts the group name, and `%{trace}`, which inserts the trace name. If grouping GDP data by country when more than one trace is present, for example, the default \"%{group} (%{trace})\" would return \"Monaco (GDP per capita)\".", + "editType": "calc", + "role": "info", "valType": "string" }, "styles": { "items": { "style": { + "editType": "calc", "role": "object", "target": { "description": "The group value which receives these styles.", + "editType": "calc", "role": "info", "valType": "string" }, "value": { "description": "Sets each group styles. For example, with `groups` set to *['a', 'b', 'a', 'b']* and `styles` set to *[{target: 'a', value: { marker: { color: 'red' } }}] marker points in group *'a'* will be drawn in red.", "dflt": {}, + "editType": "calc", "role": "info", "valType": "any" } @@ -30241,14 +35928,19 @@ }, "sort": { "attributes": { + "editType": "calc", "enabled": { "description": "Determines whether this sort transform is enabled or disabled.", "dflt": true, + "editType": "calc", + "role": "info", "valType": "boolean" }, "order": { "description": "Sets the sort transform order.", "dflt": "ascending", + "editType": "calc", + "role": "info", "valType": "enumerated", "values": [ "ascending", @@ -30259,12 +35951,15 @@ "arrayOk": true, "description": "Sets the target by which the sort transform is applied. If a string, *target* is assumed to be a reference to a data array in the parent trace object. To sort about nested variables, use *.* to access them. For example, set `target` to *marker.size* to sort about the marker size array. If an array, *target* is then the data array by which the sort transform is applied.", "dflt": "x", + "editType": "calc", "noBlank": true, + "role": "info", "strict": true, "valType": "string" }, "targetsrc": { "description": "Sets the source reference on plot.ly for target .", + "editType": "none", "role": "info", "valType": "string" } diff --git a/plotly/version.py b/plotly/version.py index 37f038a14c5..a33997dd100 100644 --- a/plotly/version.py +++ b/plotly/version.py @@ -1 +1 @@ -__version__ = '2.0.16' +__version__ = '2.1.0'