From 4bdfe468f5a411ff2bedeef1f31d57eb037c6943 Mon Sep 17 00:00:00 2001 From: michaelbabyn Date: Tue, 4 Sep 2018 14:00:12 -0400 Subject: [PATCH 1/5] improve search link for array properties --- _includes/reference-block.html | 1 + 1 file changed, 1 insertion(+) diff --git a/_includes/reference-block.html b/_includes/reference-block.html index e3c27530bc4c..9c73c18b61ed 100644 --- a/_includes/reference-block.html +++ b/_includes/reference-block.html @@ -126,6 +126,7 @@ {% for item in obj[1].items %} {% assign attribute = item[1] %} + {% capture localparentlink %}{{include.parentlink}}-{{obj[0]}}-items-{{item[0]}}{% endcapture %} {% endfor %} {% else %} {% assign attribute = obj[1] %} From 9c8504e29f8b4303f338725ca70600ca4f535ac0 Mon Sep 17 00:00:00 2001 From: michaelbabyn Date: Tue, 4 Sep 2018 22:32:57 -0400 Subject: [PATCH 2/5] modify update_ref_search to use recursive function to increase max depth of nested attributes --- update_ref_search.ipynb | 4347 +-------------------------------------- 1 file changed, 87 insertions(+), 4260 deletions(-) diff --git a/update_ref_search.ipynb b/update_ref_search.ipynb index 7e5b4656e28e..4b84482300e5 100644 --- a/update_ref_search.ipynb +++ b/update_ref_search.ipynb @@ -2,19 +2,20 @@ "cells": [ { "cell_type": "code", - "execution_count": 7, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import json\n", + "from collections import OrderedDict\n", "import os\n", "\n", - "from algoliasearch import algoliasearch\n", + "#from algoliasearch import algoliasearch\n", "\n", "## Algolia Credentials\n", "\n", - "client = algoliasearch.Client(\"7EK9KHJW8M\", os.environ['ALGOLIA_API_KEY'])\n", - "index = client.init_index('schema')\n", + "#client = algoliasearch.Client(\"7EK9KHJW8M\", os.environ['ALGOLIA_API_KEY'])\n", + "#index = client.init_index('schema')\n", "\n", "## Load plotschema.json\n", "# Note _data/plotschema.json is updated upon each deploy\n", @@ -25,7 +26,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -45,4313 +46,139 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "[{'description': u'Draws sets of triangles with coordinates given by three 1-dimensional arrays in `x`, `y`, `z` and (1) a sets of `i`, `j`, `k` indices (2) Delaunay triangulation or (3) the Alpha-shape algorithm or (4) the Convex-hull algorithm',\n", - " 'name': u'mesh3d',\n", - " 'permalink': u'reference/#mesh3d'},\n", - " {'description': u'Plots a scatter trace on either the first carpet axis or the carpet axis with a matching `carpet` attribute.',\n", - " 'name': u'scattercarpet',\n", - " 'permalink': u'reference/#scattercarpet'},\n", - " {'description': u'Provides similar functionality to the \"scatter\" type but on a ternary phase diagram. The data is provided by at least two arrays out of `a`, `b`, `c` triplets.',\n", - " 'name': u'scatterternary',\n", - " 'permalink': u'reference/#scatterternary'},\n", - " {'description': u'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`.',\n", - " 'name': u'surface',\n", - " 'permalink': u'reference/#surface'},\n", - " {'description': u'Sankey plots for network flow data analysis. The nodes are specified in `nodes` and the links between sources and targets in `links`. The colors are set in `nodes[i].color` and `links[i].color`; otherwise defaults are used.',\n", - " 'name': u'sankey',\n", - " 'permalink': u'reference/#sankey'},\n", - " {'description': u'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.',\n", - " 'name': u'table',\n", - " 'permalink': u'reference/#table'},\n", - " {'description': u'In vertical (horizontal) violin plots, statistics are computed using `y` (`x`) values. By supplying an `x` (`y`) array, one violin per distinct x (y) value is drawn If no `x` (`y`) {array} is provided, a single violin is drawn. That violin position is then positioned with with `name` or with `x0` (`y0`) if provided.',\n", - " 'name': u'violin',\n", - " 'permalink': u'reference/#violin'},\n", - " {'description': u'The data from which contour lines are computed is set in `z`. Data in `z` must be a {2D array} of numbers. Say that `z` has N rows and M columns, then by default, these N rows correspond to N y coordinates (set in `y` or auto-generated) and the M columns correspond to M x coordinates (set in `x` or auto-generated). By setting `transpose` to \"true\", the above behavior is flipped.',\n", - " 'name': u'contour',\n", - " 'permalink': u'reference/#contour'},\n", - " {'description': u'The data describing carpet axis layout is set in `y` and (optionally) also `x`. If only `y` is present, `x` the plot is interpreted as a cheater plot and is filled in using the `y` values. `x` and `y` may either be 2D arrays matching with each dimension matching that of `a` and `b`, or they may be 1D arrays with total length equal to that of `a` and `b`.',\n", - " 'name': u'carpet',\n", - " 'permalink': u'reference/#carpet'},\n", - " {'description': u'Plots contours on either the first carpet axis or the carpet axis with a matching `carpet` attribute. Data `z` is interpreted as matching that of the corresponding carpet axis.',\n", - " 'name': u'contourcarpet',\n", - " 'permalink': u'reference/#contourcarpet'},\n", - " {'name': u'area', 'permalink': u'reference/#area'},\n", - " {'description': u'The ohlc (short for Open-High-Low-Close) is a style of financial chart describing open, high, low and close for a given `x` coordinate (most likely time). The tip of the lines represent the `low` and `high` values and the horizontal segments represent the `open` and `close` values. Sample points where the close value is higher (lower) then the open value are called increasing (decreasing). By default, increasing candles are drawn in green whereas decreasing are drawn in red.',\n", - " 'name': u'ohlc',\n", - " 'permalink': u'reference/#ohlc'},\n", - " {'description': u'The data that describes the heatmap value-to-color mapping is set in `z`. Data in `z` can either be a {2D array} of values (ragged or not) or a 1D array of values. In the case where `z` is a {2D array}, say that `z` has N rows and M columns. Then, by default, the resulting heatmap will have N partitions along the y axis and M partitions along the x axis. In other words, the i-th row/ j-th column cell in `z` is mapped to the i-th partition of the y axis (starting from the bottom of the plot) and the j-th partition of the x-axis (starting from the left of the plot). This behavior can be flipped by using `transpose`. Moreover, `x` (`y`) can be provided with M or M+1 (N or N+1) elements. If M (N), then the coordinates correspond to the center of the heatmap cells and the cells have equal width. If M+1 (N+1), then the coordinates correspond to the edges of the heatmap cells. In the case where `z` is a 1D {array}, the x and y coordinates must be provided in `x` and `y` respectively to form data triplets.',\n", - " 'name': u'heatmap',\n", - " 'permalink': u'reference/#heatmap'},\n", - " {'description': u'The data visualized as scatter point, lines or marker symbols on a Mapbox GL geographic map is provided by longitude/latitude pairs in `lon` and `lat`.',\n", - " 'name': u'scattermapbox',\n", - " 'permalink': u'reference/#scattermapbox'},\n", - " {'description': u'The data visualized as scatter point or lines in 3D dimension is set in `x`, `y`, `z`. Text (appearing either on the chart or on hover only) is via `text`. Bubble charts are achieved by setting `marker.size` and/or `marker.color` Projections are achieved via `projection`. Surface fills are achieved via `surfaceaxis`.',\n", - " 'name': u'scatter3d',\n", - " 'permalink': u'reference/#scatter3d'},\n", - " {'description': u'The data visualized as a point cloud set in `x` and `y` using the WebGl plotting engine.',\n", - " 'name': u'pointcloud',\n", - " 'permalink': u'reference/#pointcloud'},\n", - " {'description': u'The data visualized as scatter point or lines is set in `x` and `y` using the WebGL plotting engine. Bubble charts are achieved by setting `marker.size` and/or `marker.color` to a numerical arrays.',\n", - " 'name': u'scattergl',\n", - " 'permalink': u'reference/#scattergl'},\n", - " {'description': u'The sample data from which statistics are computed is set in `x` for vertically spanning histograms and in `y` for horizontally spanning histograms. Binning options are set `xbins` and `ybins` respectively if no aggregation data is provided.',\n", - " 'name': u'histogram',\n", - " 'permalink': u'reference/#histogram'},\n", - " {'description': u'A data visualized by the sectors of the pie is set in `values`. The sector labels are set in `labels`. The sector colors are set in `marker.colors`',\n", - " 'name': u'pie',\n", - " 'permalink': u'reference/#pie'},\n", - " {'description': u'WebGL version of the heatmap trace type.',\n", - " 'name': u'heatmapgl',\n", - " 'permalink': u'reference/#heatmapgl'},\n", - " {'description': u'The scatterpolar trace type encompasses line charts, scatter charts, text charts, and bubble charts in polar coordinates. The data visualized as scatter point or lines is set in `r` (radial) and `theta` (angular) coordinates Text (appearing either on the chart or on hover only) is via `text`. Bubble charts are achieved by setting `marker.size` and/or `marker.color` to numerical arrays.',\n", - " 'name': u'scatterpolar',\n", - " 'permalink': u'reference/#scatterpolar'},\n", - " {'description': u'The sample data from which statistics are computed is set in `x` and `y` (where `x` and `y` represent marginal distributions, binning is set in `xbins` and `ybins` in this case) or `z` (where `z` represent the 2D distribution and binning set, binning is set by `x` and `y` in this case). The resulting distribution is visualized as a heatmap.',\n", - " 'name': u'histogram2d',\n", - " 'permalink': u'reference/#histogram2d'},\n", - " {'description': u'The data visualized as scatter point or lines on a geographic map is provided either by longitude/latitude pairs in `lon` and `lat` respectively or by geographic location IDs or names in `locations`.',\n", - " 'name': u'scattergeo',\n", - " 'permalink': u'reference/#scattergeo'},\n", - " {'description': u'In vertical (horizontal) box plots, statistics are computed using `y` (`x`) values. By supplying an `x` (`y`) array, one box per distinct x (y) value is drawn If no `x` (`y`) {array} is provided, a single box is drawn. That box position is then positioned with with `name` or with `x0` (`y0`) if provided. Each box spans from quartile 1 (Q1) to quartile 3 (Q3). The second quartile (Q2) is marked by a line inside the box. By default, the whiskers correspond to the box\\' edges +/- 1.5 times the interquartile range (IQR = Q3-Q1), see \"boxpoints\" for other options.',\n", - " 'name': u'box',\n", - " 'permalink': u'reference/#box'},\n", - " {'description': u'The data visualized by the span of the bars is set in `y` if `orientation` is set th \"v\" (the default) and the labels are set in `x`. By setting `orientation` to \"h\", the roles are interchanged.',\n", - " 'name': u'bar',\n", - " 'permalink': u'reference/#bar'},\n", - " {'description': u'The data that describes the choropleth value-to-color mapping is set in `z`. The geographic locations corresponding to each value in `z` are set in `locations`.',\n", - " 'name': u'choropleth',\n", - " 'permalink': u'reference/#choropleth'},\n", - " {'description': u'The candlestick is a style of financial chart describing open, high, low and close for a given `x` coordinate (most likely time). The boxes represent the spread between the `open` and `close` values and the lines represent the spread between the `low` and `high` values Sample points where the close value is higher (lower) then the open value are called increasing (decreasing). By default, increasing candles are drawn in green whereas decreasing are drawn in red.',\n", - " 'name': u'candlestick',\n", - " 'permalink': u'reference/#candlestick'},\n", - " {'description': u'The scatterpolargl trace type encompasses line charts, scatter charts, and bubble charts in polar coordinates using the WebGL plotting engine. The data visualized as scatter point or lines is set in `r` (radial) and `theta` (angular) coordinates Bubble charts are achieved by setting `marker.size` and/or `marker.color` to numerical arrays.',\n", - " 'name': u'scatterpolargl',\n", - " 'permalink': u'reference/#scatterpolargl'},\n", - " {'description': u'Parallel coordinates for multidimensional exploratory data analysis. The samples are specified in `dimensions`. The colors are set in `line.color`.',\n", - " 'name': u'parcoords',\n", - " 'permalink': u'reference/#parcoords'},\n", - " {'description': u'The sample data from which statistics are computed is set in `x` and `y` (where `x` and `y` represent marginal distributions, binning is set in `xbins` and `ybins` in this case) or `z` (where `z` represent the 2D distribution and binning set, binning is set by `x` and `y` in this case). The resulting distribution is visualized as a contour plot.',\n", - " 'name': u'histogram2dcontour',\n", - " 'permalink': u'reference/#histogram2dcontour'},\n", - " {'description': u'The scatter trace type encompasses line charts, scatter charts, text charts, and bubble charts. The data visualized as scatter point or lines is set in `x` and `y`. Text (appearing either on the chart or on hover only) is via `text`. Bubble charts are achieved by setting `marker.size` and/or `marker.color` to numerical arrays.',\n", - " 'name': u'scatter',\n", - " 'permalink': u'reference/#scatter'}]" + "34" ] }, - "execution_count": 9, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "schema" + "len(schema)" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ - "## Data Level 2: Nested Attributes\n", - "\n", - "for i in p['schema']['traces']:\n", - " for att1 in p['schema']['traces'][i]['attributes']:\n", - " if not any(value in att1 for value in (\"src\", \"_deprecated\", \"impliedEdits\", \"uid\", \"editType\")):\n", - " try:\n", - " attribute = {}\n", - " attribute ['name'] = i+' > '+att1\n", - " attribute ['permalink'] = 'reference/#'+i+'-'+att1\n", - " attribute ['description'] = (p['schema']['traces'][i]['attributes'][att1]['description']).replace('*', '\"')\n", - " schema.append(attribute)\n", - " except:\n", - " attribute = {}\n", - " attribute ['name'] = i+' > '+att1\n", - " attribute ['permalink'] = 'reference/#'+i+'-'+att1\n", - " attribute ['description'] = 'Properties for '+att1\n", - " schema.append(attribute)\n", - " for att2 in p['schema']['traces'][i]['attributes'][att1]:\n", - " if not any(value in att2 for value in (\"src\", \"_deprecated\", \"impliedEdits\", \"uid\", \"editType\")):\n", - " try:\n", - " if isinstance(p['schema']['traces'][i]['attributes'][att1][att2], dict):\n", - " try:\n", - " attribute = {}\n", - " attribute ['name'] = i+' > '+att1+' > '+att2\n", - " attribute ['permalink'] = 'reference/#'+i+'-'+att1+'-'+att2\n", - " attribute ['description'] = (p['schema']['traces'][i]['attributes'][att1][att2]['description']).replace('*', '\"')\n", - " schema.append(attribute)\n", - " except:\n", - " attribute = {}\n", - " attribute ['name'] = i+' > '+att1+' > '+att2\n", - " attribute ['permalink'] = 'reference/#'+i+'-'+att1+'-'+att2\n", - " attribute ['description'] = 'Properties for '+att2\n", - " schema.append(attribute)\n", - " except:\n", - " pass\n", - " try:\n", - " for att3 in p['schema']['traces'][i]['attributes'][att1][att2]:\n", - " if not any(value in att3 for value in (\"src\", \"_deprecated\", \"impliedEdits\", \"uid\", \"editType\")):\n", - " try:\n", - " if isinstance(p['schema']['traces'][i]['attributes'][att1][att2][att3], dict):\n", - " try:\n", - " attribute = {}\n", - " attribute ['name'] = i+' > '+att1+' > '+att2+' > '+att3\n", - " attribute ['permalink'] = 'reference/#'+i+'-'+att1+'-'+att2+'-'+att3\n", - " attribute ['description'] = (p['schema']['traces'][i]['attributes'][att1][att2][att3]['description']).replace('*', '\"')\n", - " schema.append(attribute)\n", - " except:\n", - " attribute = {}\n", - " attribute ['name'] = i+' > '+att1+' > '+att2+' > '+att3\n", - " attribute ['permalink'] = 'reference/#'+i+'-'+att1+'-'+att2+'-'+att3\n", - " attribute ['description'] = 'Properties for '+att3\n", - " schema.append(attribute)\n", - " except:\n", - " pass\n", - " try:\n", - " for att4 in p['schema']['traces'][i]['attributes'][att1][att2][att3]:\n", - " if not any(value in att4 for value in (\"src\", \"_deprecated\", \"impliedEdits\", \"uid\", \"editType\")):\n", - " try:\n", - " if isinstance(p['schema']['traces'][i]['attributes'][att1][att2][att3][att4], dict):\n", - " try:\n", - " attribute = {}\n", - " attribute ['name'] = i+' > '+att1+' > '+att2+' > '+att3+' > '+att4\n", - " attribute ['permalink'] = 'reference/#'+i+'-'+att1+'-'+att2+'-'+att3+'-'+att4\n", - " attribute ['description'] = (p['schema']['traces'][i]['attributes'][att1][att2][att3][att4]['description']).replace('*', '\"')\n", - " schema.append(attribute)\n", - " except:\n", - " attribute = {}\n", - " attribute ['name'] = i+' > '+att1+' > '+att2+' > '+att3+' > '+att4\n", - " attribute ['permalink'] = 'reference/#'+i+'-'+att1+'-'+att2+'-'+att3+'-'+att4\n", - " attribute ['description'] = 'Properties for '+att4\n", - " schema.append(attribute)\n", - " except:\n", - " pass\n", - " except:\n", - " pass\n", - " except:\n", - " pass" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [], - "source": [ - "## Layout Attributes\n", - "\n", - "for att1 in p['schema']['layout']['layoutAttributes']:\n", - " if not any(value in att1 for value in (\"src\", \"_deprecated\", \"impliedEdits\", \"uid\", \"editType\")):\n", + "def next_level(previous_level,chain_dict):\n", + " for sub_attr in previous_level:\n", " try:\n", - " attribute = {}\n", - " attribute ['name'] = 'Layout > '+att1\n", - " attribute ['permalink'] = 'reference/#layout-'+att1\n", - " attribute ['description'] = (p['schema']['layout']['layoutAttributes'][att1]['description']).replace('*', '\"')\n", - " schema.append(attribute)\n", - " except:\n", - " attribute = {}\n", - " attribute ['name'] = 'Layout > '+att1\n", - " attribute ['permalink'] = 'reference/#layout-'+att1\n", - " attribute ['description'] = 'Properties for '+att1\n", - " schema.append(attribute)\n", - " for att2 in p['schema']['layout']['layoutAttributes'][att1]:\n", - " if not any(value in att2 for value in (\"src\", \"_deprecated\", \"impliedEdits\", \"uid\", \"editType\", \"items\")):\n", - " try:\n", - " if isinstance(p['schema']['layout']['layoutAttributes'][att1][att2], dict):\n", + " if isinstance(previous_level[sub_attr],dict):\n", + " if not any(value in sub_attr for value in (\"src\", \"_deprecated\", \"impliedEdits\", \"uid\", \"editType\")):\n", " try:\n", " attribute = {}\n", - " attribute ['name'] = 'Layout > '+att1+' > '+att2\n", - " attribute ['permalink'] = 'reference/#layout-'+att1+'-'+att2\n", - " attribute ['description'] = (p['schema']['layout']['layoutAttributes'][att1][att2]['description']).replace('*', '\"')\n", + " attribute ['name'] = chain_dict['name']+' > '+sub_attr\n", + " attribute ['permalink'] = chain_dict['permalink']+'-'+sub_attr\n", + " attribute ['description'] = (previous_level[sub_attr]['description']).replace('*', '\"')\n", " schema.append(attribute)\n", + " next_level(previous_level[sub_attr],{'name':attribute['name'], 'permalink':attribute['permalink']})\n", " except:\n", " attribute = {}\n", - " attribute ['name'] = 'Layout > '+att1+' > '+att2\n", - " attribute ['permalink'] = 'reference/#layout-'+att1+'-'+att2\n", - " attribute ['description'] = 'Properties for '+att2\n", + " attribute ['name'] = chain_dict['name']+' > '+sub_attr\n", + " attribute ['permalink'] = chain_dict['permalink']+'-'+sub_attr\n", + " attribute ['description'] = 'Properties for '+sub_attr\n", " schema.append(attribute)\n", - " except:\n", - " pass\n", - " try:\n", - " for att3 in p['schema']['layout']['layoutAttributes'][att1][att2]:\n", - " if not any(value in att3 for value in (\"src\", \"_deprecated\", \"impliedEdits\", \"uid\", \"editType\")):\n", - " if isinstance(p['schema']['layout']['layoutAttributes'][att1][att2][att3], dict):\n", - " try:\n", - " attribute = {}\n", - " attribute ['name'] = 'Layout > '+att1+' > '+att2+' > '+att3\n", - " attribute ['permalink'] = 'reference/#layout-'+att1+'-'+att2+'-'+att3\n", - " attribute ['description'] = (p['schema']['layout']['layoutAttributes'][att1][att2][att3]['description']).replace('*', '\"')\n", - " schema.append(attribute)\n", - " except:\n", - " attribute = {}\n", - " attribute ['name'] = 'Layout > '+att1+' > '+att2+' > '+att3\n", - " attribute ['permalink'] = 'reference/#layout-'+att1+'-'+att2+'-'+att3\n", - " attribute ['description'] = 'Properties for '+att3\n", - " schema.append(attribute)\n", - " try:\n", - " for att4 in p['schema']['layout']['layoutAttributes'][att1][att2][att3]:\n", - " if not any(value in att4 for value in (\"src\", \"_deprecated\", \"impliedEdits\", \"uid\", \"editType\")):\n", - " if isinstance(p['schema']['layout']['layoutAttributes'][att1][att2][att3][att4], dict):\n", - " try:\n", - " attribute = {}\n", - " attribute ['name'] = 'Layout > '+att1+' > '+att2+' > '+att3+' > '+att4\n", - " attribute ['permalink'] = 'reference/#layout-'+att1+'-'+att2+'-'+att3+'-'+att4\n", - " attribute ['description'] = (p['schema']['layout']['layoutAttributes'][att1][att2][att3][att4]['description']).replace('*', '\"')\n", - " schema.append(attribute)\n", - " except:\n", - " attribute = {}\n", - " attribute ['name'] = 'Layout > '+att1+' > '+att2+' > '+att3+' > '+att4\n", - " attribute ['permalink'] = 'reference/#layout-'+att1+'-'+att2+'-'+att3+'-'+att4\n", - " attribute ['description'] = 'Properties for '+att4\n", - " schema.append(attribute)\n", - " except:\n", - " pass\n", - " except:\n", - " pass\n", - "\n" + " next_level(previous_level[sub_attr],{'name':attribute['name'], 'permalink':attribute['permalink']})\n", + " except:\n", + " pass" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "for i in p['schema']['traces']:\n", + " chain_dict = {'name':i, 'permalink':'reference/#'+i }\n", + " next_level(p['schema']['traces'][i]['attributes'], chain_dict)" ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "[{'description': u'Draws sets of triangles with coordinates given by three 1-dimensional arrays in `x`, `y`, `z` and (1) a sets of `i`, `j`, `k` indices (2) Delaunay triangulation or (3) the Alpha-shape algorithm or (4) the Convex-hull algorithm',\n", - " 'name': u'mesh3d',\n", - " 'permalink': u'reference/#mesh3d'},\n", - " {'description': u'Plots a scatter trace on either the first carpet axis or the carpet axis with a matching `carpet` attribute.',\n", - " 'name': u'scattercarpet',\n", - " 'permalink': u'reference/#scattercarpet'},\n", - " {'description': u'Provides similar functionality to the \"scatter\" type but on a ternary phase diagram. The data is provided by at least two arrays out of `a`, `b`, `c` triplets.',\n", - " 'name': u'scatterternary',\n", - " 'permalink': u'reference/#scatterternary'},\n", - " {'description': u'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`.',\n", - " 'name': u'surface',\n", - " 'permalink': u'reference/#surface'},\n", - " {'description': u'Sankey plots for network flow data analysis. The nodes are specified in `nodes` and the links between sources and targets in `links`. The colors are set in `nodes[i].color` and `links[i].color`; otherwise defaults are used.',\n", - " 'name': u'sankey',\n", - " 'permalink': u'reference/#sankey'},\n", - " {'description': u'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.',\n", - " 'name': u'table',\n", - " 'permalink': u'reference/#table'},\n", - " {'description': u'In vertical (horizontal) violin plots, statistics are computed using `y` (`x`) values. By supplying an `x` (`y`) array, one violin per distinct x (y) value is drawn If no `x` (`y`) {array} is provided, a single violin is drawn. That violin position is then positioned with with `name` or with `x0` (`y0`) if provided.',\n", - " 'name': u'violin',\n", - " 'permalink': u'reference/#violin'},\n", - " {'description': u'The data from which contour lines are computed is set in `z`. Data in `z` must be a {2D array} of numbers. Say that `z` has N rows and M columns, then by default, these N rows correspond to N y coordinates (set in `y` or auto-generated) and the M columns correspond to M x coordinates (set in `x` or auto-generated). By setting `transpose` to \"true\", the above behavior is flipped.',\n", - " 'name': u'contour',\n", - " 'permalink': u'reference/#contour'},\n", - " {'description': u'The data describing carpet axis layout is set in `y` and (optionally) also `x`. If only `y` is present, `x` the plot is interpreted as a cheater plot and is filled in using the `y` values. `x` and `y` may either be 2D arrays matching with each dimension matching that of `a` and `b`, or they may be 1D arrays with total length equal to that of `a` and `b`.',\n", - " 'name': u'carpet',\n", - " 'permalink': u'reference/#carpet'},\n", - " {'description': u'Plots contours on either the first carpet axis or the carpet axis with a matching `carpet` attribute. Data `z` is interpreted as matching that of the corresponding carpet axis.',\n", - " 'name': u'contourcarpet',\n", - " 'permalink': u'reference/#contourcarpet'},\n", - " {'name': u'area', 'permalink': u'reference/#area'},\n", - " {'description': u'The ohlc (short for Open-High-Low-Close) is a style of financial chart describing open, high, low and close for a given `x` coordinate (most likely time). The tip of the lines represent the `low` and `high` values and the horizontal segments represent the `open` and `close` values. Sample points where the close value is higher (lower) then the open value are called increasing (decreasing). By default, increasing candles are drawn in green whereas decreasing are drawn in red.',\n", - " 'name': u'ohlc',\n", - " 'permalink': u'reference/#ohlc'},\n", - " {'description': u'The data that describes the heatmap value-to-color mapping is set in `z`. Data in `z` can either be a {2D array} of values (ragged or not) or a 1D array of values. In the case where `z` is a {2D array}, say that `z` has N rows and M columns. Then, by default, the resulting heatmap will have N partitions along the y axis and M partitions along the x axis. In other words, the i-th row/ j-th column cell in `z` is mapped to the i-th partition of the y axis (starting from the bottom of the plot) and the j-th partition of the x-axis (starting from the left of the plot). This behavior can be flipped by using `transpose`. Moreover, `x` (`y`) can be provided with M or M+1 (N or N+1) elements. If M (N), then the coordinates correspond to the center of the heatmap cells and the cells have equal width. If M+1 (N+1), then the coordinates correspond to the edges of the heatmap cells. In the case where `z` is a 1D {array}, the x and y coordinates must be provided in `x` and `y` respectively to form data triplets.',\n", - " 'name': u'heatmap',\n", - " 'permalink': u'reference/#heatmap'},\n", - " {'description': u'The data visualized as scatter point, lines or marker symbols on a Mapbox GL geographic map is provided by longitude/latitude pairs in `lon` and `lat`.',\n", - " 'name': u'scattermapbox',\n", - " 'permalink': u'reference/#scattermapbox'},\n", - " {'description': u'The data visualized as scatter point or lines in 3D dimension is set in `x`, `y`, `z`. Text (appearing either on the chart or on hover only) is via `text`. Bubble charts are achieved by setting `marker.size` and/or `marker.color` Projections are achieved via `projection`. Surface fills are achieved via `surfaceaxis`.',\n", - " 'name': u'scatter3d',\n", - " 'permalink': u'reference/#scatter3d'},\n", - " {'description': u'The data visualized as a point cloud set in `x` and `y` using the WebGl plotting engine.',\n", - " 'name': u'pointcloud',\n", - " 'permalink': u'reference/#pointcloud'},\n", - " {'description': u'The data visualized as scatter point or lines is set in `x` and `y` using the WebGL plotting engine. Bubble charts are achieved by setting `marker.size` and/or `marker.color` to a numerical arrays.',\n", - " 'name': u'scattergl',\n", - " 'permalink': u'reference/#scattergl'},\n", - " {'description': u'The sample data from which statistics are computed is set in `x` for vertically spanning histograms and in `y` for horizontally spanning histograms. Binning options are set `xbins` and `ybins` respectively if no aggregation data is provided.',\n", - " 'name': u'histogram',\n", - " 'permalink': u'reference/#histogram'},\n", - " {'description': u'A data visualized by the sectors of the pie is set in `values`. The sector labels are set in `labels`. The sector colors are set in `marker.colors`',\n", - " 'name': u'pie',\n", - " 'permalink': u'reference/#pie'},\n", - " {'description': u'WebGL version of the heatmap trace type.',\n", - " 'name': u'heatmapgl',\n", - " 'permalink': u'reference/#heatmapgl'},\n", - " {'description': u'The scatterpolar trace type encompasses line charts, scatter charts, text charts, and bubble charts in polar coordinates. The data visualized as scatter point or lines is set in `r` (radial) and `theta` (angular) coordinates Text (appearing either on the chart or on hover only) is via `text`. Bubble charts are achieved by setting `marker.size` and/or `marker.color` to numerical arrays.',\n", - " 'name': u'scatterpolar',\n", - " 'permalink': u'reference/#scatterpolar'},\n", - " {'description': u'The sample data from which statistics are computed is set in `x` and `y` (where `x` and `y` represent marginal distributions, binning is set in `xbins` and `ybins` in this case) or `z` (where `z` represent the 2D distribution and binning set, binning is set by `x` and `y` in this case). The resulting distribution is visualized as a heatmap.',\n", - " 'name': u'histogram2d',\n", - " 'permalink': u'reference/#histogram2d'},\n", - " {'description': u'The data visualized as scatter point or lines on a geographic map is provided either by longitude/latitude pairs in `lon` and `lat` respectively or by geographic location IDs or names in `locations`.',\n", - " 'name': u'scattergeo',\n", - " 'permalink': u'reference/#scattergeo'},\n", - " {'description': u'In vertical (horizontal) box plots, statistics are computed using `y` (`x`) values. By supplying an `x` (`y`) array, one box per distinct x (y) value is drawn If no `x` (`y`) {array} is provided, a single box is drawn. That box position is then positioned with with `name` or with `x0` (`y0`) if provided. Each box spans from quartile 1 (Q1) to quartile 3 (Q3). The second quartile (Q2) is marked by a line inside the box. By default, the whiskers correspond to the box\\' edges +/- 1.5 times the interquartile range (IQR = Q3-Q1), see \"boxpoints\" for other options.',\n", - " 'name': u'box',\n", - " 'permalink': u'reference/#box'},\n", - " {'description': u'The data visualized by the span of the bars is set in `y` if `orientation` is set th \"v\" (the default) and the labels are set in `x`. By setting `orientation` to \"h\", the roles are interchanged.',\n", - " 'name': u'bar',\n", - " 'permalink': u'reference/#bar'},\n", - " {'description': u'The data that describes the choropleth value-to-color mapping is set in `z`. The geographic locations corresponding to each value in `z` are set in `locations`.',\n", - " 'name': u'choropleth',\n", - " 'permalink': u'reference/#choropleth'},\n", - " {'description': u'The candlestick is a style of financial chart describing open, high, low and close for a given `x` coordinate (most likely time). The boxes represent the spread between the `open` and `close` values and the lines represent the spread between the `low` and `high` values Sample points where the close value is higher (lower) then the open value are called increasing (decreasing). By default, increasing candles are drawn in green whereas decreasing are drawn in red.',\n", - " 'name': u'candlestick',\n", - " 'permalink': u'reference/#candlestick'},\n", - " {'description': u'The scatterpolargl trace type encompasses line charts, scatter charts, and bubble charts in polar coordinates using the WebGL plotting engine. The data visualized as scatter point or lines is set in `r` (radial) and `theta` (angular) coordinates Bubble charts are achieved by setting `marker.size` and/or `marker.color` to numerical arrays.',\n", - " 'name': u'scatterpolargl',\n", - " 'permalink': u'reference/#scatterpolargl'},\n", - " {'description': u'Parallel coordinates for multidimensional exploratory data analysis. The samples are specified in `dimensions`. The colors are set in `line.color`.',\n", - " 'name': u'parcoords',\n", - " 'permalink': u'reference/#parcoords'},\n", - " {'description': u'The sample data from which statistics are computed is set in `x` and `y` (where `x` and `y` represent marginal distributions, binning is set in `xbins` and `ybins` in this case) or `z` (where `z` represent the 2D distribution and binning set, binning is set by `x` and `y` in this case). The resulting distribution is visualized as a contour plot.',\n", - " 'name': u'histogram2dcontour',\n", - " 'permalink': u'reference/#histogram2dcontour'},\n", - " {'description': u'The scatter trace type encompasses line charts, scatter charts, text charts, and bubble charts. The data visualized as scatter point or lines is set in `x` and `y`. Text (appearing either on the chart or on hover only) is via `text`. Bubble charts are achieved by setting `marker.size` and/or `marker.color` to numerical arrays.',\n", - " 'name': u'scatter',\n", - " 'permalink': u'reference/#scatter'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > cmin',\n", - " 'permalink': u'reference/#mesh3d-cmin'},\n", - " {'description': u'Properties for stream',\n", - " 'name': u'mesh3d > stream',\n", - " 'permalink': u'reference/#mesh3d-stream'},\n", - " {'description': u'The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.',\n", - " 'name': u'mesh3d > stream > token',\n", - " 'permalink': u'reference/#mesh3d-stream-token'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > stream > maxpoints',\n", - " 'permalink': u'reference/#mesh3d-stream-maxpoints'},\n", - " {'description': u'Sets the color of the whole mesh',\n", - " 'name': u'mesh3d > color',\n", - " 'permalink': u'reference/#mesh3d-color'},\n", - " {'description': u'Sets the text elements associated with the vertices. If trace `hoverinfo` contains a \"text\" flag and \"hovertext\" is not set, these elements will be seen in the hover labels.',\n", - " 'name': u'mesh3d > text',\n", - " 'permalink': u'reference/#mesh3d-text'},\n", - " {'description': u'Sets the calendar system to use with `y` date data.',\n", - " 'name': u'mesh3d > ycalendar',\n", - " 'permalink': u'reference/#mesh3d-ycalendar'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > scene',\n", - " 'permalink': u'reference/#mesh3d-scene'},\n", - " {'description': u'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).',\n", - " 'name': u'mesh3d > visible',\n", - " 'permalink': u'reference/#mesh3d-visible'},\n", - " {'description': u'Sets the vertex intensity values, used for plotting fields on meshes',\n", - " 'name': u'mesh3d > intensity',\n", - " 'permalink': u'reference/#mesh3d-intensity'},\n", - " {'description': u'Sets the calendar system to use with `x` date data.',\n", - " 'name': u'mesh3d > xcalendar',\n", - " 'permalink': u'reference/#mesh3d-xcalendar'},\n", - " {'description': u'Properties for contour',\n", - " 'name': u'mesh3d > contour',\n", - " 'permalink': u'reference/#mesh3d-contour'},\n", - " {'description': u'Sets the color of the contour lines.',\n", - " 'name': u'mesh3d > contour > color',\n", - " 'permalink': u'reference/#mesh3d-contour-color'},\n", - " {'description': u'Sets the width of the contour lines.',\n", - " 'name': u'mesh3d > contour > width',\n", - " 'permalink': u'reference/#mesh3d-contour-width'},\n", - " {'description': u'Sets whether or not dynamic contours are shown on hover',\n", - " 'name': u'mesh3d > contour > show',\n", - " 'permalink': u'reference/#mesh3d-contour-show'},\n", - " {'description': u'Determines whether or not normal smoothing is applied to the meshes, creating meshes with an angular, low-poly look via flat reflections.',\n", - " 'name': u'mesh3d > flatshading',\n", - " 'permalink': u'reference/#mesh3d-flatshading'},\n", - " {'description': u'Properties for colorbar',\n", - " 'name': u'mesh3d > colorbar',\n", - " 'permalink': u'reference/#mesh3d-colorbar'},\n", - " {'description': u'Sets this color bar\\'s vertical position anchor This anchor binds the `y` position to the \"top\", \"middle\" or \"bottom\" of the color bar.',\n", - " 'name': u'mesh3d > colorbar > yanchor',\n", - " 'permalink': u'reference/#mesh3d-colorbar-yanchor'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > colorbar > showexponent',\n", - " 'permalink': u'reference/#mesh3d-colorbar-showexponent'},\n", - " {'description': u'Determines whether or not the tick labels are drawn.',\n", - " 'name': u'mesh3d > colorbar > showticklabels',\n", - " 'permalink': u'reference/#mesh3d-colorbar-showticklabels'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > colorbar > lenmode',\n", - " 'permalink': u'reference/#mesh3d-colorbar-lenmode'},\n", - " {'description': u'Same as `showtickprefix` but for tick suffixes.',\n", - " 'name': u'mesh3d > colorbar > showticksuffix',\n", - " 'permalink': u'reference/#mesh3d-colorbar-showticksuffix'},\n", - " {'description': u\"Sets this color bar's title font.\",\n", - " 'name': u'mesh3d > colorbar > titlefont',\n", - " 'permalink': u'reference/#mesh3d-colorbar-titlefont'},\n", - " {'description': u'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\".',\n", - " 'name': u'mesh3d > colorbar > titlefont > family',\n", - " 'permalink': u'reference/#mesh3d-colorbar-titlefont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'mesh3d > colorbar > titlefont > color',\n", - " 'permalink': u'reference/#mesh3d-colorbar-titlefont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'mesh3d > colorbar > titlefont > size',\n", - " 'permalink': u'reference/#mesh3d-colorbar-titlefont-size'},\n", - " {'description': u'Sets the width (in px) or the border enclosing this color bar.',\n", - " 'name': u'mesh3d > colorbar > borderwidth',\n", - " 'permalink': u'reference/#mesh3d-colorbar-borderwidth'},\n", - " {'description': u'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\".',\n", - " 'name': u'mesh3d > colorbar > nticks',\n", - " 'permalink': u'reference/#mesh3d-colorbar-nticks'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > colorbar > showtickprefix',\n", - " 'permalink': u'reference/#mesh3d-colorbar-showtickprefix'},\n", - " {'description': u'Determines the location of the colorbar title with respect to the color bar.',\n", - " 'name': u'mesh3d > colorbar > titleside',\n", - " 'permalink': u'reference/#mesh3d-colorbar-titleside'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'mesh3d > colorbar > outlinecolor',\n", - " 'permalink': u'reference/#mesh3d-colorbar-outlinecolor'},\n", - " {'description': u'Sets a tick label prefix.',\n", - " 'name': u'mesh3d > colorbar > tickprefix',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickprefix'},\n", - " {'description': u'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\"',\n", - " 'name': u'mesh3d > colorbar > tickformat',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickformat'},\n", - " {'description': u'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).',\n", - " 'name': u'mesh3d > colorbar > tickmode',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickmode'},\n", - " {'description': u'Sets the title of the color bar.',\n", - " 'name': u'mesh3d > colorbar > title',\n", - " 'permalink': u'reference/#mesh3d-colorbar-title'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > colorbar > ticks',\n", - " 'permalink': u'reference/#mesh3d-colorbar-ticks'},\n", - " {'description': u'Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.',\n", - " 'name': u'mesh3d > colorbar > thickness',\n", - " 'permalink': u'reference/#mesh3d-colorbar-thickness'},\n", - " {'description': u'Sets the color of padded area.',\n", - " 'name': u'mesh3d > colorbar > bgcolor',\n", - " 'permalink': u'reference/#mesh3d-colorbar-bgcolor'},\n", - " {'description': u'Sets the width (in px) of the axis line.',\n", - " 'name': u'mesh3d > colorbar > outlinewidth',\n", - " 'permalink': u'reference/#mesh3d-colorbar-outlinewidth'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'mesh3d > colorbar > bordercolor',\n", - " 'permalink': u'reference/#mesh3d-colorbar-bordercolor'},\n", - " {'description': u'Sets this color bar\\'s horizontal position anchor. This anchor binds the `x` position to the \"left\", \"center\" or \"right\" of the color bar.',\n", - " 'name': u'mesh3d > colorbar > xanchor',\n", - " 'permalink': u'reference/#mesh3d-colorbar-xanchor'},\n", - " {'description': u'If \"true\", even 4-digit integers are separated',\n", - " 'name': u'mesh3d > colorbar > separatethousands',\n", - " 'permalink': u'reference/#mesh3d-colorbar-separatethousands'},\n", - " {'description': u'Sets the tick length (in px).',\n", - " 'name': u'mesh3d > colorbar > ticklen',\n", - " 'permalink': u'reference/#mesh3d-colorbar-ticklen'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > colorbar > len',\n", - " 'permalink': u'reference/#mesh3d-colorbar-len'},\n", - " {'description': u'Properties for tickformatstops',\n", - " 'name': u'mesh3d > colorbar > tickformatstops',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickformatstops'},\n", - " {'description': u'Properties for items',\n", - " 'name': u'mesh3d > colorbar > tickformatstops > items',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickformatstops-items'},\n", - " {'description': u'Properties for tickformatstop',\n", - " 'name': u'mesh3d > colorbar > tickformatstops > items > tickformatstop',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickformatstops-items-tickformatstop'},\n", - " {'description': u'Sets a tick label suffix.',\n", - " 'name': u'mesh3d > colorbar > ticksuffix',\n", - " 'permalink': u'reference/#mesh3d-colorbar-ticksuffix'},\n", - " {'description': u'Sets the tick color.',\n", - " 'name': u'mesh3d > colorbar > tickcolor',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickcolor'},\n", - " {'description': u'Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to \"array\". Used with `tickvals`.',\n", - " 'name': u'mesh3d > colorbar > ticktext',\n", - " 'permalink': u'reference/#mesh3d-colorbar-ticktext'},\n", - " {'description': u'Sets the amount of padding (in px) along the x direction.',\n", - " 'name': u'mesh3d > colorbar > xpad',\n", - " 'permalink': u'reference/#mesh3d-colorbar-xpad'},\n", - " {'description': u'Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to \"array\". Used with `ticktext`.',\n", - " 'name': u'mesh3d > colorbar > tickvals',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickvals'},\n", - " {'description': u\"Sets the color bar's tick label font\",\n", - " 'name': u'mesh3d > colorbar > tickfont',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'mesh3d > colorbar > tickfont > family',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'mesh3d > colorbar > tickfont > color',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'mesh3d > colorbar > tickfont > size',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickfont-size'},\n", - " {'description': u'Sets the tick width (in px).',\n", - " 'name': u'mesh3d > colorbar > tickwidth',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickwidth'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > colorbar > tick0',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tick0'},\n", - " {'description': u'Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.',\n", - " 'name': u'mesh3d > colorbar > tickangle',\n", - " 'permalink': u'reference/#mesh3d-colorbar-tickangle'},\n", - " {'description': u'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\"',\n", - " 'name': u'mesh3d > colorbar > dtick',\n", - " 'permalink': u'reference/#mesh3d-colorbar-dtick'},\n", - " {'description': u'Sets the amount of padding (in px) along the y direction.',\n", - " 'name': u'mesh3d > colorbar > ypad',\n", - " 'permalink': u'reference/#mesh3d-colorbar-ypad'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > colorbar > exponentformat',\n", - " 'permalink': u'reference/#mesh3d-colorbar-exponentformat'},\n", - " {'description': u'Sets the y position of the color bar (in plot fraction).',\n", - " 'name': u'mesh3d > colorbar > y',\n", - " 'permalink': u'reference/#mesh3d-colorbar-y'},\n", - " {'description': u'Sets the x position of the color bar (in plot fraction).',\n", - " 'name': u'mesh3d > colorbar > x',\n", - " 'permalink': u'reference/#mesh3d-colorbar-x'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > colorbar > thicknessmode',\n", - " 'permalink': u'reference/#mesh3d-colorbar-thicknessmode'},\n", - " {'description': u'Determines whether or not an item corresponding to this trace is shown in the legend.',\n", - " 'name': u'mesh3d > showlegend',\n", - " 'permalink': u'reference/#mesh3d-showlegend'},\n", - " {'description': u'Sets the color of each face Overrides \"color\" and \"vertexcolor\".',\n", - " 'name': u'mesh3d > facecolor',\n", - " 'permalink': u'reference/#mesh3d-facecolor'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > alphahull',\n", - " 'permalink': u'reference/#mesh3d-alphahull'},\n", - " {'description': u'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',\n", - " 'name': u'mesh3d > customdata',\n", - " 'permalink': u'reference/#mesh3d-customdata'},\n", - " {'description': u'Sets the color of each vertex Overrides \"color\".',\n", - " 'name': u'mesh3d > vertexcolor',\n", - " 'permalink': u'reference/#mesh3d-vertexcolor'},\n", - " {'description': u'Sets the calendar system to use with `z` date data.',\n", - " 'name': u'mesh3d > zcalendar',\n", - " 'permalink': u'reference/#mesh3d-zcalendar'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > delaunayaxis',\n", - " 'permalink': u'reference/#mesh3d-delaunayaxis'},\n", - " {'description': u'Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect.',\n", - " 'name': u'mesh3d > selectedpoints',\n", - " 'permalink': u'reference/#mesh3d-selectedpoints'},\n", - " {'description': u'Properties for type',\n", - " 'name': u'mesh3d > type',\n", - " 'permalink': u'reference/#mesh3d-type'},\n", - " {'description': u'Sets the opacity of the surface.',\n", - " 'name': u'mesh3d > opacity',\n", - " 'permalink': u'reference/#mesh3d-opacity'},\n", - " {'description': u'Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.',\n", - " 'name': u'mesh3d > legendgroup',\n", - " 'permalink': u'reference/#mesh3d-legendgroup'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > autocolorscale',\n", - " 'permalink': u'reference/#mesh3d-autocolorscale'},\n", - " {'description': u'Properties for hoverlabel',\n", - " 'name': u'mesh3d > hoverlabel',\n", - " 'permalink': u'reference/#mesh3d-hoverlabel'},\n", - " {'description': u'Sets the border color of the hover labels for this trace.',\n", - " 'name': u'mesh3d > hoverlabel > bordercolor',\n", - " 'permalink': u'reference/#mesh3d-hoverlabel-bordercolor'},\n", - " {'description': u'Sets the background color of the hover labels for this trace',\n", - " 'name': u'mesh3d > hoverlabel > bgcolor',\n", - " 'permalink': u'reference/#mesh3d-hoverlabel-bgcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > hoverlabel > namelength',\n", - " 'permalink': u'reference/#mesh3d-hoverlabel-namelength'},\n", - " {'description': u'Sets the font used in hover labels.',\n", - " 'name': u'mesh3d > hoverlabel > font',\n", - " 'permalink': u'reference/#mesh3d-hoverlabel-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'mesh3d > hoverlabel > font > family',\n", - " 'permalink': u'reference/#mesh3d-hoverlabel-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'mesh3d > hoverlabel > font > color',\n", - " 'permalink': u'reference/#mesh3d-hoverlabel-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'mesh3d > hoverlabel > font > size',\n", - " 'permalink': u'reference/#mesh3d-hoverlabel-font-size'},\n", - " {'description': u'Properties for lighting',\n", - " 'name': u'mesh3d > lighting',\n", - " 'permalink': u'reference/#mesh3d-lighting'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > lighting > fresnel',\n", - " 'permalink': u'reference/#mesh3d-lighting-fresnel'},\n", - " {'description': u'Epsilon for face normals calculation avoids math issues arising from degenerate geometry.',\n", - " 'name': u'mesh3d > lighting > facenormalsepsilon',\n", - " 'permalink': u'reference/#mesh3d-lighting-facenormalsepsilon'},\n", - " {'description': u'Alters specular reflection; the rougher the surface, the wider and less contrasty the shine.',\n", - " 'name': u'mesh3d > lighting > roughness',\n", - " 'permalink': u'reference/#mesh3d-lighting-roughness'},\n", - " {'description': u'Represents the level that incident rays are reflected in a single direction, causing shine.',\n", - " 'name': u'mesh3d > lighting > specular',\n", - " 'permalink': u'reference/#mesh3d-lighting-specular'},\n", - " {'description': u'Ambient light increases overall color visibility but can wash out the image.',\n", - " 'name': u'mesh3d > lighting > ambient',\n", - " 'permalink': u'reference/#mesh3d-lighting-ambient'},\n", - " {'description': u'Epsilon for vertex normals calculation avoids math issues arising from degenerate geometry.',\n", - " 'name': u'mesh3d > lighting > vertexnormalsepsilon',\n", - " 'permalink': u'reference/#mesh3d-lighting-vertexnormalsepsilon'},\n", - " {'description': u'Represents the extent that incident rays are reflected in a range of angles.',\n", - " 'name': u'mesh3d > lighting > diffuse',\n", - " 'permalink': u'reference/#mesh3d-lighting-diffuse'},\n", - " {'description': u'Determines whether or not a colorbar is displayed for this trace.',\n", - " 'name': u'mesh3d > showscale',\n", - " 'permalink': u'reference/#mesh3d-showscale'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > hoverinfo',\n", - " 'permalink': u'reference/#mesh3d-hoverinfo'},\n", - " {'description': u'Properties for lightposition',\n", - " 'name': u'mesh3d > lightposition',\n", - " 'permalink': u'reference/#mesh3d-lightposition'},\n", - " {'description': u'Numeric vector, representing the Y coordinate for each vertex.',\n", - " 'name': u'mesh3d > lightposition > y',\n", - " 'permalink': u'reference/#mesh3d-lightposition-y'},\n", - " {'description': u'Numeric vector, representing the X coordinate for each vertex.',\n", - " 'name': u'mesh3d > lightposition > x',\n", - " 'permalink': u'reference/#mesh3d-lightposition-x'},\n", - " {'description': u'Numeric vector, representing the Z coordinate for each vertex.',\n", - " 'name': u'mesh3d > lightposition > z',\n", - " 'permalink': u'reference/#mesh3d-lightposition-z'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > z',\n", - " 'permalink': u'reference/#mesh3d-z'},\n", - " {'description': u'Sets the trace name. The trace name appear as the legend item and on hover.',\n", - " 'name': u'mesh3d > name',\n", - " 'permalink': u'reference/#mesh3d-name'},\n", - " {'description': u\"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, Cividis\",\n", - " 'name': u'mesh3d > colorscale',\n", - " 'permalink': u'reference/#mesh3d-colorscale'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > i',\n", - " 'permalink': u'reference/#mesh3d-i'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > k',\n", - " 'permalink': u'reference/#mesh3d-k'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > j',\n", - " 'permalink': u'reference/#mesh3d-j'},\n", - " {'description': u'Assigns id labels to each datum. These ids for object constancy of data points during animation.',\n", - " 'name': u'mesh3d > ids',\n", - " 'permalink': u'reference/#mesh3d-ids'},\n", - " {'description': u'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).',\n", - " 'name': u'mesh3d > reversescale',\n", - " 'permalink': u'reference/#mesh3d-reversescale'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > cauto',\n", - " 'permalink': u'reference/#mesh3d-cauto'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > y',\n", - " 'permalink': u'reference/#mesh3d-y'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > x',\n", - " 'permalink': u'reference/#mesh3d-x'},\n", - " {'description': u'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.',\n", - " 'name': u'mesh3d > cmax',\n", - " 'permalink': u'reference/#mesh3d-cmax'},\n", - " {'description': u'Sets the positions of the `text` elements with respects to the (x,y) coordinates.',\n", - " 'name': u'scattercarpet > textposition',\n", - " 'permalink': u'reference/#scattercarpet-textposition'},\n", - " {'description': u'Properties for selected',\n", - " 'name': u'scattercarpet > selected',\n", - " 'permalink': u'reference/#scattercarpet-selected'},\n", - " {'description': u'Properties for marker',\n", - " 'name': u'scattercarpet > selected > marker',\n", - " 'permalink': u'reference/#scattercarpet-selected-marker'},\n", - " {'description': u'Sets the marker opacity of selected points.',\n", - " 'name': u'scattercarpet > selected > marker > opacity',\n", - " 'permalink': u'reference/#scattercarpet-selected-marker-opacity'},\n", - " {'description': u'Sets the marker color of selected points.',\n", - " 'name': u'scattercarpet > selected > marker > color',\n", - " 'permalink': u'reference/#scattercarpet-selected-marker-color'},\n", - " {'description': u'Sets the marker size of selected points.',\n", - " 'name': u'scattercarpet > selected > marker > size',\n", - " 'permalink': u'reference/#scattercarpet-selected-marker-size'},\n", - " {'description': u'Properties for textfont',\n", - " 'name': u'scattercarpet > selected > textfont',\n", - " 'permalink': u'reference/#scattercarpet-selected-textfont'},\n", - " {'description': u'Sets the text font color of selected points.',\n", - " 'name': u'scattercarpet > selected > textfont > color',\n", - " 'permalink': u'reference/#scattercarpet-selected-textfont-color'},\n", - " {'description': u'Properties for stream',\n", - " 'name': u'scattercarpet > stream',\n", - " 'permalink': u'reference/#scattercarpet-stream'},\n", - " {'description': u'The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.',\n", - " 'name': u'scattercarpet > stream > token',\n", - " 'permalink': u'reference/#scattercarpet-stream-token'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > stream > maxpoints',\n", - " 'permalink': u'reference/#scattercarpet-stream-maxpoints'},\n", - " {'description': u'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).',\n", - " 'name': u'scattercarpet > text',\n", - " 'permalink': u'reference/#scattercarpet-text'},\n", - " {'description': u'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).',\n", - " 'name': u'scattercarpet > visible',\n", - " 'permalink': u'reference/#scattercarpet-visible'},\n", - " {'description': u'Properties for marker',\n", - " 'name': u'scattercarpet > marker',\n", - " 'permalink': u'reference/#scattercarpet-marker'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > cmin',\n", - " 'permalink': u'reference/#scattercarpet-marker-cmin'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > color',\n", - " 'permalink': u'reference/#scattercarpet-marker-color'},\n", - " {'description': u'Sets the marker size (in px).',\n", - " 'name': u'scattercarpet > marker > size',\n", - " 'permalink': u'reference/#scattercarpet-marker-size'},\n", - " {'description': u'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).',\n", - " 'name': u'scattercarpet > marker > reversescale',\n", - " 'permalink': u'reference/#scattercarpet-marker-reversescale'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > autocolorscale',\n", - " 'permalink': u'reference/#scattercarpet-marker-autocolorscale'},\n", - " {'description': u'Properties for gradient',\n", - " 'name': u'scattercarpet > marker > gradient',\n", - " 'permalink': u'reference/#scattercarpet-marker-gradient'},\n", - " {'description': u'Sets the final color of the gradient fill: the center color for radial, the right for horizontal, or the bottom for vertical.',\n", - " 'name': u'scattercarpet > marker > gradient > color',\n", - " 'permalink': u'reference/#scattercarpet-marker-gradient-color'},\n", - " {'description': u'Sets the type of gradient used to fill the markers',\n", - " 'name': u'scattercarpet > marker > gradient > type',\n", - " 'permalink': u'reference/#scattercarpet-marker-gradient-type'},\n", - " {'description': u'Sets a maximum number of points to be drawn on the graph. \"0\" corresponds to no limit.',\n", - " 'name': u'scattercarpet > marker > maxdisplayed',\n", - " 'permalink': u'reference/#scattercarpet-marker-maxdisplayed'},\n", - " {'description': u'Sets the marker opacity.',\n", - " 'name': u'scattercarpet > marker > opacity',\n", - " 'permalink': u'reference/#scattercarpet-marker-opacity'},\n", - " {'description': u'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`.',\n", - " 'name': u'scattercarpet > marker > sizeref',\n", - " 'permalink': u'reference/#scattercarpet-marker-sizeref'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > symbol',\n", - " 'permalink': u'reference/#scattercarpet-marker-symbol'},\n", - " {'description': u'Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.',\n", - " 'name': u'scattercarpet > marker > showscale',\n", - " 'permalink': u'reference/#scattercarpet-marker-showscale'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'scattercarpet > marker > line',\n", - " 'permalink': u'reference/#scattercarpet-marker-line'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > line > autocolorscale',\n", - " 'permalink': u'reference/#scattercarpet-marker-line-autocolorscale'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > line > cmin',\n", - " 'permalink': u'reference/#scattercarpet-marker-line-cmin'},\n", - " {'description': u\"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, Cividis\",\n", - " 'name': u'scattercarpet > marker > line > colorscale',\n", - " 'permalink': u'reference/#scattercarpet-marker-line-colorscale'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > line > color',\n", - " 'permalink': u'reference/#scattercarpet-marker-line-color'},\n", - " {'description': u'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).',\n", - " 'name': u'scattercarpet > marker > line > reversescale',\n", - " 'permalink': u'reference/#scattercarpet-marker-line-reversescale'},\n", - " {'description': u'Sets the width (in px) of the lines bounding the marker points.',\n", - " 'name': u'scattercarpet > marker > line > width',\n", - " 'permalink': u'reference/#scattercarpet-marker-line-width'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > line > cauto',\n", - " 'permalink': u'reference/#scattercarpet-marker-line-cauto'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > line > cmax',\n", - " 'permalink': u'reference/#scattercarpet-marker-line-cmax'},\n", - " {'description': u\"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, Cividis\",\n", - " 'name': u'scattercarpet > marker > colorscale',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorscale'},\n", - " {'description': u'Properties for colorbar',\n", - " 'name': u'scattercarpet > marker > colorbar',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar'},\n", - " {'description': u'Sets this color bar\\'s vertical position anchor This anchor binds the `y` position to the \"top\", \"middle\" or \"bottom\" of the color bar.',\n", - " 'name': u'scattercarpet > marker > colorbar > yanchor',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-yanchor'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > colorbar > showexponent',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-showexponent'},\n", - " {'description': u'Determines whether or not the tick labels are drawn.',\n", - " 'name': u'scattercarpet > marker > colorbar > showticklabels',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-showticklabels'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > colorbar > lenmode',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-lenmode'},\n", - " {'description': u'Same as `showtickprefix` but for tick suffixes.',\n", - " 'name': u'scattercarpet > marker > colorbar > showticksuffix',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-showticksuffix'},\n", - " {'description': u\"Sets this color bar's title font.\",\n", - " 'name': u'scattercarpet > marker > colorbar > titlefont',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-titlefont'},\n", - " {'description': u'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\".',\n", - " 'name': u'scattercarpet > marker > colorbar > titlefont > family',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-titlefont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'scattercarpet > marker > colorbar > titlefont > color',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-titlefont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'scattercarpet > marker > colorbar > titlefont > size',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-titlefont-size'},\n", - " {'description': u'Sets the width (in px) or the border enclosing this color bar.',\n", - " 'name': u'scattercarpet > marker > colorbar > borderwidth',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-borderwidth'},\n", - " {'description': u'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\".',\n", - " 'name': u'scattercarpet > marker > colorbar > nticks',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-nticks'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > colorbar > showtickprefix',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-showtickprefix'},\n", - " {'description': u'Determines the location of the colorbar title with respect to the color bar.',\n", - " 'name': u'scattercarpet > marker > colorbar > titleside',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-titleside'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'scattercarpet > marker > colorbar > outlinecolor',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-outlinecolor'},\n", - " {'description': u'Sets a tick label prefix.',\n", - " 'name': u'scattercarpet > marker > colorbar > tickprefix',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickprefix'},\n", - " {'description': u'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\"',\n", - " 'name': u'scattercarpet > marker > colorbar > tickformat',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickformat'},\n", - " {'description': u'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).',\n", - " 'name': u'scattercarpet > marker > colorbar > tickmode',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickmode'},\n", - " {'description': u'Sets the title of the color bar.',\n", - " 'name': u'scattercarpet > marker > colorbar > title',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-title'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > colorbar > ticks',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-ticks'},\n", - " {'description': u'Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.',\n", - " 'name': u'scattercarpet > marker > colorbar > thickness',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-thickness'},\n", - " {'description': u'Sets the color of padded area.',\n", - " 'name': u'scattercarpet > marker > colorbar > bgcolor',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-bgcolor'},\n", - " {'description': u'Sets the width (in px) of the axis line.',\n", - " 'name': u'scattercarpet > marker > colorbar > outlinewidth',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-outlinewidth'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'scattercarpet > marker > colorbar > bordercolor',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-bordercolor'},\n", - " {'description': u'Sets this color bar\\'s horizontal position anchor. This anchor binds the `x` position to the \"left\", \"center\" or \"right\" of the color bar.',\n", - " 'name': u'scattercarpet > marker > colorbar > xanchor',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-xanchor'},\n", - " {'description': u'If \"true\", even 4-digit integers are separated',\n", - " 'name': u'scattercarpet > marker > colorbar > separatethousands',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-separatethousands'},\n", - " {'description': u'Sets the tick length (in px).',\n", - " 'name': u'scattercarpet > marker > colorbar > ticklen',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-ticklen'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > colorbar > len',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-len'},\n", - " {'description': u'Properties for tickformatstops',\n", - " 'name': u'scattercarpet > marker > colorbar > tickformatstops',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickformatstops'},\n", - " {'description': u'Properties for items',\n", - " 'name': u'scattercarpet > marker > colorbar > tickformatstops > items',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickformatstops-items'},\n", - " {'description': u'Sets a tick label suffix.',\n", - " 'name': u'scattercarpet > marker > colorbar > ticksuffix',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-ticksuffix'},\n", - " {'description': u'Sets the tick color.',\n", - " 'name': u'scattercarpet > marker > colorbar > tickcolor',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickcolor'},\n", - " {'description': u'Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to \"array\". Used with `tickvals`.',\n", - " 'name': u'scattercarpet > marker > colorbar > ticktext',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-ticktext'},\n", - " {'description': u'Sets the amount of padding (in px) along the x direction.',\n", - " 'name': u'scattercarpet > marker > colorbar > xpad',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-xpad'},\n", - " {'description': u'Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to \"array\". Used with `ticktext`.',\n", - " 'name': u'scattercarpet > marker > colorbar > tickvals',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickvals'},\n", - " {'description': u\"Sets the color bar's tick label font\",\n", - " 'name': u'scattercarpet > marker > colorbar > tickfont',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'scattercarpet > marker > colorbar > tickfont > family',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'scattercarpet > marker > colorbar > tickfont > color',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'scattercarpet > marker > colorbar > tickfont > size',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickfont-size'},\n", - " {'description': u'Sets the tick width (in px).',\n", - " 'name': u'scattercarpet > marker > colorbar > tickwidth',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickwidth'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > colorbar > tick0',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tick0'},\n", - " {'description': u'Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.',\n", - " 'name': u'scattercarpet > marker > colorbar > tickangle',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-tickangle'},\n", - " {'description': u'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\"',\n", - " 'name': u'scattercarpet > marker > colorbar > dtick',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-dtick'},\n", - " {'description': u'Sets the amount of padding (in px) along the y direction.',\n", - " 'name': u'scattercarpet > marker > colorbar > ypad',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-ypad'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > colorbar > exponentformat',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-exponentformat'},\n", - " {'description': u'Sets the y position of the color bar (in plot fraction).',\n", - " 'name': u'scattercarpet > marker > colorbar > y',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-y'},\n", - " {'description': u'Sets the x position of the color bar (in plot fraction).',\n", - " 'name': u'scattercarpet > marker > colorbar > x',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-x'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > colorbar > thicknessmode',\n", - " 'permalink': u'reference/#scattercarpet-marker-colorbar-thicknessmode'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > sizemode',\n", - " 'permalink': u'reference/#scattercarpet-marker-sizemode'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > cauto',\n", - " 'permalink': u'reference/#scattercarpet-marker-cauto'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > marker > cmax',\n", - " 'permalink': u'reference/#scattercarpet-marker-cmax'},\n", - " {'description': u'Has an effect only if `marker.size` is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.',\n", - " 'name': u'scattercarpet > marker > sizemin',\n", - " 'permalink': u'reference/#scattercarpet-marker-sizemin'},\n", - " {'description': u'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\".',\n", - " 'name': u'scattercarpet > hoveron',\n", - " 'permalink': u'reference/#scattercarpet-hoveron'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > fill',\n", - " 'permalink': u'reference/#scattercarpet-fill'},\n", - " {'description': u'Determines whether or not an item corresponding to this trace is shown in the legend.',\n", - " 'name': u'scattercarpet > showlegend',\n", - " 'permalink': u'reference/#scattercarpet-showlegend'},\n", - " {'description': u'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',\n", - " 'name': u'scattercarpet > customdata',\n", - " 'permalink': u'reference/#scattercarpet-customdata'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > xaxis',\n", - " 'permalink': u'reference/#scattercarpet-xaxis'},\n", - " {'description': u'Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect.',\n", - " 'name': u'scattercarpet > selectedpoints',\n", - " 'permalink': u'reference/#scattercarpet-selectedpoints'},\n", - " {'description': u'An identifier for this carpet, so that `scattercarpet` and `scattercontour` traces can specify a carpet plot on which they lie',\n", - " 'name': u'scattercarpet > carpet',\n", - " 'permalink': u'reference/#scattercarpet-carpet'},\n", - " {'description': u'Properties for type',\n", - " 'name': u'scattercarpet > type',\n", - " 'permalink': u'reference/#scattercarpet-type'},\n", - " {'description': u'Sets the opacity of the trace.',\n", - " 'name': u'scattercarpet > opacity',\n", - " 'permalink': u'reference/#scattercarpet-opacity'},\n", - " {'description': u'Sets the text font.',\n", - " 'name': u'scattercarpet > textfont',\n", - " 'permalink': u'reference/#scattercarpet-textfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'scattercarpet > textfont > family',\n", - " 'permalink': u'reference/#scattercarpet-textfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'scattercarpet > textfont > color',\n", - " 'permalink': u'reference/#scattercarpet-textfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'scattercarpet > textfont > size',\n", - " 'permalink': u'reference/#scattercarpet-textfont-size'},\n", - " {'description': u'Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.',\n", - " 'name': u'scattercarpet > legendgroup',\n", - " 'permalink': u'reference/#scattercarpet-legendgroup'},\n", - " {'description': u'Properties for hoverlabel',\n", - " 'name': u'scattercarpet > hoverlabel',\n", - " 'permalink': u'reference/#scattercarpet-hoverlabel'},\n", - " {'description': u'Sets the border color of the hover labels for this trace.',\n", - " 'name': u'scattercarpet > hoverlabel > bordercolor',\n", - " 'permalink': u'reference/#scattercarpet-hoverlabel-bordercolor'},\n", - " {'description': u'Sets the background color of the hover labels for this trace',\n", - " 'name': u'scattercarpet > hoverlabel > bgcolor',\n", - " 'permalink': u'reference/#scattercarpet-hoverlabel-bgcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > hoverlabel > namelength',\n", - " 'permalink': u'reference/#scattercarpet-hoverlabel-namelength'},\n", - " {'description': u'Sets the font used in hover labels.',\n", - " 'name': u'scattercarpet > hoverlabel > font',\n", - " 'permalink': u'reference/#scattercarpet-hoverlabel-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'scattercarpet > hoverlabel > font > family',\n", - " 'permalink': u'reference/#scattercarpet-hoverlabel-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'scattercarpet > hoverlabel > font > color',\n", - " 'permalink': u'reference/#scattercarpet-hoverlabel-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'scattercarpet > hoverlabel > font > size',\n", - " 'permalink': u'reference/#scattercarpet-hoverlabel-font-size'},\n", - " {'description': u'Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.',\n", - " 'name': u'scattercarpet > fillcolor',\n", - " 'permalink': u'reference/#scattercarpet-fillcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > hoverinfo',\n", - " 'permalink': u'reference/#scattercarpet-hoverinfo'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'scattercarpet > line',\n", - " 'permalink': u'reference/#scattercarpet-line'},\n", - " {'description': u'Sets the line color.',\n", - " 'name': u'scattercarpet > line > color',\n", - " 'permalink': u'reference/#scattercarpet-line-color'},\n", - " {'description': u'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).',\n", - " 'name': u'scattercarpet > line > smoothing',\n", - " 'permalink': u'reference/#scattercarpet-line-smoothing'},\n", - " {'description': u'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\").',\n", - " 'name': u'scattercarpet > line > dash',\n", - " 'permalink': u'reference/#scattercarpet-line-dash'},\n", - " {'description': u'Sets the line width (in px).',\n", - " 'name': u'scattercarpet > line > width',\n", - " 'permalink': u'reference/#scattercarpet-line-width'},\n", - " {'description': u'Determines the line shape. With \"spline\" the lines are drawn using spline interpolation. The other available values correspond to step-wise line shapes.',\n", - " 'name': u'scattercarpet > line > shape',\n", - " 'permalink': u'reference/#scattercarpet-line-shape'},\n", - " {'description': u'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`.',\n", - " 'name': u'scattercarpet > a',\n", - " 'permalink': u'reference/#scattercarpet-a'},\n", - " {'description': u'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`.',\n", - " 'name': u'scattercarpet > b',\n", - " 'permalink': u'reference/#scattercarpet-b'},\n", - " {'description': u'Sets the trace name. The trace name appear as the legend item and on hover.',\n", - " 'name': u'scattercarpet > name',\n", - " 'permalink': u'reference/#scattercarpet-name'},\n", - " {'description': u'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.',\n", - " 'name': u'scattercarpet > yaxis',\n", - " 'permalink': u'reference/#scattercarpet-yaxis'},\n", - " {'description': u'Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.',\n", - " 'name': u'scattercarpet > connectgaps',\n", - " 'permalink': u'reference/#scattercarpet-connectgaps'},\n", - " {'description': u'Assigns id labels to each datum. These ids for object constancy of data points during animation.',\n", - " 'name': u'scattercarpet > ids',\n", - " 'permalink': u'reference/#scattercarpet-ids'},\n", - " {'description': u'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\".',\n", - " 'name': u'scattercarpet > mode',\n", - " 'permalink': u'reference/#scattercarpet-mode'},\n", - " {'description': u'Properties for unselected',\n", - " 'name': u'scattercarpet > unselected',\n", - " 'permalink': u'reference/#scattercarpet-unselected'},\n", - " {'description': u'Properties for marker',\n", - " 'name': u'scattercarpet > unselected > marker',\n", - " 'permalink': u'reference/#scattercarpet-unselected-marker'},\n", - " {'description': u'Sets the marker opacity of unselected points, applied only when a selection exists.',\n", - " 'name': u'scattercarpet > unselected > marker > opacity',\n", - " 'permalink': u'reference/#scattercarpet-unselected-marker-opacity'},\n", - " {'description': u'Sets the marker color of unselected points, applied only when a selection exists.',\n", - " 'name': u'scattercarpet > unselected > marker > color',\n", - " 'permalink': u'reference/#scattercarpet-unselected-marker-color'},\n", - " {'description': u'Sets the marker size of unselected points, applied only when a selection exists.',\n", - " 'name': u'scattercarpet > unselected > marker > size',\n", - " 'permalink': u'reference/#scattercarpet-unselected-marker-size'},\n", - " {'description': u'Properties for textfont',\n", - " 'name': u'scattercarpet > unselected > textfont',\n", - " 'permalink': u'reference/#scattercarpet-unselected-textfont'},\n", - " {'description': u'Sets the text font color of unselected points, applied only when a selection exists.',\n", - " 'name': u'scattercarpet > unselected > textfont > color',\n", - " 'permalink': u'reference/#scattercarpet-unselected-textfont-color'},\n", - " {'description': u'Sets the positions of the `text` elements with respects to the (x,y) coordinates.',\n", - " 'name': u'scatterternary > textposition',\n", - " 'permalink': u'reference/#scatterternary-textposition'},\n", - " {'description': u'Properties for selected',\n", - " 'name': u'scatterternary > selected',\n", - " 'permalink': u'reference/#scatterternary-selected'},\n", - " {'description': u'Properties for marker',\n", - " 'name': u'scatterternary > selected > marker',\n", - " 'permalink': u'reference/#scatterternary-selected-marker'},\n", - " {'description': u'Sets the marker opacity of selected points.',\n", - " 'name': u'scatterternary > selected > marker > opacity',\n", - " 'permalink': u'reference/#scatterternary-selected-marker-opacity'},\n", - " {'description': u'Sets the marker color of selected points.',\n", - " 'name': u'scatterternary > selected > marker > color',\n", - " 'permalink': u'reference/#scatterternary-selected-marker-color'},\n", - " {'description': u'Sets the marker size of selected points.',\n", - " 'name': u'scatterternary > selected > marker > size',\n", - " 'permalink': u'reference/#scatterternary-selected-marker-size'},\n", - " {'description': u'Properties for textfont',\n", - " 'name': u'scatterternary > selected > textfont',\n", - " 'permalink': u'reference/#scatterternary-selected-textfont'},\n", - " {'description': u'Sets the text font color of selected points.',\n", - " 'name': u'scatterternary > selected > textfont > color',\n", - " 'permalink': u'reference/#scatterternary-selected-textfont-color'},\n", - " {'description': u'Properties for stream',\n", - " 'name': u'scatterternary > stream',\n", - " 'permalink': u'reference/#scatterternary-stream'},\n", - " {'description': u'The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.',\n", - " 'name': u'scatterternary > stream > token',\n", - " 'permalink': u'reference/#scatterternary-stream-token'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > stream > maxpoints',\n", - " 'permalink': u'reference/#scatterternary-stream-maxpoints'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > text',\n", - " 'permalink': u'reference/#scatterternary-text'},\n", - " {'description': u'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).',\n", - " 'name': u'scatterternary > visible',\n", - " 'permalink': u'reference/#scatterternary-visible'},\n", - " {'description': u'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\".',\n", - " 'name': u'scatterternary > cliponaxis',\n", - " 'permalink': u'reference/#scatterternary-cliponaxis'},\n", - " {'description': u'Properties for marker',\n", - " 'name': u'scatterternary > marker',\n", - " 'permalink': u'reference/#scatterternary-marker'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > cmin',\n", - " 'permalink': u'reference/#scatterternary-marker-cmin'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > color',\n", - " 'permalink': u'reference/#scatterternary-marker-color'},\n", - " {'description': u'Sets the marker size (in px).',\n", - " 'name': u'scatterternary > marker > size',\n", - " 'permalink': u'reference/#scatterternary-marker-size'},\n", - " {'description': u'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).',\n", - " 'name': u'scatterternary > marker > reversescale',\n", - " 'permalink': u'reference/#scatterternary-marker-reversescale'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > autocolorscale',\n", - " 'permalink': u'reference/#scatterternary-marker-autocolorscale'},\n", - " {'description': u'Properties for gradient',\n", - " 'name': u'scatterternary > marker > gradient',\n", - " 'permalink': u'reference/#scatterternary-marker-gradient'},\n", - " {'description': u'Sets the final color of the gradient fill: the center color for radial, the right for horizontal, or the bottom for vertical.',\n", - " 'name': u'scatterternary > marker > gradient > color',\n", - " 'permalink': u'reference/#scatterternary-marker-gradient-color'},\n", - " {'description': u'Sets the type of gradient used to fill the markers',\n", - " 'name': u'scatterternary > marker > gradient > type',\n", - " 'permalink': u'reference/#scatterternary-marker-gradient-type'},\n", - " {'description': u'Sets a maximum number of points to be drawn on the graph. \"0\" corresponds to no limit.',\n", - " 'name': u'scatterternary > marker > maxdisplayed',\n", - " 'permalink': u'reference/#scatterternary-marker-maxdisplayed'},\n", - " {'description': u'Sets the marker opacity.',\n", - " 'name': u'scatterternary > marker > opacity',\n", - " 'permalink': u'reference/#scatterternary-marker-opacity'},\n", - " {'description': u'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`.',\n", - " 'name': u'scatterternary > marker > sizeref',\n", - " 'permalink': u'reference/#scatterternary-marker-sizeref'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > symbol',\n", - " 'permalink': u'reference/#scatterternary-marker-symbol'},\n", - " {'description': u'Has an effect only if `marker.color` is set to a numerical array. Determines whether or not a colorbar is displayed.',\n", - " 'name': u'scatterternary > marker > showscale',\n", - " 'permalink': u'reference/#scatterternary-marker-showscale'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'scatterternary > marker > line',\n", - " 'permalink': u'reference/#scatterternary-marker-line'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > line > autocolorscale',\n", - " 'permalink': u'reference/#scatterternary-marker-line-autocolorscale'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > line > cmin',\n", - " 'permalink': u'reference/#scatterternary-marker-line-cmin'},\n", - " {'description': u\"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, Cividis\",\n", - " 'name': u'scatterternary > marker > line > colorscale',\n", - " 'permalink': u'reference/#scatterternary-marker-line-colorscale'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > line > color',\n", - " 'permalink': u'reference/#scatterternary-marker-line-color'},\n", - " {'description': u'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).',\n", - " 'name': u'scatterternary > marker > line > reversescale',\n", - " 'permalink': u'reference/#scatterternary-marker-line-reversescale'},\n", - " {'description': u'Sets the width (in px) of the lines bounding the marker points.',\n", - " 'name': u'scatterternary > marker > line > width',\n", - " 'permalink': u'reference/#scatterternary-marker-line-width'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > line > cauto',\n", - " 'permalink': u'reference/#scatterternary-marker-line-cauto'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > line > cmax',\n", - " 'permalink': u'reference/#scatterternary-marker-line-cmax'},\n", - " {'description': u\"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, Cividis\",\n", - " 'name': u'scatterternary > marker > colorscale',\n", - " 'permalink': u'reference/#scatterternary-marker-colorscale'},\n", - " {'description': u'Properties for colorbar',\n", - " 'name': u'scatterternary > marker > colorbar',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar'},\n", - " {'description': u'Sets this color bar\\'s vertical position anchor This anchor binds the `y` position to the \"top\", \"middle\" or \"bottom\" of the color bar.',\n", - " 'name': u'scatterternary > marker > colorbar > yanchor',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-yanchor'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > colorbar > showexponent',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-showexponent'},\n", - " {'description': u'Determines whether or not the tick labels are drawn.',\n", - " 'name': u'scatterternary > marker > colorbar > showticklabels',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-showticklabels'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > colorbar > lenmode',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-lenmode'},\n", - " {'description': u'Same as `showtickprefix` but for tick suffixes.',\n", - " 'name': u'scatterternary > marker > colorbar > showticksuffix',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-showticksuffix'},\n", - " {'description': u\"Sets this color bar's title font.\",\n", - " 'name': u'scatterternary > marker > colorbar > titlefont',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-titlefont'},\n", - " {'description': u'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\".',\n", - " 'name': u'scatterternary > marker > colorbar > titlefont > family',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-titlefont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'scatterternary > marker > colorbar > titlefont > color',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-titlefont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'scatterternary > marker > colorbar > titlefont > size',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-titlefont-size'},\n", - " {'description': u'Sets the width (in px) or the border enclosing this color bar.',\n", - " 'name': u'scatterternary > marker > colorbar > borderwidth',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-borderwidth'},\n", - " {'description': u'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\".',\n", - " 'name': u'scatterternary > marker > colorbar > nticks',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-nticks'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > colorbar > showtickprefix',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-showtickprefix'},\n", - " {'description': u'Determines the location of the colorbar title with respect to the color bar.',\n", - " 'name': u'scatterternary > marker > colorbar > titleside',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-titleside'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'scatterternary > marker > colorbar > outlinecolor',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-outlinecolor'},\n", - " {'description': u'Sets a tick label prefix.',\n", - " 'name': u'scatterternary > marker > colorbar > tickprefix',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickprefix'},\n", - " {'description': u'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\"',\n", - " 'name': u'scatterternary > marker > colorbar > tickformat',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickformat'},\n", - " {'description': u'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).',\n", - " 'name': u'scatterternary > marker > colorbar > tickmode',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickmode'},\n", - " {'description': u'Sets the title of the color bar.',\n", - " 'name': u'scatterternary > marker > colorbar > title',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-title'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > colorbar > ticks',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-ticks'},\n", - " {'description': u'Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.',\n", - " 'name': u'scatterternary > marker > colorbar > thickness',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-thickness'},\n", - " {'description': u'Sets the color of padded area.',\n", - " 'name': u'scatterternary > marker > colorbar > bgcolor',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-bgcolor'},\n", - " {'description': u'Sets the width (in px) of the axis line.',\n", - " 'name': u'scatterternary > marker > colorbar > outlinewidth',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-outlinewidth'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'scatterternary > marker > colorbar > bordercolor',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-bordercolor'},\n", - " {'description': u'Sets this color bar\\'s horizontal position anchor. This anchor binds the `x` position to the \"left\", \"center\" or \"right\" of the color bar.',\n", - " 'name': u'scatterternary > marker > colorbar > xanchor',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-xanchor'},\n", - " {'description': u'If \"true\", even 4-digit integers are separated',\n", - " 'name': u'scatterternary > marker > colorbar > separatethousands',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-separatethousands'},\n", - " {'description': u'Sets the tick length (in px).',\n", - " 'name': u'scatterternary > marker > colorbar > ticklen',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-ticklen'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > colorbar > len',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-len'},\n", - " {'description': u'Properties for tickformatstops',\n", - " 'name': u'scatterternary > marker > colorbar > tickformatstops',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickformatstops'},\n", - " {'description': u'Properties for items',\n", - " 'name': u'scatterternary > marker > colorbar > tickformatstops > items',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickformatstops-items'},\n", - " {'description': u'Sets a tick label suffix.',\n", - " 'name': u'scatterternary > marker > colorbar > ticksuffix',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-ticksuffix'},\n", - " {'description': u'Sets the tick color.',\n", - " 'name': u'scatterternary > marker > colorbar > tickcolor',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickcolor'},\n", - " {'description': u'Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to \"array\". Used with `tickvals`.',\n", - " 'name': u'scatterternary > marker > colorbar > ticktext',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-ticktext'},\n", - " {'description': u'Sets the amount of padding (in px) along the x direction.',\n", - " 'name': u'scatterternary > marker > colorbar > xpad',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-xpad'},\n", - " {'description': u'Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to \"array\". Used with `ticktext`.',\n", - " 'name': u'scatterternary > marker > colorbar > tickvals',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickvals'},\n", - " {'description': u\"Sets the color bar's tick label font\",\n", - " 'name': u'scatterternary > marker > colorbar > tickfont',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'scatterternary > marker > colorbar > tickfont > family',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'scatterternary > marker > colorbar > tickfont > color',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'scatterternary > marker > colorbar > tickfont > size',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickfont-size'},\n", - " {'description': u'Sets the tick width (in px).',\n", - " 'name': u'scatterternary > marker > colorbar > tickwidth',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickwidth'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > colorbar > tick0',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tick0'},\n", - " {'description': u'Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.',\n", - " 'name': u'scatterternary > marker > colorbar > tickangle',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-tickangle'},\n", - " {'description': u'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\"',\n", - " 'name': u'scatterternary > marker > colorbar > dtick',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-dtick'},\n", - " {'description': u'Sets the amount of padding (in px) along the y direction.',\n", - " 'name': u'scatterternary > marker > colorbar > ypad',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-ypad'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > colorbar > exponentformat',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-exponentformat'},\n", - " {'description': u'Sets the y position of the color bar (in plot fraction).',\n", - " 'name': u'scatterternary > marker > colorbar > y',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-y'},\n", - " {'description': u'Sets the x position of the color bar (in plot fraction).',\n", - " 'name': u'scatterternary > marker > colorbar > x',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-x'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > colorbar > thicknessmode',\n", - " 'permalink': u'reference/#scatterternary-marker-colorbar-thicknessmode'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > sizemode',\n", - " 'permalink': u'reference/#scatterternary-marker-sizemode'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > cauto',\n", - " 'permalink': u'reference/#scatterternary-marker-cauto'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > marker > cmax',\n", - " 'permalink': u'reference/#scatterternary-marker-cmax'},\n", - " {'description': u'Has an effect only if `marker.size` is set to a numerical array. Sets the minimum size (in px) of the rendered marker points.',\n", - " 'name': u'scatterternary > marker > sizemin',\n", - " 'permalink': u'reference/#scatterternary-marker-sizemin'},\n", - " {'description': u'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\".',\n", - " 'name': u'scatterternary > hoveron',\n", - " 'permalink': u'reference/#scatterternary-hoveron'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > fill',\n", - " 'permalink': u'reference/#scatterternary-fill'},\n", - " {'description': u'Determines whether or not an item corresponding to this trace is shown in the legend.',\n", - " 'name': u'scatterternary > showlegend',\n", - " 'permalink': u'reference/#scatterternary-showlegend'},\n", - " {'description': u'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',\n", - " 'name': u'scatterternary > sum',\n", - " 'permalink': u'reference/#scatterternary-sum'},\n", - " {'description': u'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',\n", - " 'name': u'scatterternary > customdata',\n", - " 'permalink': u'reference/#scatterternary-customdata'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > subplot',\n", - " 'permalink': u'reference/#scatterternary-subplot'},\n", - " {'description': u'Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect.',\n", - " 'name': u'scatterternary > selectedpoints',\n", - " 'permalink': u'reference/#scatterternary-selectedpoints'},\n", - " {'description': u'Properties for type',\n", - " 'name': u'scatterternary > type',\n", - " 'permalink': u'reference/#scatterternary-type'},\n", - " {'description': u'Sets the opacity of the trace.',\n", - " 'name': u'scatterternary > opacity',\n", - " 'permalink': u'reference/#scatterternary-opacity'},\n", - " {'description': u'Sets the text font.',\n", - " 'name': u'scatterternary > textfont',\n", - " 'permalink': u'reference/#scatterternary-textfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'scatterternary > textfont > family',\n", - " 'permalink': u'reference/#scatterternary-textfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'scatterternary > textfont > color',\n", - " 'permalink': u'reference/#scatterternary-textfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'scatterternary > textfont > size',\n", - " 'permalink': u'reference/#scatterternary-textfont-size'},\n", - " {'description': u'Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.',\n", - " 'name': u'scatterternary > legendgroup',\n", - " 'permalink': u'reference/#scatterternary-legendgroup'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > hovertext',\n", - " 'permalink': u'reference/#scatterternary-hovertext'},\n", - " {'description': u'Properties for hoverlabel',\n", - " 'name': u'scatterternary > hoverlabel',\n", - " 'permalink': u'reference/#scatterternary-hoverlabel'},\n", - " {'description': u'Sets the border color of the hover labels for this trace.',\n", - " 'name': u'scatterternary > hoverlabel > bordercolor',\n", - " 'permalink': u'reference/#scatterternary-hoverlabel-bordercolor'},\n", - " {'description': u'Sets the background color of the hover labels for this trace',\n", - " 'name': u'scatterternary > hoverlabel > bgcolor',\n", - " 'permalink': u'reference/#scatterternary-hoverlabel-bgcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > hoverlabel > namelength',\n", - " 'permalink': u'reference/#scatterternary-hoverlabel-namelength'},\n", - " {'description': u'Sets the font used in hover labels.',\n", - " 'name': u'scatterternary > hoverlabel > font',\n", - " 'permalink': u'reference/#scatterternary-hoverlabel-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'scatterternary > hoverlabel > font > family',\n", - " 'permalink': u'reference/#scatterternary-hoverlabel-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'scatterternary > hoverlabel > font > color',\n", - " 'permalink': u'reference/#scatterternary-hoverlabel-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'scatterternary > hoverlabel > font > size',\n", - " 'permalink': u'reference/#scatterternary-hoverlabel-font-size'},\n", - " {'description': u'Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.',\n", - " 'name': u'scatterternary > fillcolor',\n", - " 'permalink': u'reference/#scatterternary-fillcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'scatterternary > hoverinfo',\n", - " 'permalink': u'reference/#scatterternary-hoverinfo'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'scatterternary > line',\n", - " 'permalink': u'reference/#scatterternary-line'},\n", - " {'description': u'Sets the line color.',\n", - " 'name': u'scatterternary > line > color',\n", - " 'permalink': u'reference/#scatterternary-line-color'},\n", - " {'description': u'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).',\n", - " 'name': u'scatterternary > line > smoothing',\n", - " 'permalink': u'reference/#scatterternary-line-smoothing'},\n", - " {'description': u'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\").',\n", - " 'name': u'scatterternary > line > dash',\n", - " 'permalink': u'reference/#scatterternary-line-dash'},\n", - " {'description': u'Sets the line width (in px).',\n", - " 'name': u'scatterternary > line > width',\n", - " 'permalink': u'reference/#scatterternary-line-width'},\n", - " {'description': u'Determines the line shape. With \"spline\" the lines are drawn using spline interpolation. The other available values correspond to step-wise line shapes.',\n", - " 'name': u'scatterternary > line > shape',\n", - " 'permalink': u'reference/#scatterternary-line-shape'},\n", - " {'description': u'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`.',\n", - " 'name': u'scatterternary > a',\n", - " 'permalink': u'reference/#scatterternary-a'},\n", - " {'description': u'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`.',\n", - " 'name': u'scatterternary > c',\n", - " 'permalink': u'reference/#scatterternary-c'},\n", - " {'description': u'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`.',\n", - " 'name': u'scatterternary > b',\n", - " 'permalink': u'reference/#scatterternary-b'},\n", - " {'description': u'Sets the trace name. The trace name appear as the legend item and on hover.',\n", - " 'name': u'scatterternary > name',\n", - " 'permalink': u'reference/#scatterternary-name'},\n", - " {'description': u'Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.',\n", - " 'name': u'scatterternary > connectgaps',\n", - " 'permalink': u'reference/#scatterternary-connectgaps'},\n", - " {'description': u'Assigns id labels to each datum. These ids for object constancy of data points during animation.',\n", - " 'name': u'scatterternary > ids',\n", - " 'permalink': u'reference/#scatterternary-ids'},\n", - " {'description': u'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\".',\n", - " 'name': u'scatterternary > mode',\n", - " 'permalink': u'reference/#scatterternary-mode'},\n", - " {'description': u'Properties for unselected',\n", - " 'name': u'scatterternary > unselected',\n", - " 'permalink': u'reference/#scatterternary-unselected'},\n", - " {'description': u'Properties for marker',\n", - " 'name': u'scatterternary > unselected > marker',\n", - " 'permalink': u'reference/#scatterternary-unselected-marker'},\n", - " {'description': u'Sets the marker opacity of unselected points, applied only when a selection exists.',\n", - " 'name': u'scatterternary > unselected > marker > opacity',\n", - " 'permalink': u'reference/#scatterternary-unselected-marker-opacity'},\n", - " {'description': u'Sets the marker color of unselected points, applied only when a selection exists.',\n", - " 'name': u'scatterternary > unselected > marker > color',\n", - " 'permalink': u'reference/#scatterternary-unselected-marker-color'},\n", - " {'description': u'Sets the marker size of unselected points, applied only when a selection exists.',\n", - " 'name': u'scatterternary > unselected > marker > size',\n", - " 'permalink': u'reference/#scatterternary-unselected-marker-size'},\n", - " {'description': u'Properties for textfont',\n", - " 'name': u'scatterternary > unselected > textfont',\n", - " 'permalink': u'reference/#scatterternary-unselected-textfont'},\n", - " {'description': u'Sets the text font color of unselected points, applied only when a selection exists.',\n", - " 'name': u'scatterternary > unselected > textfont > color',\n", - " 'permalink': u'reference/#scatterternary-unselected-textfont-color'},\n", - " {'description': u'Sets the lower bound of color domain.',\n", - " 'name': u'surface > cmin',\n", - " 'permalink': u'reference/#surface-cmin'},\n", - " {'description': u'Properties for stream',\n", - " 'name': u'surface > stream',\n", - " 'permalink': u'reference/#surface-stream'},\n", - " {'description': u'The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.',\n", - " 'name': u'surface > stream > token',\n", - " 'permalink': u'reference/#surface-stream-token'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > stream > maxpoints',\n", - " 'permalink': u'reference/#surface-stream-maxpoints'},\n", - " {'description': u'Sets the text elements associated with each z value. If trace `hoverinfo` contains a \"text\" flag and \"hovertext\" is not set, these elements will be seen in the hover labels.',\n", - " 'name': u'surface > text',\n", - " 'permalink': u'reference/#surface-text'},\n", - " {'description': u'Sets the calendar system to use with `y` date data.',\n", - " 'name': u'surface > ycalendar',\n", - " 'permalink': u'reference/#surface-ycalendar'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > scene',\n", - " 'permalink': u'reference/#surface-scene'},\n", - " {'description': u'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).',\n", - " 'name': u'surface > visible',\n", - " 'permalink': u'reference/#surface-visible'},\n", - " {'description': u'Sets the calendar system to use with `x` date data.',\n", - " 'name': u'surface > xcalendar',\n", - " 'permalink': u'reference/#surface-xcalendar'},\n", - " {'description': u'Properties for colorbar',\n", - " 'name': u'surface > colorbar',\n", - " 'permalink': u'reference/#surface-colorbar'},\n", - " {'description': u'Sets this color bar\\'s vertical position anchor This anchor binds the `y` position to the \"top\", \"middle\" or \"bottom\" of the color bar.',\n", - " 'name': u'surface > colorbar > yanchor',\n", - " 'permalink': u'reference/#surface-colorbar-yanchor'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > colorbar > showexponent',\n", - " 'permalink': u'reference/#surface-colorbar-showexponent'},\n", - " {'description': u'Determines whether or not the tick labels are drawn.',\n", - " 'name': u'surface > colorbar > showticklabels',\n", - " 'permalink': u'reference/#surface-colorbar-showticklabels'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > colorbar > lenmode',\n", - " 'permalink': u'reference/#surface-colorbar-lenmode'},\n", - " {'description': u'Same as `showtickprefix` but for tick suffixes.',\n", - " 'name': u'surface > colorbar > showticksuffix',\n", - " 'permalink': u'reference/#surface-colorbar-showticksuffix'},\n", - " {'description': u\"Sets this color bar's title font.\",\n", - " 'name': u'surface > colorbar > titlefont',\n", - " 'permalink': u'reference/#surface-colorbar-titlefont'},\n", - " {'description': u'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\".',\n", - " 'name': u'surface > colorbar > titlefont > family',\n", - " 'permalink': u'reference/#surface-colorbar-titlefont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'surface > colorbar > titlefont > color',\n", - " 'permalink': u'reference/#surface-colorbar-titlefont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'surface > colorbar > titlefont > size',\n", - " 'permalink': u'reference/#surface-colorbar-titlefont-size'},\n", - " {'description': u'Sets the width (in px) or the border enclosing this color bar.',\n", - " 'name': u'surface > colorbar > borderwidth',\n", - " 'permalink': u'reference/#surface-colorbar-borderwidth'},\n", - " {'description': u'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\".',\n", - " 'name': u'surface > colorbar > nticks',\n", - " 'permalink': u'reference/#surface-colorbar-nticks'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > colorbar > showtickprefix',\n", - " 'permalink': u'reference/#surface-colorbar-showtickprefix'},\n", - " {'description': u'Determines the location of the colorbar title with respect to the color bar.',\n", - " 'name': u'surface > colorbar > titleside',\n", - " 'permalink': u'reference/#surface-colorbar-titleside'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'surface > colorbar > outlinecolor',\n", - " 'permalink': u'reference/#surface-colorbar-outlinecolor'},\n", - " {'description': u'Sets a tick label prefix.',\n", - " 'name': u'surface > colorbar > tickprefix',\n", - " 'permalink': u'reference/#surface-colorbar-tickprefix'},\n", - " {'description': u'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\"',\n", - " 'name': u'surface > colorbar > tickformat',\n", - " 'permalink': u'reference/#surface-colorbar-tickformat'},\n", - " {'description': u'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).',\n", - " 'name': u'surface > colorbar > tickmode',\n", - " 'permalink': u'reference/#surface-colorbar-tickmode'},\n", - " {'description': u'Sets the title of the color bar.',\n", - " 'name': u'surface > colorbar > title',\n", - " 'permalink': u'reference/#surface-colorbar-title'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > colorbar > ticks',\n", - " 'permalink': u'reference/#surface-colorbar-ticks'},\n", - " {'description': u'Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.',\n", - " 'name': u'surface > colorbar > thickness',\n", - " 'permalink': u'reference/#surface-colorbar-thickness'},\n", - " {'description': u'Sets the color of padded area.',\n", - " 'name': u'surface > colorbar > bgcolor',\n", - " 'permalink': u'reference/#surface-colorbar-bgcolor'},\n", - " {'description': u'Sets the width (in px) of the axis line.',\n", - " 'name': u'surface > colorbar > outlinewidth',\n", - " 'permalink': u'reference/#surface-colorbar-outlinewidth'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'surface > colorbar > bordercolor',\n", - " 'permalink': u'reference/#surface-colorbar-bordercolor'},\n", - " {'description': u'Sets this color bar\\'s horizontal position anchor. This anchor binds the `x` position to the \"left\", \"center\" or \"right\" of the color bar.',\n", - " 'name': u'surface > colorbar > xanchor',\n", - " 'permalink': u'reference/#surface-colorbar-xanchor'},\n", - " {'description': u'If \"true\", even 4-digit integers are separated',\n", - " 'name': u'surface > colorbar > separatethousands',\n", - " 'permalink': u'reference/#surface-colorbar-separatethousands'},\n", - " {'description': u'Sets the tick length (in px).',\n", - " 'name': u'surface > colorbar > ticklen',\n", - " 'permalink': u'reference/#surface-colorbar-ticklen'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > colorbar > len',\n", - " 'permalink': u'reference/#surface-colorbar-len'},\n", - " {'description': u'Properties for tickformatstops',\n", - " 'name': u'surface > colorbar > tickformatstops',\n", - " 'permalink': u'reference/#surface-colorbar-tickformatstops'},\n", - " {'description': u'Properties for items',\n", - " 'name': u'surface > colorbar > tickformatstops > items',\n", - " 'permalink': u'reference/#surface-colorbar-tickformatstops-items'},\n", - " {'description': u'Properties for tickformatstop',\n", - " 'name': u'surface > colorbar > tickformatstops > items > tickformatstop',\n", - " 'permalink': u'reference/#surface-colorbar-tickformatstops-items-tickformatstop'},\n", - " {'description': u'Sets a tick label suffix.',\n", - " 'name': u'surface > colorbar > ticksuffix',\n", - " 'permalink': u'reference/#surface-colorbar-ticksuffix'},\n", - " {'description': u'Sets the tick color.',\n", - " 'name': u'surface > colorbar > tickcolor',\n", - " 'permalink': u'reference/#surface-colorbar-tickcolor'},\n", - " {'description': u'Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to \"array\". Used with `tickvals`.',\n", - " 'name': u'surface > colorbar > ticktext',\n", - " 'permalink': u'reference/#surface-colorbar-ticktext'},\n", - " {'description': u'Sets the amount of padding (in px) along the x direction.',\n", - " 'name': u'surface > colorbar > xpad',\n", - " 'permalink': u'reference/#surface-colorbar-xpad'},\n", - " {'description': u'Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to \"array\". Used with `ticktext`.',\n", - " 'name': u'surface > colorbar > tickvals',\n", - " 'permalink': u'reference/#surface-colorbar-tickvals'},\n", - " {'description': u\"Sets the color bar's tick label font\",\n", - " 'name': u'surface > colorbar > tickfont',\n", - " 'permalink': u'reference/#surface-colorbar-tickfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'surface > colorbar > tickfont > family',\n", - " 'permalink': u'reference/#surface-colorbar-tickfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'surface > colorbar > tickfont > color',\n", - " 'permalink': u'reference/#surface-colorbar-tickfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'surface > colorbar > tickfont > size',\n", - " 'permalink': u'reference/#surface-colorbar-tickfont-size'},\n", - " {'description': u'Sets the tick width (in px).',\n", - " 'name': u'surface > colorbar > tickwidth',\n", - " 'permalink': u'reference/#surface-colorbar-tickwidth'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > colorbar > tick0',\n", - " 'permalink': u'reference/#surface-colorbar-tick0'},\n", - " {'description': u'Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.',\n", - " 'name': u'surface > colorbar > tickangle',\n", - " 'permalink': u'reference/#surface-colorbar-tickangle'},\n", - " {'description': u'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\"',\n", - " 'name': u'surface > colorbar > dtick',\n", - " 'permalink': u'reference/#surface-colorbar-dtick'},\n", - " {'description': u'Sets the amount of padding (in px) along the y direction.',\n", - " 'name': u'surface > colorbar > ypad',\n", - " 'permalink': u'reference/#surface-colorbar-ypad'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > colorbar > exponentformat',\n", - " 'permalink': u'reference/#surface-colorbar-exponentformat'},\n", - " {'description': u'Sets the y position of the color bar (in plot fraction).',\n", - " 'name': u'surface > colorbar > y',\n", - " 'permalink': u'reference/#surface-colorbar-y'},\n", - " {'description': u'Sets the x position of the color bar (in plot fraction).',\n", - " 'name': u'surface > colorbar > x',\n", - " 'permalink': u'reference/#surface-colorbar-x'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > colorbar > thicknessmode',\n", - " 'permalink': u'reference/#surface-colorbar-thicknessmode'},\n", - " {'description': u'Determines whether or not an item corresponding to this trace is shown in the legend.',\n", - " 'name': u'surface > showlegend',\n", - " 'permalink': u'reference/#surface-showlegend'},\n", - " {'description': u'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',\n", - " 'name': u'surface > customdata',\n", - " 'permalink': u'reference/#surface-customdata'},\n", - " {'description': u'Sets the surface color values, used for setting a color scale independent of `z`.',\n", - " 'name': u'surface > surfacecolor',\n", - " 'permalink': u'reference/#surface-surfacecolor'},\n", - " {'description': u'Sets the calendar system to use with `z` date data.',\n", - " 'name': u'surface > zcalendar',\n", - " 'permalink': u'reference/#surface-zcalendar'},\n", - " {'description': u'Properties for contours',\n", - " 'name': u'surface > contours',\n", - " 'permalink': u'reference/#surface-contours'},\n", - " {'description': u'Properties for y',\n", - " 'name': u'surface > contours > y',\n", - " 'permalink': u'reference/#surface-contours-y'},\n", - " {'description': u'Determines whether or not contour lines about the y dimension are drawn.',\n", - " 'name': u'surface > contours > y > show',\n", - " 'permalink': u'reference/#surface-contours-y-show'},\n", - " {'description': u'Sets the color of the contour lines.',\n", - " 'name': u'surface > contours > y > color',\n", - " 'permalink': u'reference/#surface-contours-y-color'},\n", - " {'description': u'Sets the width of the highlighted contour lines.',\n", - " 'name': u'surface > contours > y > highlightwidth',\n", - " 'permalink': u'reference/#surface-contours-y-highlightwidth'},\n", - " {'description': u'Properties for project',\n", - " 'name': u'surface > contours > y > project',\n", - " 'permalink': u'reference/#surface-contours-y-project'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > contours > y > project > y',\n", - " 'permalink': u'reference/#surface-contours-y-project-y'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > contours > y > project > x',\n", - " 'permalink': u'reference/#surface-contours-y-project-x'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > contours > y > project > z',\n", - " 'permalink': u'reference/#surface-contours-y-project-z'},\n", - " {'description': u'Sets the width of the contour lines.',\n", - " 'name': u'surface > contours > y > width',\n", - " 'permalink': u'reference/#surface-contours-y-width'},\n", - " {'description': u'Sets the color of the highlighted contour lines.',\n", - " 'name': u'surface > contours > y > highlightcolor',\n", - " 'permalink': u'reference/#surface-contours-y-highlightcolor'},\n", - " {'description': u'Determines whether or not contour lines about the y dimension are highlighted on hover.',\n", - " 'name': u'surface > contours > y > highlight',\n", - " 'permalink': u'reference/#surface-contours-y-highlight'},\n", - " {'description': u'An alternate to \"color\". Determines whether or not the contour lines are colored using the trace \"colorscale\".',\n", - " 'name': u'surface > contours > y > usecolormap',\n", - " 'permalink': u'reference/#surface-contours-y-usecolormap'},\n", - " {'description': u'Properties for x',\n", - " 'name': u'surface > contours > x',\n", - " 'permalink': u'reference/#surface-contours-x'},\n", - " {'description': u'Determines whether or not contour lines about the x dimension are drawn.',\n", - " 'name': u'surface > contours > x > show',\n", - " 'permalink': u'reference/#surface-contours-x-show'},\n", - " {'description': u'Sets the color of the contour lines.',\n", - " 'name': u'surface > contours > x > color',\n", - " 'permalink': u'reference/#surface-contours-x-color'},\n", - " {'description': u'Sets the width of the highlighted contour lines.',\n", - " 'name': u'surface > contours > x > highlightwidth',\n", - " 'permalink': u'reference/#surface-contours-x-highlightwidth'},\n", - " {'description': u'Properties for project',\n", - " 'name': u'surface > contours > x > project',\n", - " 'permalink': u'reference/#surface-contours-x-project'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > contours > x > project > y',\n", - " 'permalink': u'reference/#surface-contours-x-project-y'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > contours > x > project > x',\n", - " 'permalink': u'reference/#surface-contours-x-project-x'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > contours > x > project > z',\n", - " 'permalink': u'reference/#surface-contours-x-project-z'},\n", - " {'description': u'Sets the width of the contour lines.',\n", - " 'name': u'surface > contours > x > width',\n", - " 'permalink': u'reference/#surface-contours-x-width'},\n", - " {'description': u'Sets the color of the highlighted contour lines.',\n", - " 'name': u'surface > contours > x > highlightcolor',\n", - " 'permalink': u'reference/#surface-contours-x-highlightcolor'},\n", - " {'description': u'Determines whether or not contour lines about the x dimension are highlighted on hover.',\n", - " 'name': u'surface > contours > x > highlight',\n", - " 'permalink': u'reference/#surface-contours-x-highlight'},\n", - " {'description': u'An alternate to \"color\". Determines whether or not the contour lines are colored using the trace \"colorscale\".',\n", - " 'name': u'surface > contours > x > usecolormap',\n", - " 'permalink': u'reference/#surface-contours-x-usecolormap'},\n", - " {'description': u'Properties for z',\n", - " 'name': u'surface > contours > z',\n", - " 'permalink': u'reference/#surface-contours-z'},\n", - " {'description': u'Determines whether or not contour lines about the z dimension are drawn.',\n", - " 'name': u'surface > contours > z > show',\n", - " 'permalink': u'reference/#surface-contours-z-show'},\n", - " {'description': u'Sets the color of the contour lines.',\n", - " 'name': u'surface > contours > z > color',\n", - " 'permalink': u'reference/#surface-contours-z-color'},\n", - " {'description': u'Sets the width of the highlighted contour lines.',\n", - " 'name': u'surface > contours > z > highlightwidth',\n", - " 'permalink': u'reference/#surface-contours-z-highlightwidth'},\n", - " {'description': u'Properties for project',\n", - " 'name': u'surface > contours > z > project',\n", - " 'permalink': u'reference/#surface-contours-z-project'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > contours > z > project > y',\n", - " 'permalink': u'reference/#surface-contours-z-project-y'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > contours > z > project > x',\n", - " 'permalink': u'reference/#surface-contours-z-project-x'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > contours > z > project > z',\n", - " 'permalink': u'reference/#surface-contours-z-project-z'},\n", - " {'description': u'Sets the width of the contour lines.',\n", - " 'name': u'surface > contours > z > width',\n", - " 'permalink': u'reference/#surface-contours-z-width'},\n", - " {'description': u'Sets the color of the highlighted contour lines.',\n", - " 'name': u'surface > contours > z > highlightcolor',\n", - " 'permalink': u'reference/#surface-contours-z-highlightcolor'},\n", - " {'description': u'Determines whether or not contour lines about the z dimension are highlighted on hover.',\n", - " 'name': u'surface > contours > z > highlight',\n", - " 'permalink': u'reference/#surface-contours-z-highlight'},\n", - " {'description': u'An alternate to \"color\". Determines whether or not the contour lines are colored using the trace \"colorscale\".',\n", - " 'name': u'surface > contours > z > usecolormap',\n", - " 'permalink': u'reference/#surface-contours-z-usecolormap'},\n", - " {'description': u'Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect.',\n", - " 'name': u'surface > selectedpoints',\n", - " 'permalink': u'reference/#surface-selectedpoints'},\n", - " {'description': u'Properties for type',\n", - " 'name': u'surface > type',\n", - " 'permalink': u'reference/#surface-type'},\n", - " {'description': u'Obsolete. Use `cmin` instead.',\n", - " 'name': u'surface > _deprecated > zmin',\n", - " 'permalink': u'reference/#surface-_deprecated-zmin'},\n", - " {'description': u'Obsolete. Use `cmax` instead.',\n", - " 'name': u'surface > _deprecated > zmax',\n", - " 'permalink': u'reference/#surface-_deprecated-zmax'},\n", - " {'description': u'Obsolete. Use `cauto` instead.',\n", - " 'name': u'surface > _deprecated > zauto',\n", - " 'permalink': u'reference/#surface-_deprecated-zauto'},\n", - " {'description': u'Sets the opacity of the surface.',\n", - " 'name': u'surface > opacity',\n", - " 'permalink': u'reference/#surface-opacity'},\n", - " {'description': u'Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.',\n", - " 'name': u'surface > legendgroup',\n", - " 'permalink': u'reference/#surface-legendgroup'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > hidesurface',\n", - " 'permalink': u'reference/#surface-hidesurface'},\n", - " {'description': u'Determines whether or not the colorscale is picked using the sign of the input z values.',\n", - " 'name': u'surface > autocolorscale',\n", - " 'permalink': u'reference/#surface-autocolorscale'},\n", - " {'description': u'Properties for hoverlabel',\n", - " 'name': u'surface > hoverlabel',\n", - " 'permalink': u'reference/#surface-hoverlabel'},\n", - " {'description': u'Sets the border color of the hover labels for this trace.',\n", - " 'name': u'surface > hoverlabel > bordercolor',\n", - " 'permalink': u'reference/#surface-hoverlabel-bordercolor'},\n", - " {'description': u'Sets the background color of the hover labels for this trace',\n", - " 'name': u'surface > hoverlabel > bgcolor',\n", - " 'permalink': u'reference/#surface-hoverlabel-bgcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > hoverlabel > namelength',\n", - " 'permalink': u'reference/#surface-hoverlabel-namelength'},\n", - " {'description': u'Sets the font used in hover labels.',\n", - " 'name': u'surface > hoverlabel > font',\n", - " 'permalink': u'reference/#surface-hoverlabel-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'surface > hoverlabel > font > family',\n", - " 'permalink': u'reference/#surface-hoverlabel-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'surface > hoverlabel > font > color',\n", - " 'permalink': u'reference/#surface-hoverlabel-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'surface > hoverlabel > font > size',\n", - " 'permalink': u'reference/#surface-hoverlabel-font-size'},\n", - " {'description': u'Properties for lighting',\n", - " 'name': u'surface > lighting',\n", - " 'permalink': u'reference/#surface-lighting'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > lighting > fresnel',\n", - " 'permalink': u'reference/#surface-lighting-fresnel'},\n", - " {'description': u'Alters specular reflection; the rougher the surface, the wider and less contrasty the shine.',\n", - " 'name': u'surface > lighting > roughness',\n", - " 'permalink': u'reference/#surface-lighting-roughness'},\n", - " {'description': u'Represents the level that incident rays are reflected in a single direction, causing shine.',\n", - " 'name': u'surface > lighting > specular',\n", - " 'permalink': u'reference/#surface-lighting-specular'},\n", - " {'description': u'Ambient light increases overall color visibility but can wash out the image.',\n", - " 'name': u'surface > lighting > ambient',\n", - " 'permalink': u'reference/#surface-lighting-ambient'},\n", - " {'description': u'Represents the extent that incident rays are reflected in a range of angles.',\n", - " 'name': u'surface > lighting > diffuse',\n", - " 'permalink': u'reference/#surface-lighting-diffuse'},\n", - " {'description': u'Determines whether or not a colorbar is displayed for this trace.',\n", - " 'name': u'surface > showscale',\n", - " 'permalink': u'reference/#surface-showscale'},\n", - " {'description': u'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.',\n", - " 'name': u'surface > hoverinfo',\n", - " 'permalink': u'reference/#surface-hoverinfo'},\n", - " {'description': u'Properties for lightposition',\n", - " 'name': u'surface > lightposition',\n", - " 'permalink': u'reference/#surface-lightposition'},\n", - " {'description': u'Numeric vector, representing the Y coordinate for each vertex.',\n", - " 'name': u'surface > lightposition > y',\n", - " 'permalink': u'reference/#surface-lightposition-y'},\n", - " {'description': u'Numeric vector, representing the X coordinate for each vertex.',\n", - " 'name': u'surface > lightposition > x',\n", - " 'permalink': u'reference/#surface-lightposition-x'},\n", - " {'description': u'Numeric vector, representing the Z coordinate for each vertex.',\n", - " 'name': u'surface > lightposition > z',\n", - " 'permalink': u'reference/#surface-lightposition-z'},\n", - " {'description': u'Sets the z coordinates.',\n", - " 'name': u'surface > z',\n", - " 'permalink': u'reference/#surface-z'},\n", - " {'description': u'Sets the trace name. The trace name appear as the legend item and on hover.',\n", - " 'name': u'surface > name',\n", - " 'permalink': u'reference/#surface-name'},\n", - " {'description': u\"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\",\n", - " 'name': u'surface > colorscale',\n", - " 'permalink': u'reference/#surface-colorscale'},\n", - " {'description': u'Assigns id labels to each datum. These ids for object constancy of data points during animation.',\n", - " 'name': u'surface > ids',\n", - " 'permalink': u'reference/#surface-ids'},\n", - " {'description': u'Reverses the colorscale.',\n", - " 'name': u'surface > reversescale',\n", - " 'permalink': u'reference/#surface-reversescale'},\n", - " {'description': u'Determines the whether or not the color domain is computed with respect to the input data.',\n", - " 'name': u'surface > cauto',\n", - " 'permalink': u'reference/#surface-cauto'},\n", - " {'description': u'Sets the y coordinates.',\n", - " 'name': u'surface > y',\n", - " 'permalink': u'reference/#surface-y'},\n", - " {'description': u'Sets the x coordinates.',\n", - " 'name': u'surface > x',\n", - " 'permalink': u'reference/#surface-x'},\n", - " {'description': u'Sets the upper bound of color domain.',\n", - " 'name': u'surface > cmax',\n", - " 'permalink': u'reference/#surface-cmax'},\n", - " {'description': u'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',\n", - " 'name': u'sankey > valueformat',\n", - " 'permalink': u'reference/#sankey-valueformat'},\n", - " {'description': u'Properties for domain',\n", - " 'name': u'sankey > domain',\n", - " 'permalink': u'reference/#sankey-domain'},\n", - " {'description': u'Sets the vertical domain of this sankey trace (in plot fraction).',\n", - " 'name': u'sankey > domain > y',\n", - " 'permalink': u'reference/#sankey-domain-y'},\n", - " {'description': u'Sets the horizontal domain of this sankey trace (in plot fraction).',\n", - " 'name': u'sankey > domain > x',\n", - " 'permalink': u'reference/#sankey-domain-x'},\n", - " {'description': u'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',\n", - " 'name': u'sankey > customdata',\n", - " 'permalink': u'reference/#sankey-customdata'},\n", - " {'description': u'Sets the orientation of the Sankey diagram.',\n", - " 'name': u'sankey > orientation',\n", - " 'permalink': u'reference/#sankey-orientation'},\n", - " {'description': u'Properties for stream',\n", - " 'name': u'sankey > stream',\n", - " 'permalink': u'reference/#sankey-stream'},\n", - " {'description': u'The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.',\n", - " 'name': u'sankey > stream > token',\n", - " 'permalink': u'reference/#sankey-stream-token'},\n", - " {'description': u'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.',\n", - " 'name': u'sankey > stream > maxpoints',\n", - " 'permalink': u'reference/#sankey-stream-maxpoints'},\n", - " {'description': u'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).',\n", - " 'name': u'sankey > visible',\n", - " 'permalink': u'reference/#sankey-visible'},\n", - " {'description': u'Determines whether or not an item corresponding to this trace is shown in the legend.',\n", - " 'name': u'sankey > showlegend',\n", - " 'permalink': u'reference/#sankey-showlegend'},\n", - " {'description': u'Adds a unit to follow the value in the hover tooltip. Add a space if a separation is necessary from the value.',\n", - " 'name': u'sankey > valuesuffix',\n", - " 'permalink': u'reference/#sankey-valuesuffix'},\n", - " {'description': u'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.',\n", - " 'name': u'sankey > arrangement',\n", - " 'permalink': u'reference/#sankey-arrangement'},\n", - " {'description': u'Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect.',\n", - " 'name': u'sankey > selectedpoints',\n", - " 'permalink': u'reference/#sankey-selectedpoints'},\n", - " {'description': u'Properties for type',\n", - " 'name': u'sankey > type',\n", - " 'permalink': u'reference/#sankey-type'},\n", - " {'description': u'Sets the opacity of the trace.',\n", - " 'name': u'sankey > opacity',\n", - " 'permalink': u'reference/#sankey-opacity'},\n", - " {'description': u'Sets the font for node labels',\n", - " 'name': u'sankey > textfont',\n", - " 'permalink': u'reference/#sankey-textfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'sankey > textfont > family',\n", - " 'permalink': u'reference/#sankey-textfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'sankey > textfont > color',\n", - " 'permalink': u'reference/#sankey-textfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'sankey > textfont > size',\n", - " 'permalink': u'reference/#sankey-textfont-size'},\n", - " {'description': u'Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.',\n", - " 'name': u'sankey > legendgroup',\n", - " 'permalink': u'reference/#sankey-legendgroup'},\n", - " {'description': u'The nodes of the Sankey plot.',\n", - " 'name': u'sankey > node',\n", - " 'permalink': u'reference/#sankey-node'},\n", - " {'description': u'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.',\n", - " 'name': u'sankey > node > color',\n", - " 'permalink': u'reference/#sankey-node-color'},\n", - " {'description': u'Sets the thickness (in px) of the `nodes`.',\n", - " 'name': u'sankey > node > thickness',\n", - " 'permalink': u'reference/#sankey-node-thickness'},\n", - " {'description': u'Sets the padding (in px) between the `nodes`.',\n", - " 'name': u'sankey > node > pad',\n", - " 'permalink': u'reference/#sankey-node-pad'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'sankey > node > line',\n", - " 'permalink': u'reference/#sankey-node-line'},\n", - " {'description': u'Sets the color of the `line` around each `node`.',\n", - " 'name': u'sankey > node > line > color',\n", - " 'permalink': u'reference/#sankey-node-line-color'},\n", - " {'description': u'Sets the width (in px) of the `line` around each `node`.',\n", - " 'name': u'sankey > node > line > width',\n", - " 'permalink': u'reference/#sankey-node-line-width'},\n", - " {'description': u'The shown name of the node.',\n", - " 'name': u'sankey > node > label',\n", - " 'permalink': u'reference/#sankey-node-label'},\n", - " {'description': u'Properties for hoverlabel',\n", - " 'name': u'sankey > hoverlabel',\n", - " 'permalink': u'reference/#sankey-hoverlabel'},\n", - " {'description': u'Sets the border color of the hover labels for this trace.',\n", - " 'name': u'sankey > hoverlabel > bordercolor',\n", - " 'permalink': u'reference/#sankey-hoverlabel-bordercolor'},\n", - " {'description': u'Sets the background color of the hover labels for this trace',\n", - " 'name': u'sankey > hoverlabel > bgcolor',\n", - " 'permalink': u'reference/#sankey-hoverlabel-bgcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'sankey > hoverlabel > namelength',\n", - " 'permalink': u'reference/#sankey-hoverlabel-namelength'},\n", - " {'description': u'Sets the font used in hover labels.',\n", - " 'name': u'sankey > hoverlabel > font',\n", - " 'permalink': u'reference/#sankey-hoverlabel-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'sankey > hoverlabel > font > family',\n", - " 'permalink': u'reference/#sankey-hoverlabel-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'sankey > hoverlabel > font > color',\n", - " 'permalink': u'reference/#sankey-hoverlabel-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'sankey > hoverlabel > font > size',\n", - " 'permalink': u'reference/#sankey-hoverlabel-font-size'},\n", - " {'description': u'The links of the Sankey plot.',\n", - " 'name': u'sankey > link',\n", - " 'permalink': u'reference/#sankey-link'},\n", - " {'description': u'An integer number `[0..nodes.length - 1]` that represents the target node.',\n", - " 'name': u'sankey > link > target',\n", - " 'permalink': u'reference/#sankey-link-target'},\n", - " {'description': u'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.',\n", - " 'name': u'sankey > link > color',\n", - " 'permalink': u'reference/#sankey-link-color'},\n", - " {'description': u'A numeric value representing the flow volume value.',\n", - " 'name': u'sankey > link > value',\n", - " 'permalink': u'reference/#sankey-link-value'},\n", - " {'description': u'The shown name of the link.',\n", - " 'name': u'sankey > link > label',\n", - " 'permalink': u'reference/#sankey-link-label'},\n", - " {'description': u'An integer number `[0..nodes.length - 1]` that represents the source node.',\n", - " 'name': u'sankey > link > source',\n", - " 'permalink': u'reference/#sankey-link-source'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'sankey > link > line',\n", - " 'permalink': u'reference/#sankey-link-line'},\n", - " {'description': u'Sets the color of the `line` around each `link`.',\n", - " 'name': u'sankey > link > line > color',\n", - " 'permalink': u'reference/#sankey-link-line-color'},\n", - " {'description': u'Sets the width (in px) of the `line` around each `link`.',\n", - " 'name': u'sankey > link > line > width',\n", - " 'permalink': u'reference/#sankey-link-line-width'},\n", - " {'description': u'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.',\n", - " 'name': u'sankey > hoverinfo',\n", - " 'permalink': u'reference/#sankey-hoverinfo'},\n", - " {'description': u'Sets the trace name. The trace name appear as the legend item and on hover.',\n", - " 'name': u'sankey > name',\n", - " 'permalink': u'reference/#sankey-name'},\n", - " {'description': u'Assigns id labels to each datum. These ids for object constancy of data points during animation.',\n", - " 'name': u'sankey > ids',\n", - " 'permalink': u'reference/#sankey-ids'},\n", - " {'description': u'Properties for domain',\n", - " 'name': u'table > domain',\n", - " 'permalink': u'reference/#table-domain'},\n", - " {'description': u'Sets the vertical domain of this table trace (in plot fraction).',\n", - " 'name': u'table > domain > y',\n", - " 'permalink': u'reference/#table-domain-y'},\n", - " {'description': u'Sets the horizontal domain of this table trace (in plot fraction).',\n", - " 'name': u'table > domain > x',\n", - " 'permalink': u'reference/#table-domain-x'},\n", - " {'description': u'Properties for stream',\n", - " 'name': u'table > stream',\n", - " 'permalink': u'reference/#table-stream'},\n", - " {'description': u'The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.',\n", - " 'name': u'table > stream > token',\n", - " 'permalink': u'reference/#table-stream-token'},\n", - " {'description': u'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.',\n", - " 'name': u'table > stream > maxpoints',\n", - " 'permalink': u'reference/#table-stream-maxpoints'},\n", - " {'description': u'The width of columns expressed as a ratio. Columns fill the available width in proportion of their specified column widths.',\n", - " 'name': u'table > columnwidth',\n", - " 'permalink': u'reference/#table-columnwidth'},\n", - " {'description': u'Properties for header',\n", - " 'name': u'table > header',\n", - " 'permalink': u'reference/#table-header'},\n", - " {'description': u'Suffix for cell values.',\n", - " 'name': u'table > header > suffix',\n", - " 'permalink': u'reference/#table-header-suffix'},\n", - " {'description': u'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',\n", - " 'name': u'table > header > format',\n", - " 'permalink': u'reference/#table-header-format'},\n", - " {'description': u'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.',\n", - " 'name': u'table > header > align',\n", - " 'permalink': u'reference/#table-header-align'},\n", - " {'description': u'The height of cells.',\n", - " 'name': u'table > header > height',\n", - " 'permalink': u'reference/#table-header-height'},\n", - " {'description': u'Prefix for cell values.',\n", - " 'name': u'table > header > prefix',\n", - " 'permalink': u'reference/#table-header-prefix'},\n", - " {'description': u'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.',\n", - " 'name': u'table > header > values',\n", - " 'permalink': u'reference/#table-header-values'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'table > header > line',\n", - " 'permalink': u'reference/#table-header-line'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'table > header > line > color',\n", - " 'permalink': u'reference/#table-header-line-color'},\n", - " {'description': u'Properties for width',\n", - " 'name': u'table > header > line > width',\n", - " 'permalink': u'reference/#table-header-line-width'},\n", - " {'description': u'',\n", - " 'name': u'table > header > font',\n", - " 'permalink': u'reference/#table-header-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'table > header > font > family',\n", - " 'permalink': u'reference/#table-header-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'table > header > font > color',\n", - " 'permalink': u'reference/#table-header-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'table > header > font > size',\n", - " 'permalink': u'reference/#table-header-font-size'},\n", - " {'description': u'Properties for fill',\n", - " 'name': u'table > header > fill',\n", - " 'permalink': u'reference/#table-header-fill'},\n", - " {'description': u'Sets the cell fill color. It accepts either a specific color or an array of colors.',\n", - " 'name': u'table > header > fill > color',\n", - " 'permalink': u'reference/#table-header-fill-color'},\n", - " {'description': u'Determines whether or not an item corresponding to this trace is shown in the legend.',\n", - " 'name': u'table > showlegend',\n", - " 'permalink': u'reference/#table-showlegend'},\n", - " {'description': u'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',\n", - " 'name': u'table > customdata',\n", - " 'permalink': u'reference/#table-customdata'},\n", - " {'description': u'Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect.',\n", - " 'name': u'table > selectedpoints',\n", - " 'permalink': u'reference/#table-selectedpoints'},\n", - " {'description': u'Properties for type',\n", - " 'name': u'table > type',\n", - " 'permalink': u'reference/#table-type'},\n", - " {'description': u'Sets the opacity of the trace.',\n", - " 'name': u'table > opacity',\n", - " 'permalink': u'reference/#table-opacity'},\n", - " {'description': u'Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.',\n", - " 'name': u'table > legendgroup',\n", - " 'permalink': u'reference/#table-legendgroup'},\n", - " {'description': u'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.',\n", - " 'name': u'table > columnorder',\n", - " 'permalink': u'reference/#table-columnorder'},\n", - " {'description': u'Properties for hoverlabel',\n", - " 'name': u'table > hoverlabel',\n", - " 'permalink': u'reference/#table-hoverlabel'},\n", - " {'description': u'Sets the border color of the hover labels for this trace.',\n", - " 'name': u'table > hoverlabel > bordercolor',\n", - " 'permalink': u'reference/#table-hoverlabel-bordercolor'},\n", - " {'description': u'Sets the background color of the hover labels for this trace',\n", - " 'name': u'table > hoverlabel > bgcolor',\n", - " 'permalink': u'reference/#table-hoverlabel-bgcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'table > hoverlabel > namelength',\n", - " 'permalink': u'reference/#table-hoverlabel-namelength'},\n", - " {'description': u'Sets the font used in hover labels.',\n", - " 'name': u'table > hoverlabel > font',\n", - " 'permalink': u'reference/#table-hoverlabel-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'table > hoverlabel > font > family',\n", - " 'permalink': u'reference/#table-hoverlabel-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'table > hoverlabel > font > color',\n", - " 'permalink': u'reference/#table-hoverlabel-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'table > hoverlabel > font > size',\n", - " 'permalink': u'reference/#table-hoverlabel-font-size'},\n", - " {'description': u'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.',\n", - " 'name': u'table > hoverinfo',\n", - " 'permalink': u'reference/#table-hoverinfo'},\n", - " {'description': u'Sets the trace name. The trace name appear as the legend item and on hover.',\n", - " 'name': u'table > name',\n", - " 'permalink': u'reference/#table-name'},\n", - " {'description': u'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).',\n", - " 'name': u'table > visible',\n", - " 'permalink': u'reference/#table-visible'},\n", - " {'description': u'Properties for cells',\n", - " 'name': u'table > cells',\n", - " 'permalink': u'reference/#table-cells'},\n", - " {'description': u'Suffix for cell values.',\n", - " 'name': u'table > cells > suffix',\n", - " 'permalink': u'reference/#table-cells-suffix'},\n", - " {'description': u'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',\n", - " 'name': u'table > cells > format',\n", - " 'permalink': u'reference/#table-cells-format'},\n", - " {'description': u'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.',\n", - " 'name': u'table > cells > align',\n", - " 'permalink': u'reference/#table-cells-align'},\n", - " {'description': u'The height of cells.',\n", - " 'name': u'table > cells > height',\n", - " 'permalink': u'reference/#table-cells-height'},\n", - " {'description': u'Prefix for cell values.',\n", - " 'name': u'table > cells > prefix',\n", - " 'permalink': u'reference/#table-cells-prefix'},\n", - " {'description': u'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.',\n", - " 'name': u'table > cells > values',\n", - " 'permalink': u'reference/#table-cells-values'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'table > cells > line',\n", - " 'permalink': u'reference/#table-cells-line'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'table > cells > line > color',\n", - " 'permalink': u'reference/#table-cells-line-color'},\n", - " {'description': u'Properties for width',\n", - " 'name': u'table > cells > line > width',\n", - " 'permalink': u'reference/#table-cells-line-width'},\n", - " {'description': u'',\n", - " 'name': u'table > cells > font',\n", - " 'permalink': u'reference/#table-cells-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'table > cells > font > family',\n", - " 'permalink': u'reference/#table-cells-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'table > cells > font > color',\n", - " 'permalink': u'reference/#table-cells-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'table > cells > font > size',\n", - " 'permalink': u'reference/#table-cells-font-size'},\n", - " {'description': u'Properties for fill',\n", - " 'name': u'table > cells > fill',\n", - " 'permalink': u'reference/#table-cells-fill'},\n", - " {'description': u'Sets the cell fill color. It accepts either a specific color or an array of colors.',\n", - " 'name': u'table > cells > fill > color',\n", - " 'permalink': u'reference/#table-cells-fill-color'},\n", - " {'description': u'Assigns id labels to each datum. These ids for object constancy of data points during animation.',\n", - " 'name': u'table > ids',\n", - " 'permalink': u'reference/#table-ids'},\n", - " {'description': u'Properties for selected',\n", - " 'name': u'violin > selected',\n", - " 'permalink': u'reference/#violin-selected'},\n", - " {'description': u'Properties for marker',\n", - " 'name': u'violin > selected > marker',\n", - " 'permalink': u'reference/#violin-selected-marker'},\n", - " {'description': u'Sets the marker opacity of selected points.',\n", - " 'name': u'violin > selected > marker > opacity',\n", - " 'permalink': u'reference/#violin-selected-marker-opacity'},\n", - " {'description': u'Sets the marker color of selected points.',\n", - " 'name': u'violin > selected > marker > color',\n", - " 'permalink': u'reference/#violin-selected-marker-color'},\n", - " {'description': u'Sets the marker size of selected points.',\n", - " 'name': u'violin > selected > marker > size',\n", - " 'permalink': u'reference/#violin-selected-marker-size'},\n", - " {'description': u'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 violins.',\n", - " 'name': u'violin > jitter',\n", - " 'permalink': u'reference/#violin-jitter'},\n", - " {'description': u'Sets the orientation of the violin(s). If \"v\" (\"h\"), the distribution is visualized along the vertical (horizontal).',\n", - " 'name': u'violin > orientation',\n", - " 'permalink': u'reference/#violin-orientation'},\n", - " {'description': u'Properties for stream',\n", - " 'name': u'violin > stream',\n", - " 'permalink': u'reference/#violin-stream'},\n", - " {'description': u'The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.',\n", - " 'name': u'violin > stream > token',\n", - " 'permalink': u'reference/#violin-stream-token'},\n", - " {'description': u'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.',\n", - " 'name': u'violin > stream > maxpoints',\n", - " 'permalink': u'reference/#violin-stream-maxpoints'},\n", - " {'description': u'Sets the text elements associated with each sample value. 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.',\n", - " 'name': u'violin > text',\n", - " 'permalink': u'reference/#violin-text'},\n", - " {'description': u'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).',\n", - " 'name': u'violin > visible',\n", - " 'permalink': u'reference/#violin-visible'},\n", - " {'description': u\"Sets the bandwidth used to compute the kernel density estimate. By default, the bandwidth is determined by Silverman's rule of thumb.\",\n", - " 'name': u'violin > bandwidth',\n", - " 'permalink': u'reference/#violin-bandwidth'},\n", - " {'description': u'Sets the method by which the span in data space where the density function will be computed. \"soft\" means the span goes from the sample\\'s minimum value minus two bandwidths to the sample\\'s maximum value plus two bandwidths. \"hard\" means the span goes from the sample\\'s minimum to its maximum value. For custom span settings, use mode \"manual\" and fill in the `span` attribute.',\n", - " 'name': u'violin > spanmode',\n", - " 'permalink': u'reference/#violin-spanmode'},\n", - " {'description': u'Properties for marker',\n", - " 'name': u'violin > marker',\n", - " 'permalink': u'reference/#violin-marker'},\n", - " {'description': u'Sets the marker opacity.',\n", - " 'name': u'violin > marker > opacity',\n", - " 'permalink': u'reference/#violin-marker-opacity'},\n", - " {'description': u'Sets the color of the outlier sample points.',\n", - " 'name': u'violin > marker > outliercolor',\n", - " 'permalink': u'reference/#violin-marker-outliercolor'},\n", - " {'description': u'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.',\n", - " 'name': u'violin > marker > color',\n", - " 'permalink': u'reference/#violin-marker-color'},\n", - " {'description': u'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.',\n", - " 'name': u'violin > marker > symbol',\n", - " 'permalink': u'reference/#violin-marker-symbol'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'violin > marker > line',\n", - " 'permalink': u'reference/#violin-marker-line'},\n", - " {'description': u'Sets the border line color of the outlier sample points. Defaults to marker.color',\n", - " 'name': u'violin > marker > line > outliercolor',\n", - " 'permalink': u'reference/#violin-marker-line-outliercolor'},\n", - " {'description': u'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.',\n", - " 'name': u'violin > marker > line > color',\n", - " 'permalink': u'reference/#violin-marker-line-color'},\n", - " {'description': u'Sets the width (in px) of the lines bounding the marker points.',\n", - " 'name': u'violin > marker > line > width',\n", - " 'permalink': u'reference/#violin-marker-line-width'},\n", - " {'description': u'Sets the border line width (in px) of the outlier sample points.',\n", - " 'name': u'violin > marker > line > outlierwidth',\n", - " 'permalink': u'reference/#violin-marker-line-outlierwidth'},\n", - " {'description': u'Sets the marker size (in px).',\n", - " 'name': u'violin > marker > size',\n", - " 'permalink': u'reference/#violin-marker-size'},\n", - " {'description': u'Sets the y coordinate of the box. See overview for more info.',\n", - " 'name': u'violin > y0',\n", - " 'permalink': u'reference/#violin-y0'},\n", - " {'description': u'Sets the position of the sample points in relation to the violins. If \"0\", the sample points are places over the center of the violins. Positive (negative) values correspond to positions to the right (left) for vertical violins and above (below) for horizontal violins.',\n", - " 'name': u'violin > pointpos',\n", - " 'permalink': u'reference/#violin-pointpos'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'violin > line',\n", - " 'permalink': u'reference/#violin-line'},\n", - " {'description': u'Sets the color of line bounding the violin(s).',\n", - " 'name': u'violin > line > color',\n", - " 'permalink': u'reference/#violin-line-color'},\n", - " {'description': u'Sets the width (in px) of line bounding the violin(s).',\n", - " 'name': u'violin > line > width',\n", - " 'permalink': u'reference/#violin-line-width'},\n", - " {'description': u'Do the hover effects highlight individual violins or sample points or the kernel density estimate or any combination of them?',\n", - " 'name': u'violin > hoveron',\n", - " 'permalink': u'reference/#violin-hoveron'},\n", - " {'description': u'Determines whether or not an item corresponding to this trace is shown in the legend.',\n", - " 'name': u'violin > showlegend',\n", - " 'permalink': u'reference/#violin-showlegend'},\n", - " {'description': u'Sets the span in data space for which the density function will be computed. Has an effect only when `spanmode` is set to \"manual\".',\n", - " 'name': u'violin > span',\n", - " 'permalink': u'reference/#violin-span'},\n", - " {'description': u'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',\n", - " 'name': u'violin > customdata',\n", - " 'permalink': u'reference/#violin-customdata'},\n", - " {'description': u'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.',\n", - " 'name': u'violin > xaxis',\n", - " 'permalink': u'reference/#violin-xaxis'},\n", - " {'description': u'Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect.',\n", - " 'name': u'violin > selectedpoints',\n", - " 'permalink': u'reference/#violin-selectedpoints'},\n", - " {'description': u'Properties for type',\n", - " 'name': u'violin > type',\n", - " 'permalink': u'reference/#violin-type'},\n", - " {'description': u'Sets the opacity of the trace.',\n", - " 'name': u'violin > opacity',\n", - " 'permalink': u'reference/#violin-opacity'},\n", - " {'description': u'Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.',\n", - " 'name': u'violin > legendgroup',\n", - " 'permalink': u'reference/#violin-legendgroup'},\n", - " {'description': u'Properties for hoverlabel',\n", - " 'name': u'violin > hoverlabel',\n", - " 'permalink': u'reference/#violin-hoverlabel'},\n", - " {'description': u'Sets the border color of the hover labels for this trace.',\n", - " 'name': u'violin > hoverlabel > bordercolor',\n", - " 'permalink': u'reference/#violin-hoverlabel-bordercolor'},\n", - " {'description': u'Sets the background color of the hover labels for this trace',\n", - " 'name': u'violin > hoverlabel > bgcolor',\n", - " 'permalink': u'reference/#violin-hoverlabel-bgcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'violin > hoverlabel > namelength',\n", - " 'permalink': u'reference/#violin-hoverlabel-namelength'},\n", - " {'description': u'Sets the font used in hover labels.',\n", - " 'name': u'violin > hoverlabel > font',\n", - " 'permalink': u'reference/#violin-hoverlabel-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'violin > hoverlabel > font > family',\n", - " 'permalink': u'reference/#violin-hoverlabel-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'violin > hoverlabel > font > color',\n", - " 'permalink': u'reference/#violin-hoverlabel-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'violin > hoverlabel > font > size',\n", - " 'permalink': u'reference/#violin-hoverlabel-font-size'},\n", - " {'description': u'Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.',\n", - " 'name': u'violin > fillcolor',\n", - " 'permalink': u'reference/#violin-fillcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'violin > hoverinfo',\n", - " 'permalink': u'reference/#violin-hoverinfo'},\n", - " {'description': u'Sets the x coordinate of the box. See overview for more info.',\n", - " 'name': u'violin > x0',\n", - " 'permalink': u'reference/#violin-x0'},\n", - " {'description': u'Properties for box',\n", - " 'name': u'violin > box',\n", - " 'permalink': u'reference/#violin-box'},\n", - " {'description': u\"Sets the width of the inner box plots relative to the violins' width. For example, with 1, the inner box plots are as wide as the violins.\",\n", - " 'name': u'violin > box > width',\n", - " 'permalink': u'reference/#violin-box-width'},\n", - " {'description': u'Determines if an miniature box plot is drawn inside the violins. ',\n", - " 'name': u'violin > box > visible',\n", - " 'permalink': u'reference/#violin-box-visible'},\n", - " {'description': u'Sets the inner box plot fill color.',\n", - " 'name': u'violin > box > fillcolor',\n", - " 'permalink': u'reference/#violin-box-fillcolor'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'violin > box > line',\n", - " 'permalink': u'reference/#violin-box-line'},\n", - " {'description': u'Sets the inner box plot bounding line color.',\n", - " 'name': u'violin > box > line > color',\n", - " 'permalink': u'reference/#violin-box-line-color'},\n", - " {'description': u'Sets the inner box plot bounding line width.',\n", - " 'name': u'violin > box > line > width',\n", - " 'permalink': u'reference/#violin-box-line-width'},\n", - " {'description': u'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',\n", - " 'name': u'violin > name',\n", - " 'permalink': u'reference/#violin-name'},\n", - " {'description': u'Properties for meanline',\n", - " 'name': u'violin > meanline',\n", - " 'permalink': u'reference/#violin-meanline'},\n", - " {'description': u'Sets the mean line color.',\n", - " 'name': u'violin > meanline > color',\n", - " 'permalink': u'reference/#violin-meanline-color'},\n", - " {'description': u\"Determines if a line corresponding to the sample's mean is shown inside the violins. If `box.visible` is turned on, the mean line is drawn inside the inner box. Otherwise, the mean line is drawn from one side of the violin to other.\",\n", - " 'name': u'violin > meanline > visible',\n", - " 'permalink': u'reference/#violin-meanline-visible'},\n", - " {'description': u'Sets the mean line width.',\n", - " 'name': u'violin > meanline > width',\n", - " 'permalink': u'reference/#violin-meanline-width'},\n", - " {'description': u'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.',\n", - " 'name': u'violin > yaxis',\n", - " 'permalink': u'reference/#violin-yaxis'},\n", - " {'description': u'Assigns id labels to each datum. These ids for object constancy of data points during animation.',\n", - " 'name': u'violin > ids',\n", - " 'permalink': u'reference/#violin-ids'},\n", - " {'description': u'Determines on which side of the position value the density function making up one half of a violin is plotted. Useful when comparing two violin traces under \"overlay\" mode, where one trace has `side` set to \"positive\" and the other to \"negative\".',\n", - " 'name': u'violin > side',\n", - " 'permalink': u'reference/#violin-side'},\n", - " {'description': u'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 violins are shown with no sample points',\n", - " 'name': u'violin > points',\n", - " 'permalink': u'reference/#violin-points'},\n", - " {'description': u'Sets the y sample data or coordinates. See overview for more info.',\n", - " 'name': u'violin > y',\n", - " 'permalink': u'reference/#violin-y'},\n", - " {'description': u'Sets the x sample data or coordinates. See overview for more info.',\n", - " 'name': u'violin > x',\n", - " 'permalink': u'reference/#violin-x'},\n", - " {'description': u'Sets the metric by which the width of each violin is determined.\"width\" means each violin has the same (max) width\"count\" means the violins are scaled by the number of sample points makingup each violin.',\n", - " 'name': u'violin > scalemode',\n", - " 'permalink': u'reference/#violin-scalemode'},\n", - " {'description': u'Properties for unselected',\n", - " 'name': u'violin > unselected',\n", - " 'permalink': u'reference/#violin-unselected'},\n", - " {'description': u'Properties for marker',\n", - " 'name': u'violin > unselected > marker',\n", - " 'permalink': u'reference/#violin-unselected-marker'},\n", - " {'description': u'Sets the marker opacity of unselected points, applied only when a selection exists.',\n", - " 'name': u'violin > unselected > marker > opacity',\n", - " 'permalink': u'reference/#violin-unselected-marker-opacity'},\n", - " {'description': u'Sets the marker color of unselected points, applied only when a selection exists.',\n", - " 'name': u'violin > unselected > marker > color',\n", - " 'permalink': u'reference/#violin-unselected-marker-color'},\n", - " {'description': u'Sets the marker size of unselected points, applied only when a selection exists.',\n", - " 'name': u'violin > unselected > marker > size',\n", - " 'permalink': u'reference/#violin-unselected-marker-size'},\n", - " {'description': u'If there are multiple violins that should be sized according to to some metric (see `scalemode`), link them by providing a non-empty group id here shared by every trace in the same group.',\n", - " 'name': u'violin > scalegroup',\n", - " 'permalink': u'reference/#violin-scalegroup'},\n", - " {'description': u'Sets the upper bound of color domain.',\n", - " 'name': u'contour > zmax',\n", - " 'permalink': u'reference/#contour-zmax'},\n", - " {'description': u'Properties for stream',\n", - " 'name': u'contour > stream',\n", - " 'permalink': u'reference/#contour-stream'},\n", - " {'description': u'The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.',\n", - " 'name': u'contour > stream > token',\n", - " 'permalink': u'reference/#contour-stream-token'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > stream > maxpoints',\n", - " 'permalink': u'reference/#contour-stream-maxpoints'},\n", - " {'description': u'Sets the text elements associated with each z value.',\n", - " 'name': u'contour > text',\n", - " 'permalink': u'reference/#contour-text'},\n", - " {'description': u'Sets the lower bound of color domain.',\n", - " 'name': u'contour > zmin',\n", - " 'permalink': u'reference/#contour-zmin'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > hoverinfo',\n", - " 'permalink': u'reference/#contour-hoverinfo'},\n", - " {'description': u'Sets the hover text formatting rule using d3 formatting mini-languages which are very similar to those in Python. See: https://github.com/d3/d3-format/blob/master/README.md#locale_format',\n", - " 'name': u'contour > zhoverformat',\n", - " 'permalink': u'reference/#contour-zhoverformat'},\n", - " {'description': u'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).',\n", - " 'name': u'contour > visible',\n", - " 'permalink': u'reference/#contour-visible'},\n", - " {'description': u'Sets the calendar system to use with `x` date data.',\n", - " 'name': u'contour > xcalendar',\n", - " 'permalink': u'reference/#contour-xcalendar'},\n", - " {'description': u'Alternate to `y`. Builds a linear space of y coordinates. Use with `dy` where `y0` is the starting coordinate and `dy` the step.',\n", - " 'name': u'contour > y0',\n", - " 'permalink': u'reference/#contour-y0'},\n", - " {'description': u'Properties for line',\n", - " 'name': u'contour > line',\n", - " 'permalink': u'reference/#contour-line'},\n", - " {'description': u'Sets the color of the contour level. Has no effect if `contours.coloring` is set to \"lines\".',\n", - " 'name': u'contour > line > color',\n", - " 'permalink': u'reference/#contour-line-color'},\n", - " {'description': u'Sets the amount of smoothing for the contour lines, where \"0\" corresponds to no smoothing.',\n", - " 'name': u'contour > line > smoothing',\n", - " 'permalink': u'reference/#contour-line-smoothing'},\n", - " {'description': u'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\").',\n", - " 'name': u'contour > line > dash',\n", - " 'permalink': u'reference/#contour-line-dash'},\n", - " {'description': u'Sets the line width (in px).',\n", - " 'name': u'contour > line > width',\n", - " 'permalink': u'reference/#contour-line-width'},\n", - " {'description': u'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).',\n", - " 'name': u'contour > xtype',\n", - " 'permalink': u'reference/#contour-xtype'},\n", - " {'description': u'Properties for colorbar',\n", - " 'name': u'contour > colorbar',\n", - " 'permalink': u'reference/#contour-colorbar'},\n", - " {'description': u'Sets this color bar\\'s vertical position anchor This anchor binds the `y` position to the \"top\", \"middle\" or \"bottom\" of the color bar.',\n", - " 'name': u'contour > colorbar > yanchor',\n", - " 'permalink': u'reference/#contour-colorbar-yanchor'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > colorbar > showexponent',\n", - " 'permalink': u'reference/#contour-colorbar-showexponent'},\n", - " {'description': u'Determines whether or not the tick labels are drawn.',\n", - " 'name': u'contour > colorbar > showticklabels',\n", - " 'permalink': u'reference/#contour-colorbar-showticklabels'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > colorbar > lenmode',\n", - " 'permalink': u'reference/#contour-colorbar-lenmode'},\n", - " {'description': u'Same as `showtickprefix` but for tick suffixes.',\n", - " 'name': u'contour > colorbar > showticksuffix',\n", - " 'permalink': u'reference/#contour-colorbar-showticksuffix'},\n", - " {'description': u\"Sets this color bar's title font.\",\n", - " 'name': u'contour > colorbar > titlefont',\n", - " 'permalink': u'reference/#contour-colorbar-titlefont'},\n", - " {'description': u'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\".',\n", - " 'name': u'contour > colorbar > titlefont > family',\n", - " 'permalink': u'reference/#contour-colorbar-titlefont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'contour > colorbar > titlefont > color',\n", - " 'permalink': u'reference/#contour-colorbar-titlefont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'contour > colorbar > titlefont > size',\n", - " 'permalink': u'reference/#contour-colorbar-titlefont-size'},\n", - " {'description': u'Sets the width (in px) or the border enclosing this color bar.',\n", - " 'name': u'contour > colorbar > borderwidth',\n", - " 'permalink': u'reference/#contour-colorbar-borderwidth'},\n", - " {'description': u'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\".',\n", - " 'name': u'contour > colorbar > nticks',\n", - " 'permalink': u'reference/#contour-colorbar-nticks'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > colorbar > showtickprefix',\n", - " 'permalink': u'reference/#contour-colorbar-showtickprefix'},\n", - " {'description': u'Determines the location of the colorbar title with respect to the color bar.',\n", - " 'name': u'contour > colorbar > titleside',\n", - " 'permalink': u'reference/#contour-colorbar-titleside'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'contour > colorbar > outlinecolor',\n", - " 'permalink': u'reference/#contour-colorbar-outlinecolor'},\n", - " {'description': u'Sets a tick label prefix.',\n", - " 'name': u'contour > colorbar > tickprefix',\n", - " 'permalink': u'reference/#contour-colorbar-tickprefix'},\n", - " {'description': u'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\"',\n", - " 'name': u'contour > colorbar > tickformat',\n", - " 'permalink': u'reference/#contour-colorbar-tickformat'},\n", - " {'description': u'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).',\n", - " 'name': u'contour > colorbar > tickmode',\n", - " 'permalink': u'reference/#contour-colorbar-tickmode'},\n", - " {'description': u'Sets the title of the color bar.',\n", - " 'name': u'contour > colorbar > title',\n", - " 'permalink': u'reference/#contour-colorbar-title'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > colorbar > ticks',\n", - " 'permalink': u'reference/#contour-colorbar-ticks'},\n", - " {'description': u'Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.',\n", - " 'name': u'contour > colorbar > thickness',\n", - " 'permalink': u'reference/#contour-colorbar-thickness'},\n", - " {'description': u'Sets the color of padded area.',\n", - " 'name': u'contour > colorbar > bgcolor',\n", - " 'permalink': u'reference/#contour-colorbar-bgcolor'},\n", - " {'description': u'Sets the width (in px) of the axis line.',\n", - " 'name': u'contour > colorbar > outlinewidth',\n", - " 'permalink': u'reference/#contour-colorbar-outlinewidth'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'contour > colorbar > bordercolor',\n", - " 'permalink': u'reference/#contour-colorbar-bordercolor'},\n", - " {'description': u'Sets this color bar\\'s horizontal position anchor. This anchor binds the `x` position to the \"left\", \"center\" or \"right\" of the color bar.',\n", - " 'name': u'contour > colorbar > xanchor',\n", - " 'permalink': u'reference/#contour-colorbar-xanchor'},\n", - " {'description': u'If \"true\", even 4-digit integers are separated',\n", - " 'name': u'contour > colorbar > separatethousands',\n", - " 'permalink': u'reference/#contour-colorbar-separatethousands'},\n", - " {'description': u'Sets the tick length (in px).',\n", - " 'name': u'contour > colorbar > ticklen',\n", - " 'permalink': u'reference/#contour-colorbar-ticklen'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > colorbar > len',\n", - " 'permalink': u'reference/#contour-colorbar-len'},\n", - " {'description': u'Properties for tickformatstops',\n", - " 'name': u'contour > colorbar > tickformatstops',\n", - " 'permalink': u'reference/#contour-colorbar-tickformatstops'},\n", - " {'description': u'Properties for items',\n", - " 'name': u'contour > colorbar > tickformatstops > items',\n", - " 'permalink': u'reference/#contour-colorbar-tickformatstops-items'},\n", - " {'description': u'Properties for tickformatstop',\n", - " 'name': u'contour > colorbar > tickformatstops > items > tickformatstop',\n", - " 'permalink': u'reference/#contour-colorbar-tickformatstops-items-tickformatstop'},\n", - " {'description': u'Sets a tick label suffix.',\n", - " 'name': u'contour > colorbar > ticksuffix',\n", - " 'permalink': u'reference/#contour-colorbar-ticksuffix'},\n", - " {'description': u'Sets the tick color.',\n", - " 'name': u'contour > colorbar > tickcolor',\n", - " 'permalink': u'reference/#contour-colorbar-tickcolor'},\n", - " {'description': u'Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to \"array\". Used with `tickvals`.',\n", - " 'name': u'contour > colorbar > ticktext',\n", - " 'permalink': u'reference/#contour-colorbar-ticktext'},\n", - " {'description': u'Sets the amount of padding (in px) along the x direction.',\n", - " 'name': u'contour > colorbar > xpad',\n", - " 'permalink': u'reference/#contour-colorbar-xpad'},\n", - " {'description': u'Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to \"array\". Used with `ticktext`.',\n", - " 'name': u'contour > colorbar > tickvals',\n", - " 'permalink': u'reference/#contour-colorbar-tickvals'},\n", - " {'description': u\"Sets the color bar's tick label font\",\n", - " 'name': u'contour > colorbar > tickfont',\n", - " 'permalink': u'reference/#contour-colorbar-tickfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'contour > colorbar > tickfont > family',\n", - " 'permalink': u'reference/#contour-colorbar-tickfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'contour > colorbar > tickfont > color',\n", - " 'permalink': u'reference/#contour-colorbar-tickfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'contour > colorbar > tickfont > size',\n", - " 'permalink': u'reference/#contour-colorbar-tickfont-size'},\n", - " {'description': u'Sets the tick width (in px).',\n", - " 'name': u'contour > colorbar > tickwidth',\n", - " 'permalink': u'reference/#contour-colorbar-tickwidth'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > colorbar > tick0',\n", - " 'permalink': u'reference/#contour-colorbar-tick0'},\n", - " {'description': u'Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.',\n", - " 'name': u'contour > colorbar > tickangle',\n", - " 'permalink': u'reference/#contour-colorbar-tickangle'},\n", - " {'description': u'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\"',\n", - " 'name': u'contour > colorbar > dtick',\n", - " 'permalink': u'reference/#contour-colorbar-dtick'},\n", - " {'description': u'Sets the amount of padding (in px) along the y direction.',\n", - " 'name': u'contour > colorbar > ypad',\n", - " 'permalink': u'reference/#contour-colorbar-ypad'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > colorbar > exponentformat',\n", - " 'permalink': u'reference/#contour-colorbar-exponentformat'},\n", - " {'description': u'Sets the y position of the color bar (in plot fraction).',\n", - " 'name': u'contour > colorbar > y',\n", - " 'permalink': u'reference/#contour-colorbar-y'},\n", - " {'description': u'Sets the x position of the color bar (in plot fraction).',\n", - " 'name': u'contour > colorbar > x',\n", - " 'permalink': u'reference/#contour-colorbar-x'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > colorbar > thicknessmode',\n", - " 'permalink': u'reference/#contour-colorbar-thicknessmode'},\n", - " {'description': u'Determines whether or not an item corresponding to this trace is shown in the legend.',\n", - " 'name': u'contour > showlegend',\n", - " 'permalink': u'reference/#contour-showlegend'},\n", - " {'description': u'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',\n", - " 'name': u'contour > customdata',\n", - " 'permalink': u'reference/#contour-customdata'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > ncontours',\n", - " 'permalink': u'reference/#contour-ncontours'},\n", - " {'description': u'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)',\n", - " 'name': u'contour > ytype',\n", - " 'permalink': u'reference/#contour-ytype'},\n", - " {'description': u'Properties for contours',\n", - " 'name': u'contour > contours',\n", - " 'permalink': u'reference/#contour-contours'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > contours > coloring',\n", - " 'permalink': u'reference/#contour-contours-coloring'},\n", - " {'description': u'Sets the end contour level value. Must be more than `contours.start`',\n", - " 'name': u'contour > contours > end',\n", - " 'permalink': u'reference/#contour-contours-end'},\n", - " {'description': u'Determines whether to label the contour lines with their values.',\n", - " 'name': u'contour > contours > showlabels',\n", - " 'permalink': u'reference/#contour-contours-showlabels'},\n", - " {'description': u'Determines whether or not the contour lines are drawn. Has an effect only if `contours.coloring` is set to \"fill\".',\n", - " 'name': u'contour > contours > showlines',\n", - " 'permalink': u'reference/#contour-contours-showlines'},\n", - " {'description': u'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`.',\n", - " 'name': u'contour > contours > labelfont',\n", - " 'permalink': u'reference/#contour-contours-labelfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'contour > contours > labelfont > family',\n", - " 'permalink': u'reference/#contour-contours-labelfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'contour > contours > labelfont > color',\n", - " 'permalink': u'reference/#contour-contours-labelfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'contour > contours > labelfont > size',\n", - " 'permalink': u'reference/#contour-contours-labelfont-size'},\n", - " {'description': u'Sets the value or values of the constraint boundary. When `operation` is set to one of the comparison values (=,<,>=,>,<=) \"value\" is expected to be a number. When `operation` is set to one of the interval values ([],(),[),(],][,)(,](,)[) \"value\" is expected to be an array of two numbers where the first is the lower bound and the second is the upper bound.',\n", - " 'name': u'contour > contours > value',\n", - " 'permalink': u'reference/#contour-contours-value'},\n", - " {'description': u'Sets the starting contour level value. Must be less than `contours.end`',\n", - " 'name': u'contour > contours > start',\n", - " 'permalink': u'reference/#contour-contours-start'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > contours > labelformat',\n", - " 'permalink': u'reference/#contour-contours-labelformat'},\n", - " {'description': u'Sets the constraint operation. \"=\" keeps regions equal to `value` \"<\" and \"<=\" keep regions less than `value` \">\" and \">=\" keep regions greater than `value` \"[]\", \"()\", \"[)\", and \"(]\" keep regions inside `value[0]` to `value[1]` \"][\", \")(\", \"](\", \")[\" keep regions outside `value[0]` to value[1]` Open vs. closed intervals make no difference to constraint display, but all versions are allowed for consistency with filter transforms.',\n", - " 'name': u'contour > contours > operation',\n", - " 'permalink': u'reference/#contour-contours-operation'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > contours > type',\n", - " 'permalink': u'reference/#contour-contours-type'},\n", - " {'description': u'Sets the step between each contour level. Must be positive.',\n", - " 'name': u'contour > contours > size',\n", - " 'permalink': u'reference/#contour-contours-size'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > xaxis',\n", - " 'permalink': u'reference/#contour-xaxis'},\n", - " {'description': u'Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect.',\n", - " 'name': u'contour > selectedpoints',\n", - " 'permalink': u'reference/#contour-selectedpoints'},\n", - " {'description': u'Properties for type',\n", - " 'name': u'contour > type',\n", - " 'permalink': u'reference/#contour-type'},\n", - " {'description': u'Sets the calendar system to use with `y` date data.',\n", - " 'name': u'contour > ycalendar',\n", - " 'permalink': u'reference/#contour-ycalendar'},\n", - " {'description': u'Sets the opacity of the trace.',\n", - " 'name': u'contour > opacity',\n", - " 'permalink': u'reference/#contour-opacity'},\n", - " {'description': u'Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.',\n", - " 'name': u'contour > legendgroup',\n", - " 'permalink': u'reference/#contour-legendgroup'},\n", - " {'description': u'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`.',\n", - " 'name': u'contour > autocontour',\n", - " 'permalink': u'reference/#contour-autocontour'},\n", - " {'description': u'Transposes the z data.',\n", - " 'name': u'contour > transpose',\n", - " 'permalink': u'reference/#contour-transpose'},\n", - " {'description': u'Determines whether or not the colorscale is picked using the sign of the input z values.',\n", - " 'name': u'contour > autocolorscale',\n", - " 'permalink': u'reference/#contour-autocolorscale'},\n", - " {'description': u'Properties for hoverlabel',\n", - " 'name': u'contour > hoverlabel',\n", - " 'permalink': u'reference/#contour-hoverlabel'},\n", - " {'description': u'Sets the border color of the hover labels for this trace.',\n", - " 'name': u'contour > hoverlabel > bordercolor',\n", - " 'permalink': u'reference/#contour-hoverlabel-bordercolor'},\n", - " {'description': u'Sets the background color of the hover labels for this trace',\n", - " 'name': u'contour > hoverlabel > bgcolor',\n", - " 'permalink': u'reference/#contour-hoverlabel-bgcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > hoverlabel > namelength',\n", - " 'permalink': u'reference/#contour-hoverlabel-namelength'},\n", - " {'description': u'Sets the font used in hover labels.',\n", - " 'name': u'contour > hoverlabel > font',\n", - " 'permalink': u'reference/#contour-hoverlabel-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'contour > hoverlabel > font > family',\n", - " 'permalink': u'reference/#contour-hoverlabel-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'contour > hoverlabel > font > color',\n", - " 'permalink': u'reference/#contour-hoverlabel-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'contour > hoverlabel > font > size',\n", - " 'permalink': u'reference/#contour-hoverlabel-font-size'},\n", - " {'description': u'Sets the fill color if `contours.type` is \"constraint\". Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.',\n", - " 'name': u'contour > fillcolor',\n", - " 'permalink': u'reference/#contour-fillcolor'},\n", - " {'description': u'Sets the x coordinate step. See `x0` for more info.',\n", - " 'name': u'contour > dx',\n", - " 'permalink': u'reference/#contour-dx'},\n", - " {'description': u'Sets the y coordinate step. See `y0` for more info.',\n", - " 'name': u'contour > dy',\n", - " 'permalink': u'reference/#contour-dy'},\n", - " {'description': u'Determines whether or not a colorbar is displayed for this trace.',\n", - " 'name': u'contour > showscale',\n", - " 'permalink': u'reference/#contour-showscale'},\n", - " {'description': u'Alternate to `x`. Builds a linear space of x coordinates. Use with `dx` where `x0` is the starting coordinate and `dx` the step.',\n", - " 'name': u'contour > x0',\n", - " 'permalink': u'reference/#contour-x0'},\n", - " {'description': u'Determines the whether or not the color domain is computed with respect to the input data.',\n", - " 'name': u'contour > zauto',\n", - " 'permalink': u'reference/#contour-zauto'},\n", - " {'description': u'Sets the trace name. The trace name appear as the legend item and on hover.',\n", - " 'name': u'contour > name',\n", - " 'permalink': u'reference/#contour-name'},\n", - " {'description': u\"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\",\n", - " 'name': u'contour > colorscale',\n", - " 'permalink': u'reference/#contour-colorscale'},\n", - " {'description': u'Determines whether or not gaps (i.e. {nan} or missing values) in the `z` data are filled in.',\n", - " 'name': u'contour > connectgaps',\n", - " 'permalink': u'reference/#contour-connectgaps'},\n", - " {'description': u'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.',\n", - " 'name': u'contour > yaxis',\n", - " 'permalink': u'reference/#contour-yaxis'},\n", - " {'description': u'Assigns id labels to each datum. These ids for object constancy of data points during animation.',\n", - " 'name': u'contour > ids',\n", - " 'permalink': u'reference/#contour-ids'},\n", - " {'description': u'Reverses the colorscale.',\n", - " 'name': u'contour > reversescale',\n", - " 'permalink': u'reference/#contour-reversescale'},\n", - " {'description': u'Sets the y coordinates.',\n", - " 'name': u'contour > y',\n", - " 'permalink': u'reference/#contour-y'},\n", - " {'description': u'Sets the x coordinates.',\n", - " 'name': u'contour > x',\n", - " 'permalink': u'reference/#contour-x'},\n", - " {'description': u'Sets the z data.',\n", - " 'name': u'contour > z',\n", - " 'permalink': u'reference/#contour-z'},\n", - " {'description': u'Properties for stream',\n", - " 'name': u'carpet > stream',\n", - " 'permalink': u'reference/#carpet-stream'},\n", - " {'description': u'The stream id number links a data trace on a plot with a stream. See https://plot.ly/settings for more details.',\n", - " 'name': u'carpet > stream > token',\n", - " 'permalink': u'reference/#carpet-stream-token'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > stream > maxpoints',\n", - " 'permalink': u'reference/#carpet-stream-maxpoints'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > color',\n", - " 'permalink': u'reference/#carpet-color'},\n", - " {'description': u'Properties for aaxis',\n", - " 'name': u'carpet > aaxis',\n", - " 'permalink': u'reference/#carpet-aaxis'},\n", - " {'description': u'Sets the width (in px) of the start line.',\n", - " 'name': u'carpet > aaxis > startlinewidth',\n", - " 'permalink': u'reference/#carpet-aaxis-startlinewidth'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > aaxis > showexponent',\n", - " 'permalink': u'reference/#carpet-aaxis-showexponent'},\n", - " {'description': u'Determines whether axis labels are drawn on the low side, the high side, both, or neither side of the axis.',\n", - " 'name': u'carpet > aaxis > showticklabels',\n", - " 'permalink': u'reference/#carpet-aaxis-showticklabels'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > aaxis > color',\n", - " 'permalink': u'reference/#carpet-aaxis-color'},\n", - " {'description': u'Sets the order in which categories on this axis appear. Only has an effect if `categoryorder` is set to \"array\". Used with `categoryorder`.',\n", - " 'name': u'carpet > aaxis > categoryarray',\n", - " 'permalink': u'reference/#carpet-aaxis-categoryarray'},\n", - " {'description': u'Same as `showtickprefix` but for tick suffixes.',\n", - " 'name': u'carpet > aaxis > showticksuffix',\n", - " 'permalink': u'reference/#carpet-aaxis-showticksuffix'},\n", - " {'description': u'Sets the width (in px) of the axis line.',\n", - " 'name': u'carpet > aaxis > gridwidth',\n", - " 'permalink': u'reference/#carpet-aaxis-gridwidth'},\n", - " {'description': u'An additional amount by which to offset the title from the tick labels, given in pixels',\n", - " 'name': u'carpet > aaxis > titleoffset',\n", - " 'permalink': u'reference/#carpet-aaxis-titleoffset'},\n", - " {'description': u\"Sets this axis' title font.\",\n", - " 'name': u'carpet > aaxis > titlefont',\n", - " 'permalink': u'reference/#carpet-aaxis-titlefont'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > aaxis > titlefont > family',\n", - " 'permalink': u'reference/#carpet-aaxis-titlefont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'carpet > aaxis > titlefont > color',\n", - " 'permalink': u'reference/#carpet-aaxis-titlefont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'carpet > aaxis > titlefont > size',\n", - " 'permalink': u'reference/#carpet-aaxis-titlefont-size'},\n", - " {'description': u'Sets the line color of the start line.',\n", - " 'name': u'carpet > aaxis > startlinecolor',\n", - " 'permalink': u'reference/#carpet-aaxis-startlinecolor'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'carpet > aaxis > linecolor',\n", - " 'permalink': u'reference/#carpet-aaxis-linecolor'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > aaxis > showtickprefix',\n", - " 'permalink': u'reference/#carpet-aaxis-showtickprefix'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > aaxis > rangemode',\n", - " 'permalink': u'reference/#carpet-aaxis-rangemode'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > aaxis > nticks',\n", - " 'permalink': u'reference/#carpet-aaxis-nticks'},\n", - " {'description': u'Sets a tick label prefix.',\n", - " 'name': u'carpet > aaxis > tickprefix',\n", - " 'permalink': u'reference/#carpet-aaxis-tickprefix'},\n", - " {'description': u'Sets the width (in px) of the axis line.',\n", - " 'name': u'carpet > aaxis > linewidth',\n", - " 'permalink': u'reference/#carpet-aaxis-linewidth'},\n", - " {'description': u'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\"',\n", - " 'name': u'carpet > aaxis > tickformat',\n", - " 'permalink': u'reference/#carpet-aaxis-tickformat'},\n", - " {'description': u'Properties for tickmode',\n", - " 'name': u'carpet > aaxis > tickmode',\n", - " 'permalink': u'reference/#carpet-aaxis-tickmode'},\n", - " {'description': u'Sets the title of this axis.',\n", - " 'name': u'carpet > aaxis > title',\n", - " 'permalink': u'reference/#carpet-aaxis-title'},\n", - " {'description': u'Sets the color of the grid lines.',\n", - " 'name': u'carpet > aaxis > minorgridcolor',\n", - " 'permalink': u'reference/#carpet-aaxis-minorgridcolor'},\n", - " {'description': u'Properties for smoothing',\n", - " 'name': u'carpet > aaxis > smoothing',\n", - " 'permalink': u'reference/#carpet-aaxis-smoothing'},\n", - " {'description': u'Sets a axis label suffix.',\n", - " 'name': u'carpet > aaxis > labelsuffix',\n", - " 'permalink': u'reference/#carpet-aaxis-labelsuffix'},\n", - " {'description': u'Sets the width (in px) of the grid lines.',\n", - " 'name': u'carpet > aaxis > minorgridwidth',\n", - " 'permalink': u'reference/#carpet-aaxis-minorgridwidth'},\n", - " {'description': u'Properties for cheatertype',\n", - " 'name': u'carpet > aaxis > cheatertype',\n", - " 'permalink': u'reference/#carpet-aaxis-cheatertype'},\n", - " {'description': u'Sets the number of minor grid ticks per major grid tick',\n", - " 'name': u'carpet > aaxis > minorgridcount',\n", - " 'permalink': u'reference/#carpet-aaxis-minorgridcount'},\n", - " {'description': u'Sets the width (in px) of the end line.',\n", - " 'name': u'carpet > aaxis > endlinewidth',\n", - " 'permalink': u'reference/#carpet-aaxis-endlinewidth'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > aaxis > type',\n", - " 'permalink': u'reference/#carpet-aaxis-type'},\n", - " {'description': u'The starting index of grid lines along the axis',\n", - " 'name': u'carpet > aaxis > arraytick0',\n", - " 'permalink': u'reference/#carpet-aaxis-arraytick0'},\n", - " {'description': u'If \"true\", even 4-digit integers are separated',\n", - " 'name': u'carpet > aaxis > separatethousands',\n", - " 'permalink': u'reference/#carpet-aaxis-separatethousands'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > aaxis > autorange',\n", - " 'permalink': u'reference/#carpet-aaxis-autorange'},\n", - " {'description': u'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`.',\n", - " 'name': u'carpet > aaxis > categoryorder',\n", - " 'permalink': u'reference/#carpet-aaxis-categoryorder'},\n", - " {'description': u'Properties for tickformatstops',\n", - " 'name': u'carpet > aaxis > tickformatstops',\n", - " 'permalink': u'reference/#carpet-aaxis-tickformatstops'},\n", - " {'description': u'Properties for items',\n", - " 'name': u'carpet > aaxis > tickformatstops > items',\n", - " 'permalink': u'reference/#carpet-aaxis-tickformatstops-items'},\n", - " {'description': u'Properties for tickformatstop',\n", - " 'name': u'carpet > aaxis > tickformatstops > items > tickformatstop',\n", - " 'permalink': u'reference/#carpet-aaxis-tickformatstops-items-tickformatstop'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > aaxis > startline',\n", - " 'permalink': u'reference/#carpet-aaxis-startline'},\n", - " {'description': u'Sets the line color of the end line.',\n", - " 'name': u'carpet > aaxis > endlinecolor',\n", - " 'permalink': u'reference/#carpet-aaxis-endlinecolor'},\n", - " {'description': u'Sets a tick label suffix.',\n", - " 'name': u'carpet > aaxis > ticksuffix',\n", - " 'permalink': u'reference/#carpet-aaxis-ticksuffix'},\n", - " {'description': u'Determines whether or not this axis is zoom-able. If true, then zoom is disabled.',\n", - " 'name': u'carpet > aaxis > fixedrange',\n", - " 'permalink': u'reference/#carpet-aaxis-fixedrange'},\n", - " {'description': u'Determines whether or not a line bounding this axis is drawn.',\n", - " 'name': u'carpet > aaxis > showline',\n", - " 'permalink': u'reference/#carpet-aaxis-showline'},\n", - " {'description': u'Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to \"array\". Used with `tickvals`.',\n", - " 'name': u'carpet > aaxis > ticktext',\n", - " 'permalink': u'reference/#carpet-aaxis-ticktext'},\n", - " {'description': u'The stride between grid lines along the axis',\n", - " 'name': u'carpet > aaxis > arraydtick',\n", - " 'permalink': u'reference/#carpet-aaxis-arraydtick'},\n", - " {'description': u'Determines whether or not grid lines are drawn. If \"true\", the grid lines are drawn at every tick mark.',\n", - " 'name': u'carpet > aaxis > showgrid',\n", - " 'permalink': u'reference/#carpet-aaxis-showgrid'},\n", - " {'description': u'Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to \"array\". Used with `ticktext`.',\n", - " 'name': u'carpet > aaxis > tickvals',\n", - " 'permalink': u'reference/#carpet-aaxis-tickvals'},\n", - " {'description': u'Sets the tick font.',\n", - " 'name': u'carpet > aaxis > tickfont',\n", - " 'permalink': u'reference/#carpet-aaxis-tickfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > aaxis > tickfont > family',\n", - " 'permalink': u'reference/#carpet-aaxis-tickfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'carpet > aaxis > tickfont > color',\n", - " 'permalink': u'reference/#carpet-aaxis-tickfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'carpet > aaxis > tickfont > size',\n", - " 'permalink': u'reference/#carpet-aaxis-tickfont-size'},\n", - " {'description': u'The starting index of grid lines along the axis',\n", - " 'name': u'carpet > aaxis > tick0',\n", - " 'permalink': u'reference/#carpet-aaxis-tick0'},\n", - " {'description': u'Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.',\n", - " 'name': u'carpet > aaxis > tickangle',\n", - " 'permalink': u'reference/#carpet-aaxis-tickangle'},\n", - " {'description': u'Sets a axis label prefix.',\n", - " 'name': u'carpet > aaxis > labelprefix',\n", - " 'permalink': u'reference/#carpet-aaxis-labelprefix'},\n", - " {'description': u'The stride between grid lines along the axis',\n", - " 'name': u'carpet > aaxis > dtick',\n", - " 'permalink': u'reference/#carpet-aaxis-dtick'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > aaxis > range',\n", - " 'permalink': u'reference/#carpet-aaxis-range'},\n", - " {'description': u'Extra padding between label and the axis',\n", - " 'name': u'carpet > aaxis > labelpadding',\n", - " 'permalink': u'reference/#carpet-aaxis-labelpadding'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'carpet > aaxis > gridcolor',\n", - " 'permalink': u'reference/#carpet-aaxis-gridcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > aaxis > endline',\n", - " 'permalink': u'reference/#carpet-aaxis-endline'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > aaxis > exponentformat',\n", - " 'permalink': u'reference/#carpet-aaxis-exponentformat'},\n", - " {'description': u'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).',\n", - " 'name': u'carpet > visible',\n", - " 'permalink': u'reference/#carpet-visible'},\n", - " {'description': u'Alternate to `b`. Builds a linear space of a coordinates. Use with `db` where `b0` is the starting coordinate and `db` the step.',\n", - " 'name': u'carpet > b0',\n", - " 'permalink': u'reference/#carpet-b0'},\n", - " {'description': u'The default font used for axis & tick labels on this carpet',\n", - " 'name': u'carpet > font',\n", - " 'permalink': u'reference/#carpet-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > font > family',\n", - " 'permalink': u'reference/#carpet-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'carpet > font > color',\n", - " 'permalink': u'reference/#carpet-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'carpet > font > size',\n", - " 'permalink': u'reference/#carpet-font-size'},\n", - " {'description': u'An identifier for this carpet, so that `scattercarpet` and `scattercontour` traces can specify a carpet plot on which they lie',\n", - " 'name': u'carpet > carpet',\n", - " 'permalink': u'reference/#carpet-carpet'},\n", - " {'description': u'Determines whether or not an item corresponding to this trace is shown in the legend.',\n", - " 'name': u'carpet > showlegend',\n", - " 'permalink': u'reference/#carpet-showlegend'},\n", - " {'description': u'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',\n", - " 'name': u'carpet > customdata',\n", - " 'permalink': u'reference/#carpet-customdata'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > xaxis',\n", - " 'permalink': u'reference/#carpet-xaxis'},\n", - " {'description': u'Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect.',\n", - " 'name': u'carpet > selectedpoints',\n", - " 'permalink': u'reference/#carpet-selectedpoints'},\n", - " {'description': u'Properties for type',\n", - " 'name': u'carpet > type',\n", - " 'permalink': u'reference/#carpet-type'},\n", - " {'description': u'Sets the opacity of the trace.',\n", - " 'name': u'carpet > opacity',\n", - " 'permalink': u'reference/#carpet-opacity'},\n", - " {'description': u'Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.',\n", - " 'name': u'carpet > legendgroup',\n", - " 'permalink': u'reference/#carpet-legendgroup'},\n", - " {'description': u'Sets the b coordinate step. See `b0` for more info.',\n", - " 'name': u'carpet > db',\n", - " 'permalink': u'reference/#carpet-db'},\n", - " {'description': u'Sets the a coordinate step. See `a0` for more info.',\n", - " 'name': u'carpet > da',\n", - " 'permalink': u'reference/#carpet-da'},\n", - " {'description': u'Alternate to `a`. Builds a linear space of a coordinates. Use with `da` where `a0` is the starting coordinate and `da` the step.',\n", - " 'name': u'carpet > a0',\n", - " 'permalink': u'reference/#carpet-a0'},\n", - " {'description': u'Properties for hoverlabel',\n", - " 'name': u'carpet > hoverlabel',\n", - " 'permalink': u'reference/#carpet-hoverlabel'},\n", - " {'description': u'Sets the border color of the hover labels for this trace.',\n", - " 'name': u'carpet > hoverlabel > bordercolor',\n", - " 'permalink': u'reference/#carpet-hoverlabel-bordercolor'},\n", - " {'description': u'Sets the background color of the hover labels for this trace',\n", - " 'name': u'carpet > hoverlabel > bgcolor',\n", - " 'permalink': u'reference/#carpet-hoverlabel-bgcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > hoverlabel > namelength',\n", - " 'permalink': u'reference/#carpet-hoverlabel-namelength'},\n", - " {'description': u'Sets the font used in hover labels.',\n", - " 'name': u'carpet > hoverlabel > font',\n", - " 'permalink': u'reference/#carpet-hoverlabel-font'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > hoverlabel > font > family',\n", - " 'permalink': u'reference/#carpet-hoverlabel-font-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'carpet > hoverlabel > font > color',\n", - " 'permalink': u'reference/#carpet-hoverlabel-font-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'carpet > hoverlabel > font > size',\n", - " 'permalink': u'reference/#carpet-hoverlabel-font-size'},\n", - " {'description': u'The shift applied to each successive row of data in creating a cheater plot. Only used if `x` is been ommitted.',\n", - " 'name': u'carpet > cheaterslope',\n", - " 'permalink': u'reference/#carpet-cheaterslope'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > hoverinfo',\n", - " 'permalink': u'reference/#carpet-hoverinfo'},\n", - " {'description': u'An array containing values of the first parameter value',\n", - " 'name': u'carpet > a',\n", - " 'permalink': u'reference/#carpet-a'},\n", - " {'description': u'A two dimensional array of y coordinates at each carpet point.',\n", - " 'name': u'carpet > b',\n", - " 'permalink': u'reference/#carpet-b'},\n", - " {'description': u'Sets the trace name. The trace name appear as the legend item and on hover.',\n", - " 'name': u'carpet > name',\n", - " 'permalink': u'reference/#carpet-name'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > yaxis',\n", - " 'permalink': u'reference/#carpet-yaxis'},\n", - " {'description': u'Properties for baxis',\n", - " 'name': u'carpet > baxis',\n", - " 'permalink': u'reference/#carpet-baxis'},\n", - " {'description': u'Sets the width (in px) of the start line.',\n", - " 'name': u'carpet > baxis > startlinewidth',\n", - " 'permalink': u'reference/#carpet-baxis-startlinewidth'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > baxis > showexponent',\n", - " 'permalink': u'reference/#carpet-baxis-showexponent'},\n", - " {'description': u'Determines whether axis labels are drawn on the low side, the high side, both, or neither side of the axis.',\n", - " 'name': u'carpet > baxis > showticklabels',\n", - " 'permalink': u'reference/#carpet-baxis-showticklabels'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > baxis > color',\n", - " 'permalink': u'reference/#carpet-baxis-color'},\n", - " {'description': u'Sets the order in which categories on this axis appear. Only has an effect if `categoryorder` is set to \"array\". Used with `categoryorder`.',\n", - " 'name': u'carpet > baxis > categoryarray',\n", - " 'permalink': u'reference/#carpet-baxis-categoryarray'},\n", - " {'description': u'Same as `showtickprefix` but for tick suffixes.',\n", - " 'name': u'carpet > baxis > showticksuffix',\n", - " 'permalink': u'reference/#carpet-baxis-showticksuffix'},\n", - " {'description': u'Sets the width (in px) of the axis line.',\n", - " 'name': u'carpet > baxis > gridwidth',\n", - " 'permalink': u'reference/#carpet-baxis-gridwidth'},\n", - " {'description': u'An additional amount by which to offset the title from the tick labels, given in pixels',\n", - " 'name': u'carpet > baxis > titleoffset',\n", - " 'permalink': u'reference/#carpet-baxis-titleoffset'},\n", - " {'description': u\"Sets this axis' title font.\",\n", - " 'name': u'carpet > baxis > titlefont',\n", - " 'permalink': u'reference/#carpet-baxis-titlefont'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > baxis > titlefont > family',\n", - " 'permalink': u'reference/#carpet-baxis-titlefont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'carpet > baxis > titlefont > color',\n", - " 'permalink': u'reference/#carpet-baxis-titlefont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'carpet > baxis > titlefont > size',\n", - " 'permalink': u'reference/#carpet-baxis-titlefont-size'},\n", - " {'description': u'Sets the line color of the start line.',\n", - " 'name': u'carpet > baxis > startlinecolor',\n", - " 'permalink': u'reference/#carpet-baxis-startlinecolor'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'carpet > baxis > linecolor',\n", - " 'permalink': u'reference/#carpet-baxis-linecolor'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > baxis > showtickprefix',\n", - " 'permalink': u'reference/#carpet-baxis-showtickprefix'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > baxis > rangemode',\n", - " 'permalink': u'reference/#carpet-baxis-rangemode'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > baxis > nticks',\n", - " 'permalink': u'reference/#carpet-baxis-nticks'},\n", - " {'description': u'Sets a tick label prefix.',\n", - " 'name': u'carpet > baxis > tickprefix',\n", - " 'permalink': u'reference/#carpet-baxis-tickprefix'},\n", - " {'description': u'Sets the width (in px) of the axis line.',\n", - " 'name': u'carpet > baxis > linewidth',\n", - " 'permalink': u'reference/#carpet-baxis-linewidth'},\n", - " {'description': u'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\"',\n", - " 'name': u'carpet > baxis > tickformat',\n", - " 'permalink': u'reference/#carpet-baxis-tickformat'},\n", - " {'description': u'Properties for tickmode',\n", - " 'name': u'carpet > baxis > tickmode',\n", - " 'permalink': u'reference/#carpet-baxis-tickmode'},\n", - " {'description': u'Sets the title of this axis.',\n", - " 'name': u'carpet > baxis > title',\n", - " 'permalink': u'reference/#carpet-baxis-title'},\n", - " {'description': u'Sets the color of the grid lines.',\n", - " 'name': u'carpet > baxis > minorgridcolor',\n", - " 'permalink': u'reference/#carpet-baxis-minorgridcolor'},\n", - " {'description': u'Properties for smoothing',\n", - " 'name': u'carpet > baxis > smoothing',\n", - " 'permalink': u'reference/#carpet-baxis-smoothing'},\n", - " {'description': u'Sets a axis label suffix.',\n", - " 'name': u'carpet > baxis > labelsuffix',\n", - " 'permalink': u'reference/#carpet-baxis-labelsuffix'},\n", - " {'description': u'Sets the width (in px) of the grid lines.',\n", - " 'name': u'carpet > baxis > minorgridwidth',\n", - " 'permalink': u'reference/#carpet-baxis-minorgridwidth'},\n", - " {'description': u'Properties for cheatertype',\n", - " 'name': u'carpet > baxis > cheatertype',\n", - " 'permalink': u'reference/#carpet-baxis-cheatertype'},\n", - " {'description': u'Sets the number of minor grid ticks per major grid tick',\n", - " 'name': u'carpet > baxis > minorgridcount',\n", - " 'permalink': u'reference/#carpet-baxis-minorgridcount'},\n", - " {'description': u'Sets the width (in px) of the end line.',\n", - " 'name': u'carpet > baxis > endlinewidth',\n", - " 'permalink': u'reference/#carpet-baxis-endlinewidth'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > baxis > type',\n", - " 'permalink': u'reference/#carpet-baxis-type'},\n", - " {'description': u'The starting index of grid lines along the axis',\n", - " 'name': u'carpet > baxis > arraytick0',\n", - " 'permalink': u'reference/#carpet-baxis-arraytick0'},\n", - " {'description': u'If \"true\", even 4-digit integers are separated',\n", - " 'name': u'carpet > baxis > separatethousands',\n", - " 'permalink': u'reference/#carpet-baxis-separatethousands'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > baxis > autorange',\n", - " 'permalink': u'reference/#carpet-baxis-autorange'},\n", - " {'description': u'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`.',\n", - " 'name': u'carpet > baxis > categoryorder',\n", - " 'permalink': u'reference/#carpet-baxis-categoryorder'},\n", - " {'description': u'Properties for tickformatstops',\n", - " 'name': u'carpet > baxis > tickformatstops',\n", - " 'permalink': u'reference/#carpet-baxis-tickformatstops'},\n", - " {'description': u'Properties for items',\n", - " 'name': u'carpet > baxis > tickformatstops > items',\n", - " 'permalink': u'reference/#carpet-baxis-tickformatstops-items'},\n", - " {'description': u'Properties for tickformatstop',\n", - " 'name': u'carpet > baxis > tickformatstops > items > tickformatstop',\n", - " 'permalink': u'reference/#carpet-baxis-tickformatstops-items-tickformatstop'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > baxis > startline',\n", - " 'permalink': u'reference/#carpet-baxis-startline'},\n", - " {'description': u'Sets the line color of the end line.',\n", - " 'name': u'carpet > baxis > endlinecolor',\n", - " 'permalink': u'reference/#carpet-baxis-endlinecolor'},\n", - " {'description': u'Sets a tick label suffix.',\n", - " 'name': u'carpet > baxis > ticksuffix',\n", - " 'permalink': u'reference/#carpet-baxis-ticksuffix'},\n", - " {'description': u'Determines whether or not this axis is zoom-able. If true, then zoom is disabled.',\n", - " 'name': u'carpet > baxis > fixedrange',\n", - " 'permalink': u'reference/#carpet-baxis-fixedrange'},\n", - " {'description': u'Determines whether or not a line bounding this axis is drawn.',\n", - " 'name': u'carpet > baxis > showline',\n", - " 'permalink': u'reference/#carpet-baxis-showline'},\n", - " {'description': u'Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to \"array\". Used with `tickvals`.',\n", - " 'name': u'carpet > baxis > ticktext',\n", - " 'permalink': u'reference/#carpet-baxis-ticktext'},\n", - " {'description': u'The stride between grid lines along the axis',\n", - " 'name': u'carpet > baxis > arraydtick',\n", - " 'permalink': u'reference/#carpet-baxis-arraydtick'},\n", - " {'description': u'Determines whether or not grid lines are drawn. If \"true\", the grid lines are drawn at every tick mark.',\n", - " 'name': u'carpet > baxis > showgrid',\n", - " 'permalink': u'reference/#carpet-baxis-showgrid'},\n", - " {'description': u'Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to \"array\". Used with `ticktext`.',\n", - " 'name': u'carpet > baxis > tickvals',\n", - " 'permalink': u'reference/#carpet-baxis-tickvals'},\n", - " {'description': u'Sets the tick font.',\n", - " 'name': u'carpet > baxis > tickfont',\n", - " 'permalink': u'reference/#carpet-baxis-tickfont'},\n", - " {'description': u'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\".',\n", - " 'name': u'carpet > baxis > tickfont > family',\n", - " 'permalink': u'reference/#carpet-baxis-tickfont-family'},\n", - " {'description': u'Properties for color',\n", - " 'name': u'carpet > baxis > tickfont > color',\n", - " 'permalink': u'reference/#carpet-baxis-tickfont-color'},\n", - " {'description': u'Properties for size',\n", - " 'name': u'carpet > baxis > tickfont > size',\n", - " 'permalink': u'reference/#carpet-baxis-tickfont-size'},\n", - " {'description': u'The starting index of grid lines along the axis',\n", - " 'name': u'carpet > baxis > tick0',\n", - " 'permalink': u'reference/#carpet-baxis-tick0'},\n", - " {'description': u'Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.',\n", - " 'name': u'carpet > baxis > tickangle',\n", - " 'permalink': u'reference/#carpet-baxis-tickangle'},\n", - " {'description': u'Sets a axis label prefix.',\n", - " 'name': u'carpet > baxis > labelprefix',\n", - " 'permalink': u'reference/#carpet-baxis-labelprefix'},\n", - " {'description': u'The stride between grid lines along the axis',\n", - " 'name': u'carpet > baxis > dtick',\n", - " 'permalink': u'reference/#carpet-baxis-dtick'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > baxis > range',\n", - " 'permalink': u'reference/#carpet-baxis-range'},\n", - " {'description': u'Extra padding between label and the axis',\n", - " 'name': u'carpet > baxis > labelpadding',\n", - " 'permalink': u'reference/#carpet-baxis-labelpadding'},\n", - " {'description': u'Sets the axis line color.',\n", - " 'name': u'carpet > baxis > gridcolor',\n", - " 'permalink': u'reference/#carpet-baxis-gridcolor'},\n", - " {'description': u'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.',\n", - " 'name': u'carpet > baxis > endline',\n", - " 'permalink': u'reference/#carpet-baxis-endline'},\n", - " ...]" + "3875" ] }, - "execution_count": 12, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "schema" + "len(schema)" ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "{u'objectIDs': [u'103874280',\n", - " u'103874290',\n", - " u'103874300',\n", - " u'103874310',\n", - " u'103874320',\n", - " u'103874330',\n", - " u'103874340',\n", - " u'103874350',\n", - " u'103874360',\n", - " u'103874370',\n", - " u'103874380',\n", - " u'103874390',\n", - " u'103874400',\n", - " u'103874410',\n", - " u'103874420',\n", - " u'103874430',\n", - " u'103874440',\n", - " u'103874450',\n", - " u'103874460',\n", - " u'103874470',\n", - " u'103874480',\n", - " u'103874490',\n", - " u'103874500',\n", - " u'103874510',\n", - " u'103874520',\n", - " u'103874530',\n", - " u'103874540',\n", - " u'103874550',\n", - " u'103874560',\n", - " u'103874570',\n", - " u'103874580',\n", - " u'103874590',\n", - " u'103874600',\n", - " u'103874610',\n", - " u'103874620',\n", - " u'103874630',\n", - " u'103874640',\n", - " u'103874650',\n", - " u'103874660',\n", - " u'103874670',\n", - " u'103874680',\n", - " u'103874690',\n", - " u'103874700',\n", - " u'103874710',\n", - " u'103874720',\n", - " u'103874730',\n", - " u'103874740',\n", - " u'103874750',\n", - " u'103874760',\n", - " u'103874770',\n", - " u'103874780',\n", - " u'103874790',\n", - " u'103874800',\n", - " u'103874810',\n", - " u'103874820',\n", - " u'103874830',\n", - " u'103874840',\n", - " u'103874850',\n", - " u'103874860',\n", - " u'103874870',\n", - " u'103874880',\n", - " u'103874890',\n", - " u'103874900',\n", - " u'103874910',\n", - " u'103874920',\n", - " u'103874930',\n", - " u'103874940',\n", - " u'103874950',\n", - " u'103874960',\n", - " u'103874970',\n", - " u'103874980',\n", - " u'103874990',\n", - " u'103875000',\n", - " u'103875010',\n", - " u'103875020',\n", - " u'103875030',\n", - " u'103875040',\n", - " u'103875050',\n", - " u'103875060',\n", - " u'103875070',\n", - " u'103875080',\n", - " u'103875090',\n", - " u'103875100',\n", - " u'103875110',\n", - " u'103875120',\n", - " u'103875130',\n", - " u'103875140',\n", - " u'103875150',\n", - " u'103875160',\n", - " u'103875170',\n", - " u'103875180',\n", - " u'103875190',\n", - " u'103875200',\n", - " u'103875210',\n", - " u'103875220',\n", - " u'103875230',\n", - " u'103875240',\n", - " u'103875250',\n", - " u'103875260',\n", - " u'103875270',\n", - " u'103875280',\n", - " u'103875290',\n", - " u'103875300',\n", - " u'103875310',\n", - " u'103875320',\n", - " u'103875330',\n", - " u'103875340',\n", - " u'103875350',\n", - " u'103875360',\n", - " u'103875370',\n", - " u'103875380',\n", - " u'103875390',\n", - " u'103875400',\n", - " u'103875410',\n", - " u'103875420',\n", - " u'103875430',\n", - " u'103875440',\n", - " u'103875450',\n", - " u'103875460',\n", - " u'103875470',\n", - " u'103875480',\n", - " u'103875490',\n", - " u'103875500',\n", - " u'103875510',\n", - " u'103875520',\n", - " u'103875530',\n", - " u'103875540',\n", - " u'103875550',\n", - " u'103875560',\n", - " u'103875570',\n", - " u'103875580',\n", - " u'103875590',\n", - " u'103875600',\n", - " u'103875610',\n", - " u'103875620',\n", - " u'103875630',\n", - " u'103875640',\n", - " u'103875650',\n", - " u'103875660',\n", - " u'103875670',\n", - " u'103875680',\n", - " u'103875690',\n", - " u'103875700',\n", - " u'103875710',\n", - " u'103875720',\n", - " u'103875730',\n", - " u'103875740',\n", - " u'103875750',\n", - " u'103875760',\n", - " u'103875770',\n", - " u'103875780',\n", - " u'103875790',\n", - " u'103875800',\n", - " u'103875810',\n", - " u'103875820',\n", - " u'103875830',\n", - " u'103875840',\n", - " u'103875850',\n", - " u'103875860',\n", - " u'103875870',\n", - " u'103875880',\n", - " u'103875890',\n", - " u'103875900',\n", - " u'103875910',\n", - " u'103875920',\n", - " u'103875930',\n", - " u'103875940',\n", - " u'103875950',\n", - " u'103875960',\n", - " u'103875970',\n", - " u'103875980',\n", - " u'103875990',\n", - " u'103876000',\n", - " u'103876010',\n", - " u'103876020',\n", - " u'103876030',\n", - " u'103876040',\n", - " u'103876050',\n", - " u'103876060',\n", - " u'103876070',\n", - " u'103876080',\n", - " u'103876090',\n", - " u'103876100',\n", - " u'103876110',\n", - " u'103876120',\n", - " u'103876130',\n", - " u'103876140',\n", - " u'103876150',\n", - " u'103876160',\n", - " u'103876170',\n", - " u'103876180',\n", - " u'103876190',\n", - " u'103876200',\n", - " u'103876210',\n", - " u'103876220',\n", - " u'103876230',\n", - " u'103876240',\n", - " u'103876250',\n", - " u'103876260',\n", - " u'103876270',\n", - " u'103876280',\n", - " u'103876290',\n", - " u'103876300',\n", - " u'103876310',\n", - " u'103876320',\n", - " u'103876330',\n", - " u'103876340',\n", - " u'103876350',\n", - " u'103876360',\n", - " u'103876370',\n", - " u'103876380',\n", - " u'103876390',\n", - " u'103876400',\n", - " u'103876410',\n", - " u'103876420',\n", - " u'103876430',\n", - " u'103876440',\n", - " u'103876450',\n", - " u'103876460',\n", - " u'103876470',\n", - " u'103876480',\n", - " u'103876490',\n", - " u'103876500',\n", - " u'103876510',\n", - " u'103876520',\n", - " u'103876530',\n", - " u'103876540',\n", - " u'103876550',\n", - " u'103876560',\n", - " u'103876570',\n", - " u'103876580',\n", - " u'103876590',\n", - " u'103876600',\n", - " u'103876610',\n", - " u'103876620',\n", - " u'103876630',\n", - " u'103876640',\n", - " u'103876650',\n", - " u'103876660',\n", - " u'103876670',\n", - " u'103876680',\n", - " u'103876690',\n", - " u'103876700',\n", - " u'103876710',\n", - " u'103876720',\n", - " u'103876730',\n", - " u'103876740',\n", - " u'103876750',\n", - " u'103876760',\n", - " u'103876770',\n", - " u'103876780',\n", - " u'103876790',\n", - " u'103876800',\n", - " u'103876810',\n", - " u'103876820',\n", - " u'103876830',\n", - " u'103876840',\n", - " u'103876850',\n", - " u'103876860',\n", - " u'103876870',\n", - " u'103876880',\n", - " u'103876890',\n", - " u'103876900',\n", - " u'103876910',\n", - " u'103876920',\n", - " u'103876930',\n", - " u'103876940',\n", - " u'103876950',\n", - " u'103876960',\n", - " u'103876970',\n", - " u'103876980',\n", - " u'103876990',\n", - " u'103877000',\n", - " u'103877010',\n", - " u'103877020',\n", - " u'103877030',\n", - " u'103877040',\n", - " u'103877050',\n", - " u'103877060',\n", - " u'103877070',\n", - " u'103877080',\n", - " u'103877090',\n", - " u'103877100',\n", - " u'103877110',\n", - " u'103877120',\n", - " u'103877130',\n", - " u'103877140',\n", - " u'103877150',\n", - " u'103877160',\n", - " u'103877170',\n", - " u'103877180',\n", - " u'103877190',\n", - " u'103877200',\n", - " u'103877210',\n", - " u'103877220',\n", - " u'103877230',\n", - " u'103877240',\n", - " u'103877250',\n", - " u'103877260',\n", - " u'103877270',\n", - " u'103877280',\n", - " u'103877290',\n", - " u'103877300',\n", - " u'103877310',\n", - " u'103877320',\n", - " u'103877330',\n", - " u'103877340',\n", - " u'103877350',\n", - " u'103877360',\n", - " u'103877370',\n", - " u'103877380',\n", - " u'103877390',\n", - " u'103877400',\n", - " u'103877410',\n", - " u'103877420',\n", - " u'103877430',\n", - " u'103877440',\n", - " u'103877450',\n", - " u'103877460',\n", - " u'103877470',\n", - " u'103877480',\n", - " u'103877490',\n", - " u'103877500',\n", - " u'103877510',\n", - " u'103877520',\n", - " u'103877530',\n", - " u'103877540',\n", - " u'103877550',\n", - " u'103877560',\n", - " u'103877570',\n", - " u'103877580',\n", - " u'103877590',\n", - " u'103877600',\n", - " u'103877610',\n", - " u'103877620',\n", - " u'103877630',\n", - " u'103877640',\n", - " u'103877650',\n", - " u'103877660',\n", - " u'103877670',\n", - " u'103877680',\n", - " u'103877690',\n", - " u'103877700',\n", - " u'103877710',\n", - " u'103877720',\n", - " u'103877730',\n", - " u'103877740',\n", - " u'103877750',\n", - " u'103877760',\n", - " u'103877770',\n", - " u'103877780',\n", - " u'103877790',\n", - " u'103877800',\n", - " u'103877810',\n", - " u'103877820',\n", - " u'103877830',\n", - " u'103877840',\n", - " u'103877850',\n", - " u'103877860',\n", - " u'103877870',\n", - " u'103877880',\n", - " u'103877890',\n", - " u'103877900',\n", - " u'103877910',\n", - " u'103877920',\n", - " u'103877930',\n", - " u'103877940',\n", - " u'103877950',\n", - " u'103877960',\n", - " u'103877970',\n", - " u'103877980',\n", - " u'103877990',\n", - " u'103878000',\n", - " u'103878010',\n", - " u'103878020',\n", - " u'103878030',\n", - " u'103878040',\n", - " u'103878050',\n", - " u'103878060',\n", - " u'103878070',\n", - " u'103878080',\n", - " u'103878090',\n", - " u'103878100',\n", - " u'103878110',\n", - " u'103878120',\n", - " u'103878130',\n", - " u'103878140',\n", - " u'103878150',\n", - " u'103878160',\n", - " u'103878170',\n", - " u'103878180',\n", - " u'103878190',\n", - " u'103878200',\n", - " u'103878210',\n", - " u'103878220',\n", - " u'103878230',\n", - " u'103878240',\n", - " u'103878250',\n", - " u'103878260',\n", - " u'103878270',\n", - " u'103878280',\n", - " u'103878290',\n", - " u'103878300',\n", - " u'103878310',\n", - " u'103878320',\n", - " u'103878330',\n", - " u'103878340',\n", - " u'103878350',\n", - " u'103878360',\n", - " u'103878370',\n", - " u'103878380',\n", - " u'103878390',\n", - " u'103878400',\n", - " u'103878410',\n", - " u'103878420',\n", - " u'103878430',\n", - " u'103878440',\n", - " u'103878450',\n", - " u'103878460',\n", - " u'103878470',\n", - " u'103878480',\n", - " u'103878490',\n", - " u'103878500',\n", - " u'103878510',\n", - " u'103878520',\n", - " u'103878530',\n", - " u'103878540',\n", - " u'103878550',\n", - " u'103878560',\n", - " u'103878570',\n", - " u'103878580',\n", - " u'103878590',\n", - " u'103878600',\n", - " u'103878610',\n", - " u'103878620',\n", - " u'103878630',\n", - " u'103878640',\n", - " u'103878650',\n", - " u'103878660',\n", - " u'103878670',\n", - " u'103878680',\n", - " u'103878690',\n", - " u'103878700',\n", - " u'103878710',\n", - " u'103878720',\n", - " u'103878730',\n", - " u'103878740',\n", - " u'103878750',\n", - " u'103878760',\n", - " u'103878770',\n", - " u'103878780',\n", - " u'103878790',\n", - " u'103878800',\n", - " u'103878810',\n", - " u'103878820',\n", - " u'103878830',\n", - " u'103878840',\n", - " u'103878850',\n", - " u'103878860',\n", - " u'103878870',\n", - " u'103878880',\n", - " u'103878890',\n", - " u'103878900',\n", - " u'103878910',\n", - " u'103878920',\n", - " u'103878930',\n", - " u'103878940',\n", - " u'103878950',\n", - " u'103878960',\n", - " u'103878970',\n", - " u'103878980',\n", - " u'103878990',\n", - " u'103879000',\n", - " u'103879010',\n", - " u'103879020',\n", - " u'103879030',\n", - " u'103879040',\n", - " u'103879050',\n", - " u'103879060',\n", - " u'103879070',\n", - " u'103879080',\n", - " u'103879090',\n", - " u'103879100',\n", - " u'103879110',\n", - " u'103879120',\n", - " u'103879130',\n", - " u'103879140',\n", - " u'103879150',\n", - " u'103879160',\n", - " u'103879170',\n", - " u'103879180',\n", - " u'103879190',\n", - " u'103879200',\n", - " u'103879210',\n", - " u'103879220',\n", - " u'103879230',\n", - " u'103879240',\n", - " u'103879250',\n", - " u'103879260',\n", - " u'103879270',\n", - " u'103879280',\n", - " u'103879290',\n", - " u'103879300',\n", - " u'103879310',\n", - " u'103879320',\n", - " u'103879330',\n", - " u'103879340',\n", - " u'103879350',\n", - " u'103879360',\n", - " u'103879370',\n", - " u'103879380',\n", - " u'103879390',\n", - " u'103879400',\n", - " u'103879410',\n", - " u'103879420',\n", - " u'103879430',\n", - " u'103879440',\n", - " u'103879450',\n", - " u'103879460',\n", - " u'103879470',\n", - " u'103879480',\n", - " u'103879490',\n", - " u'103879500',\n", - " u'103879510',\n", - " u'103879520',\n", - " u'103879530',\n", - " u'103879540',\n", - " u'103879550',\n", - " u'103879560',\n", - " u'103879570',\n", - " u'103879580',\n", - " u'103879590',\n", - " u'103879600',\n", - " u'103879610',\n", - " u'103879620',\n", - " u'103879630',\n", - " u'103879640',\n", - " u'103879650',\n", - " u'103879660',\n", - " u'103879670',\n", - " u'103879680',\n", - " u'103879690',\n", - " u'103879700',\n", - " u'103879710',\n", - " u'103879720',\n", - " u'103879730',\n", - " u'103879740',\n", - " u'103879750',\n", - " u'103879760',\n", - " u'103879770',\n", - " u'103879780',\n", - " u'103879790',\n", - " u'103879800',\n", - " u'103879810',\n", - " u'103879820',\n", - " u'103879830',\n", - " u'103879840',\n", - " u'103879850',\n", - " u'103879860',\n", - " u'103879870',\n", - " u'103879880',\n", - " u'103879890',\n", - " u'103879900',\n", - " u'103879910',\n", - " u'103879920',\n", - " u'103879930',\n", - " u'103879940',\n", - " u'103879950',\n", - " u'103879960',\n", - " u'103879970',\n", - " u'103879980',\n", - " u'103879990',\n", - " u'103880000',\n", - " u'103880010',\n", - " u'103880020',\n", - " u'103880030',\n", - " u'103880040',\n", - " u'103880050',\n", - " u'103880060',\n", - " u'103880070',\n", - " u'103880080',\n", - " u'103880090',\n", - " u'103880100',\n", - " u'103880110',\n", - " u'103880120',\n", - " u'103880130',\n", - " u'103880140',\n", - " u'103880150',\n", - " u'103880160',\n", - " u'103880170',\n", - " u'103880180',\n", - " u'103880190',\n", - " u'103880200',\n", - " u'103880210',\n", - " u'103880220',\n", - " u'103880230',\n", - " u'103880240',\n", - " u'103880250',\n", - " u'103880260',\n", - " u'103880270',\n", - " u'103880280',\n", - " u'103880290',\n", - " u'103880300',\n", - " u'103880310',\n", - " u'103880320',\n", - " u'103880330',\n", - " u'103880340',\n", - " u'103880350',\n", - " u'103880360',\n", - " u'103880370',\n", - " u'103880380',\n", - " u'103880390',\n", - " u'103880400',\n", - " u'103880410',\n", - " u'103880420',\n", - " u'103880430',\n", - " u'103880440',\n", - " u'103880450',\n", - " u'103880460',\n", - " u'103880470',\n", - " u'103880480',\n", - " u'103880490',\n", - " u'103880500',\n", - " u'103880510',\n", - " u'103880520',\n", - " u'103880530',\n", - " u'103880540',\n", - " u'103880550',\n", - " u'103880560',\n", - " u'103880570',\n", - " u'103880580',\n", - " u'103880590',\n", - " u'103880600',\n", - " u'103880610',\n", - " u'103880620',\n", - " u'103880630',\n", - " u'103880640',\n", - " u'103880650',\n", - " u'103880660',\n", - " u'103880670',\n", - " u'103880680',\n", - " u'103880690',\n", - " u'103880700',\n", - " u'103880710',\n", - " u'103880720',\n", - " u'103880730',\n", - " u'103880740',\n", - " u'103880750',\n", - " u'103880760',\n", - " u'103880770',\n", - " u'103880780',\n", - " u'103880790',\n", - " u'103880800',\n", - " u'103880810',\n", - " u'103880820',\n", - " u'103880830',\n", - " u'103880840',\n", - " u'103880850',\n", - " u'103880860',\n", - " u'103880870',\n", - " u'103880880',\n", - " u'103880890',\n", - " u'103880900',\n", - " u'103880910',\n", - " u'103880920',\n", - " u'103880930',\n", - " u'103880940',\n", - " u'103880950',\n", - " u'103880960',\n", - " u'103880970',\n", - " u'103880980',\n", - " u'103880990',\n", - " u'103881000',\n", - " u'103881010',\n", - " u'103881020',\n", - " u'103881030',\n", - " u'103881040',\n", - " u'103881050',\n", - " u'103881060',\n", - " u'103881070',\n", - " u'103881080',\n", - " u'103881090',\n", - " u'103881100',\n", - " u'103881110',\n", - " u'103881120',\n", - " u'103881130',\n", - " u'103881140',\n", - " u'103881150',\n", - " u'103881160',\n", - " u'103881170',\n", - " u'103881180',\n", - " u'103881190',\n", - " u'103881200',\n", - " u'103881210',\n", - " u'103881220',\n", - " u'103881230',\n", - " u'103881240',\n", - " u'103881250',\n", - " u'103881260',\n", - " u'103881270',\n", - " u'103881280',\n", - " u'103881290',\n", - " u'103881300',\n", - " u'103881310',\n", - " u'103881320',\n", - " u'103881330',\n", - " u'103881340',\n", - " u'103881350',\n", - " u'103881360',\n", - " u'103881370',\n", - " u'103881380',\n", - " u'103881390',\n", - " u'103881400',\n", - " u'103881410',\n", - " u'103881420',\n", - " u'103881430',\n", - " u'103881440',\n", - " u'103881450',\n", - " u'103881460',\n", - " u'103881470',\n", - " u'103881480',\n", - " u'103881490',\n", - " u'103881500',\n", - " u'103881510',\n", - " u'103881520',\n", - " u'103881530',\n", - " u'103881540',\n", - " u'103881550',\n", - " u'103881560',\n", - " u'103881570',\n", - " u'103881580',\n", - " u'103881590',\n", - " u'103881600',\n", - " u'103881610',\n", - " u'103881620',\n", - " u'103881630',\n", - " u'103881640',\n", - " u'103881650',\n", - " u'103881660',\n", - " u'103881670',\n", - " u'103881680',\n", - " u'103881690',\n", - " u'103881700',\n", - " u'103881710',\n", - " u'103881720',\n", - " u'103881730',\n", - " u'103881740',\n", - " u'103881750',\n", - " u'103881760',\n", - " u'103881770',\n", - " u'103881780',\n", - " u'103881790',\n", - " u'103881800',\n", - " u'103881810',\n", - " u'103881820',\n", - " u'103881830',\n", - " u'103881840',\n", - " u'103881850',\n", - " u'103881860',\n", - " u'103881870',\n", - " u'103881880',\n", - " u'103881890',\n", - " u'103881900',\n", - " u'103881910',\n", - " u'103881920',\n", - " u'103881930',\n", - " u'103881940',\n", - " u'103881950',\n", - " u'103881960',\n", - " u'103881970',\n", - " u'103881980',\n", - " u'103881990',\n", - " u'103882000',\n", - " u'103882010',\n", - " u'103882020',\n", - " u'103882030',\n", - " u'103882040',\n", - " u'103882050',\n", - " u'103882060',\n", - " u'103882070',\n", - " u'103882080',\n", - " u'103882090',\n", - " u'103882100',\n", - " u'103882110',\n", - " u'103882120',\n", - " u'103882130',\n", - " u'103882140',\n", - " u'103882150',\n", - " u'103882160',\n", - " u'103882170',\n", - " u'103882180',\n", - " u'103882190',\n", - " u'103882200',\n", - " u'103882210',\n", - " u'103882220',\n", - " u'103882230',\n", - " u'103882240',\n", - " u'103882250',\n", - " u'103882260',\n", - " u'103882270',\n", - " u'103882280',\n", - " u'103882290',\n", - " u'103882300',\n", - " u'103882310',\n", - " u'103882320',\n", - " u'103882330',\n", - " u'103882340',\n", - " u'103882350',\n", - " u'103882360',\n", - " u'103882370',\n", - " u'103882380',\n", - " u'103882390',\n", - " u'103882400',\n", - " u'103882410',\n", - " u'103882420',\n", - " u'103882430',\n", - " u'103882440',\n", - " u'103882450',\n", - " u'103882460',\n", - " u'103882470',\n", - " u'103882480',\n", - " u'103882490',\n", - " u'103882500',\n", - " u'103882510',\n", - " u'103882520',\n", - " u'103882530',\n", - " u'103882540',\n", - " u'103882550',\n", - " u'103882560',\n", - " u'103882570',\n", - " u'103882580',\n", - " u'103882590',\n", - " u'103882600',\n", - " u'103882610',\n", - " u'103882620',\n", - " u'103882630',\n", - " u'103882640',\n", - " u'103882650',\n", - " u'103882660',\n", - " u'103882670',\n", - " u'103882680',\n", - " u'103882690',\n", - " u'103882700',\n", - " u'103882710',\n", - " u'103882720',\n", - " u'103882730',\n", - " u'103882740',\n", - " u'103882750',\n", - " u'103882760',\n", - " u'103882770',\n", - " u'103882780',\n", - " u'103882790',\n", - " u'103882800',\n", - " u'103882810',\n", - " u'103882820',\n", - " u'103882830',\n", - " u'103882840',\n", - " u'103882850',\n", - " u'103882860',\n", - " u'103882870',\n", - " u'103882880',\n", - " u'103882890',\n", - " u'103882900',\n", - " u'103882910',\n", - " u'103882920',\n", - " u'103882930',\n", - " u'103882940',\n", - " u'103882950',\n", - " u'103882960',\n", - " u'103882970',\n", - " u'103882980',\n", - " u'103882990',\n", - " u'103883000',\n", - " u'103883010',\n", - " u'103883020',\n", - " u'103883030',\n", - " u'103883040',\n", - " u'103883050',\n", - " u'103883060',\n", - " u'103883070',\n", - " u'103883080',\n", - " u'103883090',\n", - " u'103883100',\n", - " u'103883110',\n", - " u'103883120',\n", - " u'103883130',\n", - " u'103883140',\n", - " u'103883150',\n", - " u'103883160',\n", - " u'103883170',\n", - " u'103883180',\n", - " u'103883190',\n", - " u'103883200',\n", - " u'103883210',\n", - " u'103883220',\n", - " u'103883230',\n", - " u'103883240',\n", - " u'103883250',\n", - " u'103883260',\n", - " u'103883270',\n", - " u'103883280',\n", - " u'103883290',\n", - " u'103883300',\n", - " u'103883310',\n", - " u'103883320',\n", - " u'103883330',\n", - " u'103883340',\n", - " u'103883350',\n", - " u'103883360',\n", - " u'103883370',\n", - " u'103883380',\n", - " u'103883390',\n", - " u'103883400',\n", - " u'103883410',\n", - " u'103883420',\n", - " u'103883430',\n", - " u'103883440',\n", - " u'103883450',\n", - " u'103883460',\n", - " u'103883470',\n", - " u'103883480',\n", - " u'103883490',\n", - " u'103883500',\n", - " u'103883510',\n", - " u'103883520',\n", - " u'103883530',\n", - " u'103883540',\n", - " u'103883550',\n", - " u'103883560',\n", - " u'103883570',\n", - " u'103883580',\n", - " u'103883590',\n", - " u'103883600',\n", - " u'103883610',\n", - " u'103883620',\n", - " u'103883630',\n", - " u'103883640',\n", - " u'103883650',\n", - " u'103883660',\n", - " u'103883670',\n", - " u'103883680',\n", - " u'103883690',\n", - " u'103883700',\n", - " u'103883710',\n", - " u'103883720',\n", - " u'103883730',\n", - " u'103883740',\n", - " u'103883750',\n", - " u'103883760',\n", - " u'103883770',\n", - " u'103883780',\n", - " u'103883790',\n", - " u'103883800',\n", - " u'103883810',\n", - " u'103883820',\n", - " u'103883830',\n", - " u'103883840',\n", - " u'103883850',\n", - " u'103883860',\n", - " u'103883870',\n", - " u'103883880',\n", - " u'103883890',\n", - " u'103883900',\n", - " u'103883910',\n", - " u'103883920',\n", - " u'103883930',\n", - " u'103883940',\n", - " u'103883950',\n", - " u'103883960',\n", - " u'103883970',\n", - " u'103883980',\n", - " u'103883990',\n", - " u'103884000',\n", - " u'103884010',\n", - " u'103884020',\n", - " u'103884030',\n", - " u'103884040',\n", - " u'103884050',\n", - " u'103884060',\n", - " u'103884070',\n", - " u'103884080',\n", - " u'103884090',\n", - " u'103884100',\n", - " u'103884110',\n", - " u'103884120',\n", - " u'103884130',\n", - " u'103884140',\n", - " u'103884150',\n", - " u'103884160',\n", - " u'103884170',\n", - " u'103884180',\n", - " u'103884190',\n", - " u'103884200',\n", - " u'103884210',\n", - " u'103884220',\n", - " u'103884230',\n", - " u'103884240',\n", - " u'103884250',\n", - " u'103884260',\n", - " u'103884270',\n", - " ...],\n", - " u'taskID': 1155406100}" + "3875" ] }, - "execution_count": 13, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], + "source": [ + "len(schema)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "for att1 in p['schema']['layout']['layoutAttributes']:\n", + " next_level(p['schema']['layout']['layoutAttributes'][att1], {'name':'Layout-'+att1, 'permalink':'reference/#layout-'+att1})" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4945" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(schema)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "## Send to Algolia\n", "\n", @@ -4376,21 +203,21 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 2", + "display_name": "Python 3", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.10" + "pygments_lexer": "ipython3", + "version": "3.6.5" } }, "nbformat": 4, From 6cbdbfe844b0d7c55974e2be6e2b59d4c9a4a23e Mon Sep 17 00:00:00 2001 From: michaelbabyn Date: Tue, 4 Sep 2018 22:35:11 -0400 Subject: [PATCH 3/5] uncomment some stuff --- update_ref_search.ipynb | 26 +++----------------------- 1 file changed, 3 insertions(+), 23 deletions(-) diff --git a/update_ref_search.ipynb b/update_ref_search.ipynb index 4b84482300e5..dddb069a585b 100644 --- a/update_ref_search.ipynb +++ b/update_ref_search.ipynb @@ -10,12 +10,12 @@ "from collections import OrderedDict\n", "import os\n", "\n", - "#from algoliasearch import algoliasearch\n", + "from algoliasearch import algoliasearch\n", "\n", "## Algolia Credentials\n", "\n", - "#client = algoliasearch.Client(\"7EK9KHJW8M\", os.environ['ALGOLIA_API_KEY'])\n", - "#index = client.init_index('schema')\n", + "client = algoliasearch.Client(\"7EK9KHJW8M\", os.environ['ALGOLIA_API_KEY'])\n", + "index = client.init_index('schema')\n", "\n", "## Load plotschema.json\n", "# Note _data/plotschema.json is updated upon each deploy\n", @@ -124,26 +124,6 @@ "len(schema)" ] }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "3875" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(schema)" - ] - }, { "cell_type": "code", "execution_count": 10, From 716b1c7ec618a8f82f98a3e52b85605f0c5efeb3 Mon Sep 17 00:00:00 2001 From: michaelbabyn Date: Thu, 27 Sep 2018 13:26:25 -0400 Subject: [PATCH 4/5] fix bug in script omitting first layer of Layout --- update_ref_search.ipynb | 73 ++++++++--------------------------------- 1 file changed, 13 insertions(+), 60 deletions(-) diff --git a/update_ref_search.ipynb b/update_ref_search.ipynb index dddb069a585b..3b6853e0ee54 100644 --- a/update_ref_search.ipynb +++ b/update_ref_search.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -26,7 +26,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -46,27 +46,7 @@ }, { "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "34" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(schema)" - ] - }, - { - "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -95,7 +75,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -106,51 +86,24 @@ }, { "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "3875" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(schema)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ - "for att1 in p['schema']['layout']['layoutAttributes']:\n", - " next_level(p['schema']['layout']['layoutAttributes'][att1], {'name':'Layout-'+att1, 'permalink':'reference/#layout-'+att1})" + "next_level(p['schema']['layout']['layoutAttributes'], {'name':'Layout', 'permalink':'reference/#layout-'})" ] }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "4945" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ + "# keep a list of the names of of refs to tests against\n", + "with open('ref_names.txt', 'w') as f:\n", + " for name in sorted([s['name'] for s in schema2]):\n", + " f.write('{}\\n'.format(name))\n", + "\n", "len(schema)" ] }, From 3b88956969c5b931cab5fccc96c81804fd639682 Mon Sep 17 00:00:00 2001 From: michaelbabyn Date: Thu, 27 Sep 2018 13:32:11 -0400 Subject: [PATCH 5/5] add file of ref_names to compare changes to search against --- ref_names.txt | 4682 +++++++++++++++++++++++++++++++++++++++ update_ref_search.ipynb | 2 +- 2 files changed, 4683 insertions(+), 1 deletion(-) create mode 100644 ref_names.txt diff --git a/ref_names.txt b/ref_names.txt new file mode 100644 index 000000000000..9b177e2e3019 --- /dev/null +++ b/ref_names.txt @@ -0,0 +1,4682 @@ +Layout > angularaxis +Layout > angularaxis > domain +Layout > angularaxis > endpadding +Layout > angularaxis > range +Layout > angularaxis > showline +Layout > angularaxis > showticklabels +Layout > angularaxis > tickcolor +Layout > angularaxis > ticklen +Layout > angularaxis > tickorientation +Layout > angularaxis > ticksuffix +Layout > angularaxis > visible +Layout > annotations +Layout > autosize +Layout > calendar +Layout > clickmode +Layout > colorway +Layout > datarevision +Layout > direction +Layout > dragmode +Layout > font +Layout > font > color +Layout > font > family +Layout > font > size +Layout > geo +Layout > geo > bgcolor +Layout > geo > center +Layout > geo > center > lat +Layout > geo > center > lon +Layout > geo > coastlinecolor +Layout > geo > coastlinewidth +Layout > geo > countrycolor +Layout > geo > countrywidth +Layout > geo > domain +Layout > geo > domain > column +Layout > geo > domain > row +Layout > geo > domain > x +Layout > geo > domain > y +Layout > geo > framecolor +Layout > geo > framewidth +Layout > geo > lakecolor +Layout > geo > landcolor +Layout > geo > lataxis +Layout > geo > lataxis > dtick +Layout > geo > lataxis > gridcolor +Layout > geo > lataxis > gridwidth +Layout > geo > lataxis > range +Layout > geo > lataxis > showgrid +Layout > geo > lataxis > tick0 +Layout > geo > lonaxis +Layout > geo > lonaxis > dtick +Layout > geo > lonaxis > gridcolor +Layout > geo > lonaxis > gridwidth +Layout > geo > lonaxis > range +Layout > geo > lonaxis > showgrid +Layout > geo > lonaxis > tick0 +Layout > geo > oceancolor +Layout > geo > projection +Layout > geo > projection > parallels +Layout > geo > projection > rotation +Layout > geo > projection > rotation > lat +Layout > geo > projection > rotation > lon +Layout > geo > projection > rotation > roll +Layout > geo > projection > scale +Layout > geo > projection > type +Layout > geo > resolution +Layout > geo > rivercolor +Layout > geo > riverwidth +Layout > geo > scope +Layout > geo > showcoastlines +Layout > geo > showcountries +Layout > geo > showframe +Layout > geo > showlakes +Layout > geo > showland +Layout > geo > showocean +Layout > geo > showrivers +Layout > geo > showsubunits +Layout > geo > subunitcolor +Layout > geo > subunitwidth +Layout > grid +Layout > grid > columns +Layout > grid > domain +Layout > grid > domain > x +Layout > grid > domain > y +Layout > grid > pattern +Layout > grid > roworder +Layout > grid > rows +Layout > grid > subplots +Layout > grid > subplots > items +Layout > grid > xaxes +Layout > grid > xaxes > items +Layout > grid > xgap +Layout > grid > xside +Layout > grid > yaxes +Layout > grid > yaxes > items +Layout > grid > ygap +Layout > grid > yside +Layout > height +Layout > hidesources +Layout > hoverdistance +Layout > hoverlabel +Layout > hoverlabel > bgcolor +Layout > hoverlabel > bordercolor +Layout > hoverlabel > font +Layout > hoverlabel > font > color +Layout > hoverlabel > font > family +Layout > hoverlabel > font > size +Layout > hoverlabel > namelength +Layout > hovermode +Layout > images +Layout > legend +Layout > legend > bgcolor +Layout > legend > bordercolor +Layout > legend > borderwidth +Layout > legend > font +Layout > legend > font > color +Layout > legend > font > family +Layout > legend > font > size +Layout > legend > orientation +Layout > legend > tracegroupgap +Layout > legend > traceorder +Layout > legend > x +Layout > legend > xanchor +Layout > legend > y +Layout > legend > yanchor +Layout > mapbox +Layout > mapbox > accesstoken +Layout > mapbox > bearing +Layout > mapbox > center +Layout > mapbox > center > lat +Layout > mapbox > center > lon +Layout > mapbox > domain +Layout > mapbox > domain > column +Layout > mapbox > domain > row +Layout > mapbox > domain > x +Layout > mapbox > domain > y +Layout > mapbox > layers +Layout > mapbox > layers > items +Layout > mapbox > layers > items > layer +Layout > mapbox > pitch +Layout > mapbox > style +Layout > mapbox > zoom +Layout > margin +Layout > margin > autoexpand +Layout > margin > b +Layout > margin > l +Layout > margin > pad +Layout > margin > r +Layout > margin > t +Layout > orientation +Layout > paper_bgcolor +Layout > plot_bgcolor +Layout > polar +Layout > polar > angularaxis +Layout > polar > angularaxis > categoryarray +Layout > polar > angularaxis > categoryorder +Layout > polar > angularaxis > color +Layout > polar > angularaxis > direction +Layout > polar > angularaxis > dtick +Layout > polar > angularaxis > exponentformat +Layout > polar > angularaxis > gridcolor +Layout > polar > angularaxis > gridwidth +Layout > polar > angularaxis > hoverformat +Layout > polar > angularaxis > layer +Layout > polar > angularaxis > linecolor +Layout > polar > angularaxis > linewidth +Layout > polar > angularaxis > nticks +Layout > polar > angularaxis > period +Layout > polar > angularaxis > rotation +Layout > polar > angularaxis > separatethousands +Layout > polar > angularaxis > showexponent +Layout > polar > angularaxis > showgrid +Layout > polar > angularaxis > showline +Layout > polar > angularaxis > showticklabels +Layout > polar > angularaxis > showtickprefix +Layout > polar > angularaxis > showticksuffix +Layout > polar > angularaxis > thetaunit +Layout > polar > angularaxis > tick0 +Layout > polar > angularaxis > tickangle +Layout > polar > angularaxis > tickcolor +Layout > polar > angularaxis > tickfont +Layout > polar > angularaxis > tickfont > color +Layout > polar > angularaxis > tickfont > family +Layout > polar > angularaxis > tickfont > size +Layout > polar > angularaxis > tickformat +Layout > polar > angularaxis > tickformatstops +Layout > polar > angularaxis > tickformatstops > items +Layout > polar > angularaxis > ticklen +Layout > polar > angularaxis > tickmode +Layout > polar > angularaxis > tickprefix +Layout > polar > angularaxis > ticks +Layout > polar > angularaxis > ticksuffix +Layout > polar > angularaxis > ticktext +Layout > polar > angularaxis > tickvals +Layout > polar > angularaxis > tickwidth +Layout > polar > angularaxis > type +Layout > polar > angularaxis > visible +Layout > polar > bgcolor +Layout > polar > domain +Layout > polar > domain > column +Layout > polar > domain > row +Layout > polar > domain > x +Layout > polar > domain > y +Layout > polar > gridshape +Layout > polar > hole +Layout > polar > radialaxis +Layout > polar > radialaxis > angle +Layout > polar > radialaxis > autorange +Layout > polar > radialaxis > calendar +Layout > polar > radialaxis > categoryarray +Layout > polar > radialaxis > categoryorder +Layout > polar > radialaxis > color +Layout > polar > radialaxis > dtick +Layout > polar > radialaxis > exponentformat +Layout > polar > radialaxis > gridcolor +Layout > polar > radialaxis > gridwidth +Layout > polar > radialaxis > hoverformat +Layout > polar > radialaxis > layer +Layout > polar > radialaxis > linecolor +Layout > polar > radialaxis > linewidth +Layout > polar > radialaxis > nticks +Layout > polar > radialaxis > range +Layout > polar > radialaxis > rangemode +Layout > polar > radialaxis > separatethousands +Layout > polar > radialaxis > showexponent +Layout > polar > radialaxis > showgrid +Layout > polar > radialaxis > showline +Layout > polar > radialaxis > showticklabels +Layout > polar > radialaxis > showtickprefix +Layout > polar > radialaxis > showticksuffix +Layout > polar > radialaxis > side +Layout > polar > radialaxis > tick0 +Layout > polar > radialaxis > tickangle +Layout > polar > radialaxis > tickcolor +Layout > polar > radialaxis > tickfont +Layout > polar > radialaxis > tickfont > color +Layout > polar > radialaxis > tickfont > family +Layout > polar > radialaxis > tickfont > size +Layout > polar > radialaxis > tickformat +Layout > polar > radialaxis > tickformatstops +Layout > polar > radialaxis > tickformatstops > items +Layout > polar > radialaxis > ticklen +Layout > polar > radialaxis > tickmode +Layout > polar > radialaxis > tickprefix +Layout > polar > radialaxis > ticks +Layout > polar > radialaxis > ticksuffix +Layout > polar > radialaxis > ticktext +Layout > polar > radialaxis > tickvals +Layout > polar > radialaxis > tickwidth +Layout > polar > radialaxis > title +Layout > polar > radialaxis > titlefont +Layout > polar > radialaxis > titlefont > color +Layout > polar > radialaxis > titlefont > family +Layout > polar > radialaxis > titlefont > size +Layout > polar > radialaxis > type +Layout > polar > radialaxis > visible +Layout > polar > sector +Layout > radialaxis +Layout > radialaxis > domain +Layout > radialaxis > endpadding +Layout > radialaxis > orientation +Layout > radialaxis > range +Layout > radialaxis > showline +Layout > radialaxis > showticklabels +Layout > radialaxis > tickcolor +Layout > radialaxis > ticklen +Layout > radialaxis > tickorientation +Layout > radialaxis > ticksuffix +Layout > radialaxis > visible +Layout > scene +Layout > scene > annotations +Layout > scene > annotations > items +Layout > scene > annotations > items > annotation +Layout > scene > aspectmode +Layout > scene > aspectratio +Layout > scene > aspectratio > x +Layout > scene > aspectratio > y +Layout > scene > aspectratio > z +Layout > scene > bgcolor +Layout > scene > camera +Layout > scene > camera > center +Layout > scene > camera > center > x +Layout > scene > camera > center > y +Layout > scene > camera > center > z +Layout > scene > camera > eye +Layout > scene > camera > eye > x +Layout > scene > camera > eye > y +Layout > scene > camera > eye > z +Layout > scene > camera > up +Layout > scene > camera > up > x +Layout > scene > camera > up > y +Layout > scene > camera > up > z +Layout > scene > domain +Layout > scene > domain > column +Layout > scene > domain > row +Layout > scene > domain > x +Layout > scene > domain > y +Layout > scene > dragmode +Layout > scene > hovermode +Layout > scene > xaxis +Layout > scene > xaxis > autorange +Layout > scene > xaxis > backgroundcolor +Layout > scene > xaxis > calendar +Layout > scene > xaxis > categoryarray +Layout > scene > xaxis > categoryorder +Layout > scene > xaxis > color +Layout > scene > xaxis > dtick +Layout > scene > xaxis > exponentformat +Layout > scene > xaxis > gridcolor +Layout > scene > xaxis > gridwidth +Layout > scene > xaxis > hoverformat +Layout > scene > xaxis > linecolor +Layout > scene > xaxis > linewidth +Layout > scene > xaxis > mirror +Layout > scene > xaxis > nticks +Layout > scene > xaxis > range +Layout > scene > xaxis > rangemode +Layout > scene > xaxis > separatethousands +Layout > scene > xaxis > showaxeslabels +Layout > scene > xaxis > showbackground +Layout > scene > xaxis > showexponent +Layout > scene > xaxis > showgrid +Layout > scene > xaxis > showline +Layout > scene > xaxis > showspikes +Layout > scene > xaxis > showticklabels +Layout > scene > xaxis > showtickprefix +Layout > scene > xaxis > showticksuffix +Layout > scene > xaxis > spikecolor +Layout > scene > xaxis > spikesides +Layout > scene > xaxis > spikethickness +Layout > scene > xaxis > tick0 +Layout > scene > xaxis > tickangle +Layout > scene > xaxis > tickcolor +Layout > scene > xaxis > tickfont +Layout > scene > xaxis > tickfont > color +Layout > scene > xaxis > tickfont > family +Layout > scene > xaxis > tickfont > size +Layout > scene > xaxis > tickformat +Layout > scene > xaxis > tickformatstops +Layout > scene > xaxis > tickformatstops > items +Layout > scene > xaxis > ticklen +Layout > scene > xaxis > tickmode +Layout > scene > xaxis > tickprefix +Layout > scene > xaxis > ticks +Layout > scene > xaxis > ticksuffix +Layout > scene > xaxis > ticktext +Layout > scene > xaxis > tickvals +Layout > scene > xaxis > tickwidth +Layout > scene > xaxis > title +Layout > scene > xaxis > titlefont +Layout > scene > xaxis > titlefont > color +Layout > scene > xaxis > titlefont > family +Layout > scene > xaxis > titlefont > size +Layout > scene > xaxis > type +Layout > scene > xaxis > visible +Layout > scene > xaxis > zeroline +Layout > scene > xaxis > zerolinecolor +Layout > scene > xaxis > zerolinewidth +Layout > scene > yaxis +Layout > scene > yaxis > autorange +Layout > scene > yaxis > backgroundcolor +Layout > scene > yaxis > calendar +Layout > scene > yaxis > categoryarray +Layout > scene > yaxis > categoryorder +Layout > scene > yaxis > color +Layout > scene > yaxis > dtick +Layout > scene > yaxis > exponentformat +Layout > scene > yaxis > gridcolor +Layout > scene > yaxis > gridwidth +Layout > scene > yaxis > hoverformat +Layout > scene > yaxis > linecolor +Layout > scene > yaxis > linewidth +Layout > scene > yaxis > mirror +Layout > scene > yaxis > nticks +Layout > scene > yaxis > range +Layout > scene > yaxis > rangemode +Layout > scene > yaxis > separatethousands +Layout > scene > yaxis > showaxeslabels +Layout > scene > yaxis > showbackground +Layout > scene > yaxis > showexponent +Layout > scene > yaxis > showgrid +Layout > scene > yaxis > showline +Layout > scene > yaxis > showspikes +Layout > scene > yaxis > showticklabels +Layout > scene > yaxis > showtickprefix +Layout > scene > yaxis > showticksuffix +Layout > scene > yaxis > spikecolor +Layout > scene > yaxis > spikesides +Layout > scene > yaxis > spikethickness +Layout > scene > yaxis > tick0 +Layout > scene > yaxis > tickangle +Layout > scene > yaxis > tickcolor +Layout > scene > yaxis > tickfont +Layout > scene > yaxis > tickfont > color +Layout > scene > yaxis > tickfont > family +Layout > scene > yaxis > tickfont > size +Layout > scene > yaxis > tickformat +Layout > scene > yaxis > tickformatstops +Layout > scene > yaxis > tickformatstops > items +Layout > scene > yaxis > ticklen +Layout > scene > yaxis > tickmode +Layout > scene > yaxis > tickprefix +Layout > scene > yaxis > ticks +Layout > scene > yaxis > ticksuffix +Layout > scene > yaxis > ticktext +Layout > scene > yaxis > tickvals +Layout > scene > yaxis > tickwidth +Layout > scene > yaxis > title +Layout > scene > yaxis > titlefont +Layout > scene > yaxis > titlefont > color +Layout > scene > yaxis > titlefont > family +Layout > scene > yaxis > titlefont > size +Layout > scene > yaxis > type +Layout > scene > yaxis > visible +Layout > scene > yaxis > zeroline +Layout > scene > yaxis > zerolinecolor +Layout > scene > yaxis > zerolinewidth +Layout > scene > zaxis +Layout > scene > zaxis > autorange +Layout > scene > zaxis > backgroundcolor +Layout > scene > zaxis > calendar +Layout > scene > zaxis > categoryarray +Layout > scene > zaxis > categoryorder +Layout > scene > zaxis > color +Layout > scene > zaxis > dtick +Layout > scene > zaxis > exponentformat +Layout > scene > zaxis > gridcolor +Layout > scene > zaxis > gridwidth +Layout > scene > zaxis > hoverformat +Layout > scene > zaxis > linecolor +Layout > scene > zaxis > linewidth +Layout > scene > zaxis > mirror +Layout > scene > zaxis > nticks +Layout > scene > zaxis > range +Layout > scene > zaxis > rangemode +Layout > scene > zaxis > separatethousands +Layout > scene > zaxis > showaxeslabels +Layout > scene > zaxis > showbackground +Layout > scene > zaxis > showexponent +Layout > scene > zaxis > showgrid +Layout > scene > zaxis > showline +Layout > scene > zaxis > showspikes +Layout > scene > zaxis > showticklabels +Layout > scene > zaxis > showtickprefix +Layout > scene > zaxis > showticksuffix +Layout > scene > zaxis > spikecolor +Layout > scene > zaxis > spikesides +Layout > scene > zaxis > spikethickness +Layout > scene > zaxis > tick0 +Layout > scene > zaxis > tickangle +Layout > scene > zaxis > tickcolor +Layout > scene > zaxis > tickfont +Layout > scene > zaxis > tickfont > color +Layout > scene > zaxis > tickfont > family +Layout > scene > zaxis > tickfont > size +Layout > scene > zaxis > tickformat +Layout > scene > zaxis > tickformatstops +Layout > scene > zaxis > tickformatstops > items +Layout > scene > zaxis > ticklen +Layout > scene > zaxis > tickmode +Layout > scene > zaxis > tickprefix +Layout > scene > zaxis > ticks +Layout > scene > zaxis > ticksuffix +Layout > scene > zaxis > ticktext +Layout > scene > zaxis > tickvals +Layout > scene > zaxis > tickwidth +Layout > scene > zaxis > title +Layout > scene > zaxis > titlefont +Layout > scene > zaxis > titlefont > color +Layout > scene > zaxis > titlefont > family +Layout > scene > zaxis > titlefont > size +Layout > scene > zaxis > type +Layout > scene > zaxis > visible +Layout > scene > zaxis > zeroline +Layout > scene > zaxis > zerolinecolor +Layout > scene > zaxis > zerolinewidth +Layout > selectdirection +Layout > separators +Layout > shapes +Layout > showlegend +Layout > sliders +Layout > spikedistance +Layout > template +Layout > ternary +Layout > ternary > aaxis +Layout > ternary > aaxis > color +Layout > ternary > aaxis > dtick +Layout > ternary > aaxis > exponentformat +Layout > ternary > aaxis > gridcolor +Layout > ternary > aaxis > gridwidth +Layout > ternary > aaxis > hoverformat +Layout > ternary > aaxis > layer +Layout > ternary > aaxis > linecolor +Layout > ternary > aaxis > linewidth +Layout > ternary > aaxis > min +Layout > ternary > aaxis > nticks +Layout > ternary > aaxis > separatethousands +Layout > ternary > aaxis > showexponent +Layout > ternary > aaxis > showgrid +Layout > ternary > aaxis > showline +Layout > ternary > aaxis > showticklabels +Layout > ternary > aaxis > showtickprefix +Layout > ternary > aaxis > showticksuffix +Layout > ternary > aaxis > tick0 +Layout > ternary > aaxis > tickangle +Layout > ternary > aaxis > tickcolor +Layout > ternary > aaxis > tickfont +Layout > ternary > aaxis > tickfont > color +Layout > ternary > aaxis > tickfont > family +Layout > ternary > aaxis > tickfont > size +Layout > ternary > aaxis > tickformat +Layout > ternary > aaxis > tickformatstops +Layout > ternary > aaxis > tickformatstops > items +Layout > ternary > aaxis > ticklen +Layout > ternary > aaxis > tickmode +Layout > ternary > aaxis > tickprefix +Layout > ternary > aaxis > ticks +Layout > ternary > aaxis > ticksuffix +Layout > ternary > aaxis > ticktext +Layout > ternary > aaxis > tickvals +Layout > ternary > aaxis > tickwidth +Layout > ternary > aaxis > title +Layout > ternary > aaxis > titlefont +Layout > ternary > aaxis > titlefont > color +Layout > ternary > aaxis > titlefont > family +Layout > ternary > aaxis > titlefont > size +Layout > ternary > baxis +Layout > ternary > baxis > color +Layout > ternary > baxis > dtick +Layout > ternary > baxis > exponentformat +Layout > ternary > baxis > gridcolor +Layout > ternary > baxis > gridwidth +Layout > ternary > baxis > hoverformat +Layout > ternary > baxis > layer +Layout > ternary > baxis > linecolor +Layout > ternary > baxis > linewidth +Layout > ternary > baxis > min +Layout > ternary > baxis > nticks +Layout > ternary > baxis > separatethousands +Layout > ternary > baxis > showexponent +Layout > ternary > baxis > showgrid +Layout > ternary > baxis > showline +Layout > ternary > baxis > showticklabels +Layout > ternary > baxis > showtickprefix +Layout > ternary > baxis > showticksuffix +Layout > ternary > baxis > tick0 +Layout > ternary > baxis > tickangle +Layout > ternary > baxis > tickcolor +Layout > ternary > baxis > tickfont +Layout > ternary > baxis > tickfont > color +Layout > ternary > baxis > tickfont > family +Layout > ternary > baxis > tickfont > size +Layout > ternary > baxis > tickformat +Layout > ternary > baxis > tickformatstops +Layout > ternary > baxis > tickformatstops > items +Layout > ternary > baxis > ticklen +Layout > ternary > baxis > tickmode +Layout > ternary > baxis > tickprefix +Layout > ternary > baxis > ticks +Layout > ternary > baxis > ticksuffix +Layout > ternary > baxis > ticktext +Layout > ternary > baxis > tickvals +Layout > ternary > baxis > tickwidth +Layout > ternary > baxis > title +Layout > ternary > baxis > titlefont +Layout > ternary > baxis > titlefont > color +Layout > ternary > baxis > titlefont > family +Layout > ternary > baxis > titlefont > size +Layout > ternary > bgcolor +Layout > ternary > caxis +Layout > ternary > caxis > color +Layout > ternary > caxis > dtick +Layout > ternary > caxis > exponentformat +Layout > ternary > caxis > gridcolor +Layout > ternary > caxis > gridwidth +Layout > ternary > caxis > hoverformat +Layout > ternary > caxis > layer +Layout > ternary > caxis > linecolor +Layout > ternary > caxis > linewidth +Layout > ternary > caxis > min +Layout > ternary > caxis > nticks +Layout > ternary > caxis > separatethousands +Layout > ternary > caxis > showexponent +Layout > ternary > caxis > showgrid +Layout > ternary > caxis > showline +Layout > ternary > caxis > showticklabels +Layout > ternary > caxis > showtickprefix +Layout > ternary > caxis > showticksuffix +Layout > ternary > caxis > tick0 +Layout > ternary > caxis > tickangle +Layout > ternary > caxis > tickcolor +Layout > ternary > caxis > tickfont +Layout > ternary > caxis > tickfont > color +Layout > ternary > caxis > tickfont > family +Layout > ternary > caxis > tickfont > size +Layout > ternary > caxis > tickformat +Layout > ternary > caxis > tickformatstops +Layout > ternary > caxis > tickformatstops > items +Layout > ternary > caxis > ticklen +Layout > ternary > caxis > tickmode +Layout > ternary > caxis > tickprefix +Layout > ternary > caxis > ticks +Layout > ternary > caxis > ticksuffix +Layout > ternary > caxis > ticktext +Layout > ternary > caxis > tickvals +Layout > ternary > caxis > tickwidth +Layout > ternary > caxis > title +Layout > ternary > caxis > titlefont +Layout > ternary > caxis > titlefont > color +Layout > ternary > caxis > titlefont > family +Layout > ternary > caxis > titlefont > size +Layout > ternary > domain +Layout > ternary > domain > column +Layout > ternary > domain > row +Layout > ternary > domain > x +Layout > ternary > domain > y +Layout > ternary > sum +Layout > title +Layout > titlefont +Layout > titlefont > color +Layout > titlefont > family +Layout > titlefont > size +Layout > updatemenus +Layout > width +Layout > xaxis +Layout > xaxis > anchor +Layout > xaxis > automargin +Layout > xaxis > autorange +Layout > xaxis > calendar +Layout > xaxis > categoryarray +Layout > xaxis > categoryorder +Layout > xaxis > color +Layout > xaxis > constrain +Layout > xaxis > constraintoward +Layout > xaxis > domain +Layout > xaxis > dtick +Layout > xaxis > exponentformat +Layout > xaxis > fixedrange +Layout > xaxis > gridcolor +Layout > xaxis > gridwidth +Layout > xaxis > hoverformat +Layout > xaxis > layer +Layout > xaxis > linecolor +Layout > xaxis > linewidth +Layout > xaxis > mirror +Layout > xaxis > nticks +Layout > xaxis > overlaying +Layout > xaxis > position +Layout > xaxis > range +Layout > xaxis > rangemode +Layout > xaxis > rangeselector +Layout > xaxis > rangeselector > activecolor +Layout > xaxis > rangeselector > bgcolor +Layout > xaxis > rangeselector > bordercolor +Layout > xaxis > rangeselector > borderwidth +Layout > xaxis > rangeselector > buttons +Layout > xaxis > rangeselector > buttons > items +Layout > xaxis > rangeselector > font +Layout > xaxis > rangeselector > font > color +Layout > xaxis > rangeselector > font > family +Layout > xaxis > rangeselector > font > size +Layout > xaxis > rangeselector > visible +Layout > xaxis > rangeselector > x +Layout > xaxis > rangeselector > xanchor +Layout > xaxis > rangeselector > y +Layout > xaxis > rangeselector > yanchor +Layout > xaxis > rangeslider +Layout > xaxis > rangeslider > autorange +Layout > xaxis > rangeslider > bgcolor +Layout > xaxis > rangeslider > bordercolor +Layout > xaxis > rangeslider > borderwidth +Layout > xaxis > rangeslider > range +Layout > xaxis > rangeslider > thickness +Layout > xaxis > rangeslider > visible +Layout > xaxis > rangeslider > yaxis +Layout > xaxis > rangeslider > yaxis > range +Layout > xaxis > rangeslider > yaxis > rangemode +Layout > xaxis > scaleanchor +Layout > xaxis > scaleratio +Layout > xaxis > separatethousands +Layout > xaxis > showexponent +Layout > xaxis > showgrid +Layout > xaxis > showline +Layout > xaxis > showspikes +Layout > xaxis > showticklabels +Layout > xaxis > showtickprefix +Layout > xaxis > showticksuffix +Layout > xaxis > side +Layout > xaxis > spikecolor +Layout > xaxis > spikedash +Layout > xaxis > spikemode +Layout > xaxis > spikesnap +Layout > xaxis > spikethickness +Layout > xaxis > tick0 +Layout > xaxis > tickangle +Layout > xaxis > tickcolor +Layout > xaxis > tickfont +Layout > xaxis > tickfont > color +Layout > xaxis > tickfont > family +Layout > xaxis > tickfont > size +Layout > xaxis > tickformat +Layout > xaxis > tickformatstops +Layout > xaxis > tickformatstops > items +Layout > xaxis > tickformatstops > items > tickformatstop +Layout > xaxis > ticklen +Layout > xaxis > tickmode +Layout > xaxis > tickprefix +Layout > xaxis > ticks +Layout > xaxis > ticksuffix +Layout > xaxis > ticktext +Layout > xaxis > tickvals +Layout > xaxis > tickwidth +Layout > xaxis > title +Layout > xaxis > titlefont +Layout > xaxis > titlefont > color +Layout > xaxis > titlefont > family +Layout > xaxis > titlefont > size +Layout > xaxis > type +Layout > xaxis > visible +Layout > xaxis > zeroline +Layout > xaxis > zerolinecolor +Layout > xaxis > zerolinewidth +Layout > yaxis +Layout > yaxis > anchor +Layout > yaxis > automargin +Layout > yaxis > autorange +Layout > yaxis > calendar +Layout > yaxis > categoryarray +Layout > yaxis > categoryorder +Layout > yaxis > color +Layout > yaxis > constrain +Layout > yaxis > constraintoward +Layout > yaxis > domain +Layout > yaxis > dtick +Layout > yaxis > exponentformat +Layout > yaxis > fixedrange +Layout > yaxis > gridcolor +Layout > yaxis > gridwidth +Layout > yaxis > hoverformat +Layout > yaxis > layer +Layout > yaxis > linecolor +Layout > yaxis > linewidth +Layout > yaxis > mirror +Layout > yaxis > nticks +Layout > yaxis > overlaying +Layout > yaxis > position +Layout > yaxis > range +Layout > yaxis > rangemode +Layout > yaxis > scaleanchor +Layout > yaxis > scaleratio +Layout > yaxis > separatethousands +Layout > yaxis > showexponent +Layout > yaxis > showgrid +Layout > yaxis > showline +Layout > yaxis > showspikes +Layout > yaxis > showticklabels +Layout > yaxis > showtickprefix +Layout > yaxis > showticksuffix +Layout > yaxis > side +Layout > yaxis > spikecolor +Layout > yaxis > spikedash +Layout > yaxis > spikemode +Layout > yaxis > spikesnap +Layout > yaxis > spikethickness +Layout > yaxis > tick0 +Layout > yaxis > tickangle +Layout > yaxis > tickcolor +Layout > yaxis > tickfont +Layout > yaxis > tickfont > color +Layout > yaxis > tickfont > family +Layout > yaxis > tickfont > size +Layout > yaxis > tickformat +Layout > yaxis > tickformatstops +Layout > yaxis > tickformatstops > items +Layout > yaxis > tickformatstops > items > tickformatstop +Layout > yaxis > ticklen +Layout > yaxis > tickmode +Layout > yaxis > tickprefix +Layout > yaxis > ticks +Layout > yaxis > ticksuffix +Layout > yaxis > ticktext +Layout > yaxis > tickvals +Layout > yaxis > tickwidth +Layout > yaxis > title +Layout > yaxis > titlefont +Layout > yaxis > titlefont > color +Layout > yaxis > titlefont > family +Layout > yaxis > titlefont > size +Layout > yaxis > type +Layout > yaxis > visible +Layout > yaxis > zeroline +Layout > yaxis > zerolinecolor +Layout > yaxis > zerolinewidth +area +area > customdata +area > hoverinfo +area > hoverlabel +area > hoverlabel > bgcolor +area > hoverlabel > bordercolor +area > hoverlabel > font +area > hoverlabel > font > color +area > hoverlabel > font > family +area > hoverlabel > font > size +area > hoverlabel > namelength +area > ids +area > legendgroup +area > marker +area > marker > color +area > marker > opacity +area > marker > size +area > marker > symbol +area > name +area > opacity +area > r +area > selectedpoints +area > showlegend +area > stream +area > stream > maxpoints +area > stream > token +area > t +area > transforms +area > transforms > items +area > transforms > items > transform +area > type +area > visible +bar +bar > _deprecated > bardir +bar > base +bar > cliponaxis +bar > constraintext +bar > customdata +bar > dx +bar > dy +bar > error_x +bar > error_x > array +bar > error_x > arrayminus +bar > error_x > color +bar > error_x > copy_ystyle +bar > error_x > symmetric +bar > error_x > thickness +bar > error_x > traceref +bar > error_x > tracerefminus +bar > error_x > type +bar > error_x > value +bar > error_x > valueminus +bar > error_x > visible +bar > error_x > width +bar > error_y +bar > error_y > array +bar > error_y > arrayminus +bar > error_y > color +bar > error_y > symmetric +bar > error_y > thickness +bar > error_y > traceref +bar > error_y > tracerefminus +bar > error_y > type +bar > error_y > value +bar > error_y > valueminus +bar > error_y > visible +bar > error_y > width +bar > hoverinfo +bar > hoverlabel +bar > hoverlabel > bgcolor +bar > hoverlabel > bordercolor +bar > hoverlabel > font +bar > hoverlabel > font > color +bar > hoverlabel > font > family +bar > hoverlabel > font > size +bar > hoverlabel > namelength +bar > hovertext +bar > ids +bar > insidetextfont +bar > insidetextfont > color +bar > insidetextfont > family +bar > insidetextfont > size +bar > legendgroup +bar > marker +bar > marker > autocolorscale +bar > marker > cauto +bar > marker > cmax +bar > marker > cmin +bar > marker > color +bar > marker > colorbar +bar > marker > colorbar > bgcolor +bar > marker > colorbar > bordercolor +bar > marker > colorbar > borderwidth +bar > marker > colorbar > dtick +bar > marker > colorbar > exponentformat +bar > marker > colorbar > len +bar > marker > colorbar > lenmode +bar > marker > colorbar > nticks +bar > marker > colorbar > outlinecolor +bar > marker > colorbar > outlinewidth +bar > marker > colorbar > separatethousands +bar > marker > colorbar > showexponent +bar > marker > colorbar > showticklabels +bar > marker > colorbar > showtickprefix +bar > marker > colorbar > showticksuffix +bar > marker > colorbar > thickness +bar > marker > colorbar > thicknessmode +bar > marker > colorbar > tick0 +bar > marker > colorbar > tickangle +bar > marker > colorbar > tickcolor +bar > marker > colorbar > tickfont +bar > marker > colorbar > tickfont > color +bar > marker > colorbar > tickfont > family +bar > marker > colorbar > tickfont > size +bar > marker > colorbar > tickformat +bar > marker > colorbar > tickformatstops +bar > marker > colorbar > tickformatstops > items +bar > marker > colorbar > ticklen +bar > marker > colorbar > tickmode +bar > marker > colorbar > tickprefix +bar > marker > colorbar > ticks +bar > marker > colorbar > ticksuffix +bar > marker > colorbar > ticktext +bar > marker > colorbar > tickvals +bar > marker > colorbar > tickwidth +bar > marker > colorbar > title +bar > marker > colorbar > titlefont +bar > marker > colorbar > titlefont > color +bar > marker > colorbar > titlefont > family +bar > marker > colorbar > titlefont > size +bar > marker > colorbar > titleside +bar > marker > colorbar > x +bar > marker > colorbar > xanchor +bar > marker > colorbar > xpad +bar > marker > colorbar > y +bar > marker > colorbar > yanchor +bar > marker > colorbar > ypad +bar > marker > colorscale +bar > marker > line +bar > marker > line > autocolorscale +bar > marker > line > cauto +bar > marker > line > cmax +bar > marker > line > cmin +bar > marker > line > color +bar > marker > line > colorscale +bar > marker > line > reversescale +bar > marker > line > width +bar > marker > opacity +bar > marker > reversescale +bar > marker > showscale +bar > name +bar > offset +bar > opacity +bar > orientation +bar > outsidetextfont +bar > outsidetextfont > color +bar > outsidetextfont > family +bar > outsidetextfont > size +bar > r +bar > selected +bar > selected > marker +bar > selected > marker > color +bar > selected > marker > opacity +bar > selected > textfont +bar > selected > textfont > color +bar > selectedpoints +bar > showlegend +bar > stream +bar > stream > maxpoints +bar > stream > token +bar > t +bar > text +bar > textfont +bar > textfont > color +bar > textfont > family +bar > textfont > size +bar > textposition +bar > transforms +bar > transforms > items +bar > transforms > items > transform +bar > type +bar > unselected +bar > unselected > marker +bar > unselected > marker > color +bar > unselected > marker > opacity +bar > unselected > textfont +bar > unselected > textfont > color +bar > visible +bar > width +bar > x +bar > x0 +bar > xaxis +bar > xcalendar +bar > y +bar > y0 +bar > yaxis +bar > ycalendar +barpolar +barpolar > base +barpolar > customdata +barpolar > dr +barpolar > dtheta +barpolar > hoverinfo +barpolar > hoverlabel +barpolar > hoverlabel > bgcolor +barpolar > hoverlabel > bordercolor +barpolar > hoverlabel > font +barpolar > hoverlabel > font > color +barpolar > hoverlabel > font > family +barpolar > hoverlabel > font > size +barpolar > hoverlabel > namelength +barpolar > ids +barpolar > legendgroup +barpolar > marker +barpolar > marker > autocolorscale +barpolar > marker > cauto +barpolar > marker > cmax +barpolar > marker > cmin +barpolar > marker > color +barpolar > marker > colorbar +barpolar > marker > colorbar > bgcolor +barpolar > marker > colorbar > bordercolor +barpolar > marker > colorbar > borderwidth +barpolar > marker > colorbar > dtick +barpolar > marker > colorbar > exponentformat +barpolar > marker > colorbar > len +barpolar > marker > colorbar > lenmode +barpolar > marker > colorbar > nticks +barpolar > marker > colorbar > outlinecolor +barpolar > marker > colorbar > outlinewidth +barpolar > marker > colorbar > separatethousands +barpolar > marker > colorbar > showexponent +barpolar > marker > colorbar > showticklabels +barpolar > marker > colorbar > showtickprefix +barpolar > marker > colorbar > showticksuffix +barpolar > marker > colorbar > thickness +barpolar > marker > colorbar > thicknessmode +barpolar > marker > colorbar > tick0 +barpolar > marker > colorbar > tickangle +barpolar > marker > colorbar > tickcolor +barpolar > marker > colorbar > tickfont +barpolar > marker > colorbar > tickfont > color +barpolar > marker > colorbar > tickfont > family +barpolar > marker > colorbar > tickfont > size +barpolar > marker > colorbar > tickformat +barpolar > marker > colorbar > tickformatstops +barpolar > marker > colorbar > tickformatstops > items +barpolar > marker > colorbar > ticklen +barpolar > marker > colorbar > tickmode +barpolar > marker > colorbar > tickprefix +barpolar > marker > colorbar > ticks +barpolar > marker > colorbar > ticksuffix +barpolar > marker > colorbar > ticktext +barpolar > marker > colorbar > tickvals +barpolar > marker > colorbar > tickwidth +barpolar > marker > colorbar > title +barpolar > marker > colorbar > titlefont +barpolar > marker > colorbar > titlefont > color +barpolar > marker > colorbar > titlefont > family +barpolar > marker > colorbar > titlefont > size +barpolar > marker > colorbar > titleside +barpolar > marker > colorbar > x +barpolar > marker > colorbar > xanchor +barpolar > marker > colorbar > xpad +barpolar > marker > colorbar > y +barpolar > marker > colorbar > yanchor +barpolar > marker > colorbar > ypad +barpolar > marker > colorscale +barpolar > marker > line +barpolar > marker > line > autocolorscale +barpolar > marker > line > cauto +barpolar > marker > line > cmax +barpolar > marker > line > cmin +barpolar > marker > line > color +barpolar > marker > line > colorscale +barpolar > marker > line > reversescale +barpolar > marker > line > width +barpolar > marker > opacity +barpolar > marker > reversescale +barpolar > marker > showscale +barpolar > name +barpolar > offset +barpolar > opacity +barpolar > r +barpolar > r0 +barpolar > selected +barpolar > selected > marker +barpolar > selected > marker > color +barpolar > selected > marker > opacity +barpolar > selected > textfont +barpolar > selected > textfont > color +barpolar > selectedpoints +barpolar > showlegend +barpolar > stream +barpolar > stream > maxpoints +barpolar > stream > token +barpolar > subplot +barpolar > text +barpolar > theta +barpolar > theta0 +barpolar > thetaunit +barpolar > transforms +barpolar > transforms > items +barpolar > transforms > items > transform +barpolar > type +barpolar > unselected +barpolar > unselected > marker +barpolar > unselected > marker > color +barpolar > unselected > marker > opacity +barpolar > unselected > textfont +barpolar > unselected > textfont > color +barpolar > visible +barpolar > width +box +box > boxmean +box > boxpoints +box > customdata +box > fillcolor +box > hoverinfo +box > hoverlabel +box > hoverlabel > bgcolor +box > hoverlabel > bordercolor +box > hoverlabel > font +box > hoverlabel > font > color +box > hoverlabel > font > family +box > hoverlabel > font > size +box > hoverlabel > namelength +box > hoveron +box > ids +box > jitter +box > legendgroup +box > line +box > line > color +box > line > width +box > marker +box > marker > color +box > marker > line +box > marker > line > color +box > marker > line > outliercolor +box > marker > line > outlierwidth +box > marker > line > width +box > marker > opacity +box > marker > outliercolor +box > marker > size +box > marker > symbol +box > name +box > notched +box > notchwidth +box > opacity +box > orientation +box > pointpos +box > selected +box > selected > marker +box > selected > marker > color +box > selected > marker > opacity +box > selected > marker > size +box > selectedpoints +box > showlegend +box > stream +box > stream > maxpoints +box > stream > token +box > text +box > transforms +box > transforms > items +box > transforms > items > transform +box > type +box > unselected +box > unselected > marker +box > unselected > marker > color +box > unselected > marker > opacity +box > unselected > marker > size +box > visible +box > whiskerwidth +box > x +box > x0 +box > xaxis +box > xcalendar +box > y +box > y0 +box > yaxis +box > ycalendar +candlestick +candlestick > close +candlestick > customdata +candlestick > decreasing +candlestick > decreasing > fillcolor +candlestick > decreasing > line +candlestick > decreasing > line > color +candlestick > decreasing > line > width +candlestick > high +candlestick > hoverinfo +candlestick > hoverlabel +candlestick > hoverlabel > bgcolor +candlestick > hoverlabel > bordercolor +candlestick > hoverlabel > font +candlestick > hoverlabel > font > color +candlestick > hoverlabel > font > family +candlestick > hoverlabel > font > size +candlestick > hoverlabel > namelength +candlestick > ids +candlestick > increasing +candlestick > increasing > fillcolor +candlestick > increasing > line +candlestick > increasing > line > color +candlestick > increasing > line > width +candlestick > legendgroup +candlestick > line +candlestick > line > width +candlestick > low +candlestick > name +candlestick > opacity +candlestick > open +candlestick > selectedpoints +candlestick > showlegend +candlestick > stream +candlestick > stream > maxpoints +candlestick > stream > token +candlestick > text +candlestick > transforms +candlestick > transforms > items +candlestick > transforms > items > transform +candlestick > type +candlestick > visible +candlestick > whiskerwidth +candlestick > x +candlestick > xaxis +candlestick > xcalendar +candlestick > yaxis +carpet +carpet > a +carpet > a0 +carpet > aaxis +carpet > aaxis > arraydtick +carpet > aaxis > arraytick0 +carpet > aaxis > autorange +carpet > aaxis > categoryarray +carpet > aaxis > categoryorder +carpet > aaxis > cheatertype +carpet > aaxis > color +carpet > aaxis > dtick +carpet > aaxis > endline +carpet > aaxis > endlinecolor +carpet > aaxis > endlinewidth +carpet > aaxis > exponentformat +carpet > aaxis > fixedrange +carpet > aaxis > gridcolor +carpet > aaxis > gridwidth +carpet > aaxis > labelpadding +carpet > aaxis > labelprefix +carpet > aaxis > labelsuffix +carpet > aaxis > linecolor +carpet > aaxis > linewidth +carpet > aaxis > minorgridcolor +carpet > aaxis > minorgridcount +carpet > aaxis > minorgridwidth +carpet > aaxis > nticks +carpet > aaxis > range +carpet > aaxis > rangemode +carpet > aaxis > separatethousands +carpet > aaxis > showexponent +carpet > aaxis > showgrid +carpet > aaxis > showline +carpet > aaxis > showticklabels +carpet > aaxis > showtickprefix +carpet > aaxis > showticksuffix +carpet > aaxis > smoothing +carpet > aaxis > startline +carpet > aaxis > startlinecolor +carpet > aaxis > startlinewidth +carpet > aaxis > tick0 +carpet > aaxis > tickangle +carpet > aaxis > tickfont +carpet > aaxis > tickfont > color +carpet > aaxis > tickfont > family +carpet > aaxis > tickfont > size +carpet > aaxis > tickformat +carpet > aaxis > tickformatstops +carpet > aaxis > tickformatstops > items +carpet > aaxis > tickformatstops > items > tickformatstop +carpet > aaxis > tickmode +carpet > aaxis > tickprefix +carpet > aaxis > ticksuffix +carpet > aaxis > ticktext +carpet > aaxis > tickvals +carpet > aaxis > title +carpet > aaxis > titlefont +carpet > aaxis > titlefont > color +carpet > aaxis > titlefont > family +carpet > aaxis > titlefont > size +carpet > aaxis > titleoffset +carpet > aaxis > type +carpet > b +carpet > b0 +carpet > baxis +carpet > baxis > arraydtick +carpet > baxis > arraytick0 +carpet > baxis > autorange +carpet > baxis > categoryarray +carpet > baxis > categoryorder +carpet > baxis > cheatertype +carpet > baxis > color +carpet > baxis > dtick +carpet > baxis > endline +carpet > baxis > endlinecolor +carpet > baxis > endlinewidth +carpet > baxis > exponentformat +carpet > baxis > fixedrange +carpet > baxis > gridcolor +carpet > baxis > gridwidth +carpet > baxis > labelpadding +carpet > baxis > labelprefix +carpet > baxis > labelsuffix +carpet > baxis > linecolor +carpet > baxis > linewidth +carpet > baxis > minorgridcolor +carpet > baxis > minorgridcount +carpet > baxis > minorgridwidth +carpet > baxis > nticks +carpet > baxis > range +carpet > baxis > rangemode +carpet > baxis > separatethousands +carpet > baxis > showexponent +carpet > baxis > showgrid +carpet > baxis > showline +carpet > baxis > showticklabels +carpet > baxis > showtickprefix +carpet > baxis > showticksuffix +carpet > baxis > smoothing +carpet > baxis > startline +carpet > baxis > startlinecolor +carpet > baxis > startlinewidth +carpet > baxis > tick0 +carpet > baxis > tickangle +carpet > baxis > tickfont +carpet > baxis > tickfont > color +carpet > baxis > tickfont > family +carpet > baxis > tickfont > size +carpet > baxis > tickformat +carpet > baxis > tickformatstops +carpet > baxis > tickformatstops > items +carpet > baxis > tickformatstops > items > tickformatstop +carpet > baxis > tickmode +carpet > baxis > tickprefix +carpet > baxis > ticksuffix +carpet > baxis > ticktext +carpet > baxis > tickvals +carpet > baxis > title +carpet > baxis > titlefont +carpet > baxis > titlefont > color +carpet > baxis > titlefont > family +carpet > baxis > titlefont > size +carpet > baxis > titleoffset +carpet > baxis > type +carpet > carpet +carpet > cheaterslope +carpet > color +carpet > customdata +carpet > da +carpet > db +carpet > font +carpet > font > color +carpet > font > family +carpet > font > size +carpet > hoverinfo +carpet > hoverlabel +carpet > hoverlabel > bgcolor +carpet > hoverlabel > bordercolor +carpet > hoverlabel > font +carpet > hoverlabel > font > color +carpet > hoverlabel > font > family +carpet > hoverlabel > font > size +carpet > hoverlabel > namelength +carpet > ids +carpet > legendgroup +carpet > name +carpet > opacity +carpet > selectedpoints +carpet > showlegend +carpet > stream +carpet > stream > maxpoints +carpet > stream > token +carpet > transforms +carpet > transforms > items +carpet > transforms > items > transform +carpet > type +carpet > visible +carpet > x +carpet > xaxis +carpet > y +carpet > yaxis +choropleth +choropleth > autocolorscale +choropleth > colorbar +choropleth > colorbar > bgcolor +choropleth > colorbar > bordercolor +choropleth > colorbar > borderwidth +choropleth > colorbar > dtick +choropleth > colorbar > exponentformat +choropleth > colorbar > len +choropleth > colorbar > lenmode +choropleth > colorbar > nticks +choropleth > colorbar > outlinecolor +choropleth > colorbar > outlinewidth +choropleth > colorbar > separatethousands +choropleth > colorbar > showexponent +choropleth > colorbar > showticklabels +choropleth > colorbar > showtickprefix +choropleth > colorbar > showticksuffix +choropleth > colorbar > thickness +choropleth > colorbar > thicknessmode +choropleth > colorbar > tick0 +choropleth > colorbar > tickangle +choropleth > colorbar > tickcolor +choropleth > colorbar > tickfont +choropleth > colorbar > tickfont > color +choropleth > colorbar > tickfont > family +choropleth > colorbar > tickfont > size +choropleth > colorbar > tickformat +choropleth > colorbar > tickformatstops +choropleth > colorbar > tickformatstops > items +choropleth > colorbar > tickformatstops > items > tickformatstop +choropleth > colorbar > ticklen +choropleth > colorbar > tickmode +choropleth > colorbar > tickprefix +choropleth > colorbar > ticks +choropleth > colorbar > ticksuffix +choropleth > colorbar > ticktext +choropleth > colorbar > tickvals +choropleth > colorbar > tickwidth +choropleth > colorbar > title +choropleth > colorbar > titlefont +choropleth > colorbar > titlefont > color +choropleth > colorbar > titlefont > family +choropleth > colorbar > titlefont > size +choropleth > colorbar > titleside +choropleth > colorbar > x +choropleth > colorbar > xanchor +choropleth > colorbar > xpad +choropleth > colorbar > y +choropleth > colorbar > yanchor +choropleth > colorbar > ypad +choropleth > colorscale +choropleth > customdata +choropleth > geo +choropleth > hoverinfo +choropleth > hoverlabel +choropleth > hoverlabel > bgcolor +choropleth > hoverlabel > bordercolor +choropleth > hoverlabel > font +choropleth > hoverlabel > font > color +choropleth > hoverlabel > font > family +choropleth > hoverlabel > font > size +choropleth > hoverlabel > namelength +choropleth > ids +choropleth > legendgroup +choropleth > locationmode +choropleth > locations +choropleth > marker +choropleth > marker > line +choropleth > marker > line > color +choropleth > marker > line > width +choropleth > marker > opacity +choropleth > name +choropleth > opacity +choropleth > reversescale +choropleth > selected +choropleth > selected > marker +choropleth > selected > marker > opacity +choropleth > selectedpoints +choropleth > showlegend +choropleth > showscale +choropleth > stream +choropleth > stream > maxpoints +choropleth > stream > token +choropleth > text +choropleth > transforms +choropleth > transforms > items +choropleth > transforms > items > transform +choropleth > type +choropleth > unselected +choropleth > unselected > marker +choropleth > unselected > marker > opacity +choropleth > visible +choropleth > z +choropleth > zauto +choropleth > zmax +choropleth > zmin +cone +cone > anchor +cone > autocolorscale +cone > cauto +cone > cmax +cone > cmin +cone > colorbar +cone > colorbar > bgcolor +cone > colorbar > bordercolor +cone > colorbar > borderwidth +cone > colorbar > dtick +cone > colorbar > exponentformat +cone > colorbar > len +cone > colorbar > lenmode +cone > colorbar > nticks +cone > colorbar > outlinecolor +cone > colorbar > outlinewidth +cone > colorbar > separatethousands +cone > colorbar > showexponent +cone > colorbar > showticklabels +cone > colorbar > showtickprefix +cone > colorbar > showticksuffix +cone > colorbar > thickness +cone > colorbar > thicknessmode +cone > colorbar > tick0 +cone > colorbar > tickangle +cone > colorbar > tickcolor +cone > colorbar > tickfont +cone > colorbar > tickfont > color +cone > colorbar > tickfont > family +cone > colorbar > tickfont > size +cone > colorbar > tickformat +cone > colorbar > tickformatstops +cone > colorbar > tickformatstops > items +cone > colorbar > tickformatstops > items > tickformatstop +cone > colorbar > ticklen +cone > colorbar > tickmode +cone > colorbar > tickprefix +cone > colorbar > ticks +cone > colorbar > ticksuffix +cone > colorbar > ticktext +cone > colorbar > tickvals +cone > colorbar > tickwidth +cone > colorbar > title +cone > colorbar > titlefont +cone > colorbar > titlefont > color +cone > colorbar > titlefont > family +cone > colorbar > titlefont > size +cone > colorbar > titleside +cone > colorbar > x +cone > colorbar > xanchor +cone > colorbar > xpad +cone > colorbar > y +cone > colorbar > yanchor +cone > colorbar > ypad +cone > colorscale +cone > customdata +cone > hoverinfo +cone > hoverlabel +cone > hoverlabel > bgcolor +cone > hoverlabel > bordercolor +cone > hoverlabel > font +cone > hoverlabel > font > color +cone > hoverlabel > font > family +cone > hoverlabel > font > size +cone > hoverlabel > namelength +cone > ids +cone > legendgroup +cone > lighting +cone > lighting > ambient +cone > lighting > diffuse +cone > lighting > facenormalsepsilon +cone > lighting > fresnel +cone > lighting > roughness +cone > lighting > specular +cone > lighting > vertexnormalsepsilon +cone > lightposition +cone > lightposition > x +cone > lightposition > y +cone > lightposition > z +cone > name +cone > opacity +cone > reversescale +cone > scene +cone > selectedpoints +cone > showlegend +cone > showscale +cone > sizemode +cone > sizeref +cone > stream +cone > stream > maxpoints +cone > stream > token +cone > text +cone > transforms +cone > transforms > items +cone > transforms > items > transform +cone > type +cone > u +cone > v +cone > visible +cone > w +cone > x +cone > y +cone > z +contour +contour > autocolorscale +contour > autocontour +contour > colorbar +contour > colorbar > bgcolor +contour > colorbar > bordercolor +contour > colorbar > borderwidth +contour > colorbar > dtick +contour > colorbar > exponentformat +contour > colorbar > len +contour > colorbar > lenmode +contour > colorbar > nticks +contour > colorbar > outlinecolor +contour > colorbar > outlinewidth +contour > colorbar > separatethousands +contour > colorbar > showexponent +contour > colorbar > showticklabels +contour > colorbar > showtickprefix +contour > colorbar > showticksuffix +contour > colorbar > thickness +contour > colorbar > thicknessmode +contour > colorbar > tick0 +contour > colorbar > tickangle +contour > colorbar > tickcolor +contour > colorbar > tickfont +contour > colorbar > tickfont > color +contour > colorbar > tickfont > family +contour > colorbar > tickfont > size +contour > colorbar > tickformat +contour > colorbar > tickformatstops +contour > colorbar > tickformatstops > items +contour > colorbar > tickformatstops > items > tickformatstop +contour > colorbar > ticklen +contour > colorbar > tickmode +contour > colorbar > tickprefix +contour > colorbar > ticks +contour > colorbar > ticksuffix +contour > colorbar > ticktext +contour > colorbar > tickvals +contour > colorbar > tickwidth +contour > colorbar > title +contour > colorbar > titlefont +contour > colorbar > titlefont > color +contour > colorbar > titlefont > family +contour > colorbar > titlefont > size +contour > colorbar > titleside +contour > colorbar > x +contour > colorbar > xanchor +contour > colorbar > xpad +contour > colorbar > y +contour > colorbar > yanchor +contour > colorbar > ypad +contour > colorscale +contour > connectgaps +contour > contours +contour > contours > coloring +contour > contours > end +contour > contours > labelfont +contour > contours > labelfont > color +contour > contours > labelfont > family +contour > contours > labelfont > size +contour > contours > labelformat +contour > contours > operation +contour > contours > showlabels +contour > contours > showlines +contour > contours > size +contour > contours > start +contour > contours > type +contour > contours > value +contour > customdata +contour > dx +contour > dy +contour > fillcolor +contour > hoverinfo +contour > hoverlabel +contour > hoverlabel > bgcolor +contour > hoverlabel > bordercolor +contour > hoverlabel > font +contour > hoverlabel > font > color +contour > hoverlabel > font > family +contour > hoverlabel > font > size +contour > hoverlabel > namelength +contour > ids +contour > legendgroup +contour > line +contour > line > color +contour > line > dash +contour > line > smoothing +contour > line > width +contour > name +contour > ncontours +contour > opacity +contour > reversescale +contour > selectedpoints +contour > showlegend +contour > showscale +contour > stream +contour > stream > maxpoints +contour > stream > token +contour > text +contour > transforms +contour > transforms > items +contour > transforms > items > transform +contour > transpose +contour > type +contour > visible +contour > x +contour > x0 +contour > xaxis +contour > xcalendar +contour > xtype +contour > y +contour > y0 +contour > yaxis +contour > ycalendar +contour > ytype +contour > z +contour > zauto +contour > zhoverformat +contour > zmax +contour > zmin +contourcarpet +contourcarpet > a +contourcarpet > a0 +contourcarpet > atype +contourcarpet > autocolorscale +contourcarpet > autocontour +contourcarpet > b +contourcarpet > b0 +contourcarpet > btype +contourcarpet > carpet +contourcarpet > colorbar +contourcarpet > colorbar > bgcolor +contourcarpet > colorbar > bordercolor +contourcarpet > colorbar > borderwidth +contourcarpet > colorbar > dtick +contourcarpet > colorbar > exponentformat +contourcarpet > colorbar > len +contourcarpet > colorbar > lenmode +contourcarpet > colorbar > nticks +contourcarpet > colorbar > outlinecolor +contourcarpet > colorbar > outlinewidth +contourcarpet > colorbar > separatethousands +contourcarpet > colorbar > showexponent +contourcarpet > colorbar > showticklabels +contourcarpet > colorbar > showtickprefix +contourcarpet > colorbar > showticksuffix +contourcarpet > colorbar > thickness +contourcarpet > colorbar > thicknessmode +contourcarpet > colorbar > tick0 +contourcarpet > colorbar > tickangle +contourcarpet > colorbar > tickcolor +contourcarpet > colorbar > tickfont +contourcarpet > colorbar > tickfont > color +contourcarpet > colorbar > tickfont > family +contourcarpet > colorbar > tickfont > size +contourcarpet > colorbar > tickformat +contourcarpet > colorbar > tickformatstops +contourcarpet > colorbar > tickformatstops > items +contourcarpet > colorbar > tickformatstops > items > tickformatstop +contourcarpet > colorbar > ticklen +contourcarpet > colorbar > tickmode +contourcarpet > colorbar > tickprefix +contourcarpet > colorbar > ticks +contourcarpet > colorbar > ticksuffix +contourcarpet > colorbar > ticktext +contourcarpet > colorbar > tickvals +contourcarpet > colorbar > tickwidth +contourcarpet > colorbar > title +contourcarpet > colorbar > titlefont +contourcarpet > colorbar > titlefont > color +contourcarpet > colorbar > titlefont > family +contourcarpet > colorbar > titlefont > size +contourcarpet > colorbar > titleside +contourcarpet > colorbar > x +contourcarpet > colorbar > xanchor +contourcarpet > colorbar > xpad +contourcarpet > colorbar > y +contourcarpet > colorbar > yanchor +contourcarpet > colorbar > ypad +contourcarpet > colorscale +contourcarpet > contours +contourcarpet > contours > coloring +contourcarpet > contours > end +contourcarpet > contours > labelfont +contourcarpet > contours > labelfont > color +contourcarpet > contours > labelfont > family +contourcarpet > contours > labelfont > size +contourcarpet > contours > labelformat +contourcarpet > contours > operation +contourcarpet > contours > showlabels +contourcarpet > contours > showlines +contourcarpet > contours > size +contourcarpet > contours > start +contourcarpet > contours > type +contourcarpet > contours > value +contourcarpet > customdata +contourcarpet > da +contourcarpet > db +contourcarpet > fillcolor +contourcarpet > hoverinfo +contourcarpet > hoverlabel +contourcarpet > hoverlabel > bgcolor +contourcarpet > hoverlabel > bordercolor +contourcarpet > hoverlabel > font +contourcarpet > hoverlabel > font > color +contourcarpet > hoverlabel > font > family +contourcarpet > hoverlabel > font > size +contourcarpet > hoverlabel > namelength +contourcarpet > ids +contourcarpet > legendgroup +contourcarpet > line +contourcarpet > line > color +contourcarpet > line > dash +contourcarpet > line > smoothing +contourcarpet > line > width +contourcarpet > name +contourcarpet > ncontours +contourcarpet > opacity +contourcarpet > reversescale +contourcarpet > selectedpoints +contourcarpet > showlegend +contourcarpet > showscale +contourcarpet > stream +contourcarpet > stream > maxpoints +contourcarpet > stream > token +contourcarpet > text +contourcarpet > transforms +contourcarpet > transforms > items +contourcarpet > transforms > items > transform +contourcarpet > transpose +contourcarpet > type +contourcarpet > visible +contourcarpet > xaxis +contourcarpet > yaxis +contourcarpet > z +contourcarpet > zauto +contourcarpet > zmax +contourcarpet > zmin +heatmap +heatmap > autocolorscale +heatmap > colorbar +heatmap > colorbar > bgcolor +heatmap > colorbar > bordercolor +heatmap > colorbar > borderwidth +heatmap > colorbar > dtick +heatmap > colorbar > exponentformat +heatmap > colorbar > len +heatmap > colorbar > lenmode +heatmap > colorbar > nticks +heatmap > colorbar > outlinecolor +heatmap > colorbar > outlinewidth +heatmap > colorbar > separatethousands +heatmap > colorbar > showexponent +heatmap > colorbar > showticklabels +heatmap > colorbar > showtickprefix +heatmap > colorbar > showticksuffix +heatmap > colorbar > thickness +heatmap > colorbar > thicknessmode +heatmap > colorbar > tick0 +heatmap > colorbar > tickangle +heatmap > colorbar > tickcolor +heatmap > colorbar > tickfont +heatmap > colorbar > tickfont > color +heatmap > colorbar > tickfont > family +heatmap > colorbar > tickfont > size +heatmap > colorbar > tickformat +heatmap > colorbar > tickformatstops +heatmap > colorbar > tickformatstops > items +heatmap > colorbar > tickformatstops > items > tickformatstop +heatmap > colorbar > ticklen +heatmap > colorbar > tickmode +heatmap > colorbar > tickprefix +heatmap > colorbar > ticks +heatmap > colorbar > ticksuffix +heatmap > colorbar > ticktext +heatmap > colorbar > tickvals +heatmap > colorbar > tickwidth +heatmap > colorbar > title +heatmap > colorbar > titlefont +heatmap > colorbar > titlefont > color +heatmap > colorbar > titlefont > family +heatmap > colorbar > titlefont > size +heatmap > colorbar > titleside +heatmap > colorbar > x +heatmap > colorbar > xanchor +heatmap > colorbar > xpad +heatmap > colorbar > y +heatmap > colorbar > yanchor +heatmap > colorbar > ypad +heatmap > colorscale +heatmap > connectgaps +heatmap > customdata +heatmap > dx +heatmap > dy +heatmap > hoverinfo +heatmap > hoverlabel +heatmap > hoverlabel > bgcolor +heatmap > hoverlabel > bordercolor +heatmap > hoverlabel > font +heatmap > hoverlabel > font > color +heatmap > hoverlabel > font > family +heatmap > hoverlabel > font > size +heatmap > hoverlabel > namelength +heatmap > ids +heatmap > legendgroup +heatmap > name +heatmap > opacity +heatmap > reversescale +heatmap > selectedpoints +heatmap > showlegend +heatmap > showscale +heatmap > stream +heatmap > stream > maxpoints +heatmap > stream > token +heatmap > text +heatmap > transforms +heatmap > transforms > items +heatmap > transforms > items > transform +heatmap > transpose +heatmap > type +heatmap > visible +heatmap > x +heatmap > x0 +heatmap > xaxis +heatmap > xcalendar +heatmap > xgap +heatmap > xtype +heatmap > y +heatmap > y0 +heatmap > yaxis +heatmap > ycalendar +heatmap > ygap +heatmap > ytype +heatmap > z +heatmap > zauto +heatmap > zhoverformat +heatmap > zmax +heatmap > zmin +heatmap > zsmooth +heatmapgl +heatmapgl > autocolorscale +heatmapgl > colorbar +heatmapgl > colorbar > bgcolor +heatmapgl > colorbar > bordercolor +heatmapgl > colorbar > borderwidth +heatmapgl > colorbar > dtick +heatmapgl > colorbar > exponentformat +heatmapgl > colorbar > len +heatmapgl > colorbar > lenmode +heatmapgl > colorbar > nticks +heatmapgl > colorbar > outlinecolor +heatmapgl > colorbar > outlinewidth +heatmapgl > colorbar > separatethousands +heatmapgl > colorbar > showexponent +heatmapgl > colorbar > showticklabels +heatmapgl > colorbar > showtickprefix +heatmapgl > colorbar > showticksuffix +heatmapgl > colorbar > thickness +heatmapgl > colorbar > thicknessmode +heatmapgl > colorbar > tick0 +heatmapgl > colorbar > tickangle +heatmapgl > colorbar > tickcolor +heatmapgl > colorbar > tickfont +heatmapgl > colorbar > tickfont > color +heatmapgl > colorbar > tickfont > family +heatmapgl > colorbar > tickfont > size +heatmapgl > colorbar > tickformat +heatmapgl > colorbar > tickformatstops +heatmapgl > colorbar > tickformatstops > items +heatmapgl > colorbar > tickformatstops > items > tickformatstop +heatmapgl > colorbar > ticklen +heatmapgl > colorbar > tickmode +heatmapgl > colorbar > tickprefix +heatmapgl > colorbar > ticks +heatmapgl > colorbar > ticksuffix +heatmapgl > colorbar > ticktext +heatmapgl > colorbar > tickvals +heatmapgl > colorbar > tickwidth +heatmapgl > colorbar > title +heatmapgl > colorbar > titlefont +heatmapgl > colorbar > titlefont > color +heatmapgl > colorbar > titlefont > family +heatmapgl > colorbar > titlefont > size +heatmapgl > colorbar > titleside +heatmapgl > colorbar > x +heatmapgl > colorbar > xanchor +heatmapgl > colorbar > xpad +heatmapgl > colorbar > y +heatmapgl > colorbar > yanchor +heatmapgl > colorbar > ypad +heatmapgl > colorscale +heatmapgl > customdata +heatmapgl > dx +heatmapgl > dy +heatmapgl > hoverinfo +heatmapgl > hoverlabel +heatmapgl > hoverlabel > bgcolor +heatmapgl > hoverlabel > bordercolor +heatmapgl > hoverlabel > font +heatmapgl > hoverlabel > font > color +heatmapgl > hoverlabel > font > family +heatmapgl > hoverlabel > font > size +heatmapgl > hoverlabel > namelength +heatmapgl > ids +heatmapgl > legendgroup +heatmapgl > name +heatmapgl > opacity +heatmapgl > reversescale +heatmapgl > selectedpoints +heatmapgl > showlegend +heatmapgl > showscale +heatmapgl > stream +heatmapgl > stream > maxpoints +heatmapgl > stream > token +heatmapgl > text +heatmapgl > transforms +heatmapgl > transforms > items +heatmapgl > transforms > items > transform +heatmapgl > transpose +heatmapgl > type +heatmapgl > visible +heatmapgl > x +heatmapgl > x0 +heatmapgl > xaxis +heatmapgl > xtype +heatmapgl > y +heatmapgl > y0 +heatmapgl > yaxis +heatmapgl > ytype +heatmapgl > z +heatmapgl > zauto +heatmapgl > zmax +heatmapgl > zmin +histogram +histogram > _deprecated > bardir +histogram > autobinx +histogram > autobiny +histogram > cumulative +histogram > cumulative > currentbin +histogram > cumulative > direction +histogram > cumulative > enabled +histogram > customdata +histogram > error_x +histogram > error_x > array +histogram > error_x > arrayminus +histogram > error_x > color +histogram > error_x > copy_ystyle +histogram > error_x > symmetric +histogram > error_x > thickness +histogram > error_x > traceref +histogram > error_x > tracerefminus +histogram > error_x > type +histogram > error_x > value +histogram > error_x > valueminus +histogram > error_x > visible +histogram > error_x > width +histogram > error_y +histogram > error_y > array +histogram > error_y > arrayminus +histogram > error_y > color +histogram > error_y > symmetric +histogram > error_y > thickness +histogram > error_y > traceref +histogram > error_y > tracerefminus +histogram > error_y > type +histogram > error_y > value +histogram > error_y > valueminus +histogram > error_y > visible +histogram > error_y > width +histogram > histfunc +histogram > histnorm +histogram > hoverinfo +histogram > hoverlabel +histogram > hoverlabel > bgcolor +histogram > hoverlabel > bordercolor +histogram > hoverlabel > font +histogram > hoverlabel > font > color +histogram > hoverlabel > font > family +histogram > hoverlabel > font > size +histogram > hoverlabel > namelength +histogram > ids +histogram > legendgroup +histogram > marker +histogram > marker > autocolorscale +histogram > marker > cauto +histogram > marker > cmax +histogram > marker > cmin +histogram > marker > color +histogram > marker > colorbar +histogram > marker > colorbar > bgcolor +histogram > marker > colorbar > bordercolor +histogram > marker > colorbar > borderwidth +histogram > marker > colorbar > dtick +histogram > marker > colorbar > exponentformat +histogram > marker > colorbar > len +histogram > marker > colorbar > lenmode +histogram > marker > colorbar > nticks +histogram > marker > colorbar > outlinecolor +histogram > marker > colorbar > outlinewidth +histogram > marker > colorbar > separatethousands +histogram > marker > colorbar > showexponent +histogram > marker > colorbar > showticklabels +histogram > marker > colorbar > showtickprefix +histogram > marker > colorbar > showticksuffix +histogram > marker > colorbar > thickness +histogram > marker > colorbar > thicknessmode +histogram > marker > colorbar > tick0 +histogram > marker > colorbar > tickangle +histogram > marker > colorbar > tickcolor +histogram > marker > colorbar > tickfont +histogram > marker > colorbar > tickfont > color +histogram > marker > colorbar > tickfont > family +histogram > marker > colorbar > tickfont > size +histogram > marker > colorbar > tickformat +histogram > marker > colorbar > tickformatstops +histogram > marker > colorbar > tickformatstops > items +histogram > marker > colorbar > ticklen +histogram > marker > colorbar > tickmode +histogram > marker > colorbar > tickprefix +histogram > marker > colorbar > ticks +histogram > marker > colorbar > ticksuffix +histogram > marker > colorbar > ticktext +histogram > marker > colorbar > tickvals +histogram > marker > colorbar > tickwidth +histogram > marker > colorbar > title +histogram > marker > colorbar > titlefont +histogram > marker > colorbar > titlefont > color +histogram > marker > colorbar > titlefont > family +histogram > marker > colorbar > titlefont > size +histogram > marker > colorbar > titleside +histogram > marker > colorbar > x +histogram > marker > colorbar > xanchor +histogram > marker > colorbar > xpad +histogram > marker > colorbar > y +histogram > marker > colorbar > yanchor +histogram > marker > colorbar > ypad +histogram > marker > colorscale +histogram > marker > line +histogram > marker > line > autocolorscale +histogram > marker > line > cauto +histogram > marker > line > cmax +histogram > marker > line > cmin +histogram > marker > line > color +histogram > marker > line > colorscale +histogram > marker > line > reversescale +histogram > marker > line > width +histogram > marker > opacity +histogram > marker > reversescale +histogram > marker > showscale +histogram > name +histogram > nbinsx +histogram > nbinsy +histogram > opacity +histogram > orientation +histogram > selected +histogram > selected > marker +histogram > selected > marker > color +histogram > selected > marker > opacity +histogram > selected > textfont +histogram > selected > textfont > color +histogram > selectedpoints +histogram > showlegend +histogram > stream +histogram > stream > maxpoints +histogram > stream > token +histogram > text +histogram > transforms +histogram > transforms > items +histogram > transforms > items > transform +histogram > type +histogram > unselected +histogram > unselected > marker +histogram > unselected > marker > color +histogram > unselected > marker > opacity +histogram > unselected > textfont +histogram > unselected > textfont > color +histogram > visible +histogram > x +histogram > xaxis +histogram > xbins +histogram > xbins > end +histogram > xbins > size +histogram > xbins > start +histogram > xcalendar +histogram > y +histogram > yaxis +histogram > ybins +histogram > ybins > end +histogram > ybins > size +histogram > ybins > start +histogram > ycalendar +histogram2d +histogram2d > autobinx +histogram2d > autobiny +histogram2d > autocolorscale +histogram2d > colorbar +histogram2d > colorbar > bgcolor +histogram2d > colorbar > bordercolor +histogram2d > colorbar > borderwidth +histogram2d > colorbar > dtick +histogram2d > colorbar > exponentformat +histogram2d > colorbar > len +histogram2d > colorbar > lenmode +histogram2d > colorbar > nticks +histogram2d > colorbar > outlinecolor +histogram2d > colorbar > outlinewidth +histogram2d > colorbar > separatethousands +histogram2d > colorbar > showexponent +histogram2d > colorbar > showticklabels +histogram2d > colorbar > showtickprefix +histogram2d > colorbar > showticksuffix +histogram2d > colorbar > thickness +histogram2d > colorbar > thicknessmode +histogram2d > colorbar > tick0 +histogram2d > colorbar > tickangle +histogram2d > colorbar > tickcolor +histogram2d > colorbar > tickfont +histogram2d > colorbar > tickfont > color +histogram2d > colorbar > tickfont > family +histogram2d > colorbar > tickfont > size +histogram2d > colorbar > tickformat +histogram2d > colorbar > tickformatstops +histogram2d > colorbar > tickformatstops > items +histogram2d > colorbar > tickformatstops > items > tickformatstop +histogram2d > colorbar > ticklen +histogram2d > colorbar > tickmode +histogram2d > colorbar > tickprefix +histogram2d > colorbar > ticks +histogram2d > colorbar > ticksuffix +histogram2d > colorbar > ticktext +histogram2d > colorbar > tickvals +histogram2d > colorbar > tickwidth +histogram2d > colorbar > title +histogram2d > colorbar > titlefont +histogram2d > colorbar > titlefont > color +histogram2d > colorbar > titlefont > family +histogram2d > colorbar > titlefont > size +histogram2d > colorbar > titleside +histogram2d > colorbar > x +histogram2d > colorbar > xanchor +histogram2d > colorbar > xpad +histogram2d > colorbar > y +histogram2d > colorbar > yanchor +histogram2d > colorbar > ypad +histogram2d > colorscale +histogram2d > customdata +histogram2d > histfunc +histogram2d > histnorm +histogram2d > hoverinfo +histogram2d > hoverlabel +histogram2d > hoverlabel > bgcolor +histogram2d > hoverlabel > bordercolor +histogram2d > hoverlabel > font +histogram2d > hoverlabel > font > color +histogram2d > hoverlabel > font > family +histogram2d > hoverlabel > font > size +histogram2d > hoverlabel > namelength +histogram2d > ids +histogram2d > legendgroup +histogram2d > marker +histogram2d > marker > color +histogram2d > name +histogram2d > nbinsx +histogram2d > nbinsy +histogram2d > opacity +histogram2d > reversescale +histogram2d > selectedpoints +histogram2d > showlegend +histogram2d > showscale +histogram2d > stream +histogram2d > stream > maxpoints +histogram2d > stream > token +histogram2d > transforms +histogram2d > transforms > items +histogram2d > transforms > items > transform +histogram2d > type +histogram2d > visible +histogram2d > x +histogram2d > xaxis +histogram2d > xbins +histogram2d > xbins > end +histogram2d > xbins > size +histogram2d > xbins > start +histogram2d > xcalendar +histogram2d > xgap +histogram2d > y +histogram2d > yaxis +histogram2d > ybins +histogram2d > ybins > end +histogram2d > ybins > size +histogram2d > ybins > start +histogram2d > ycalendar +histogram2d > ygap +histogram2d > z +histogram2d > zauto +histogram2d > zhoverformat +histogram2d > zmax +histogram2d > zmin +histogram2d > zsmooth +histogram2dcontour +histogram2dcontour > autobinx +histogram2dcontour > autobiny +histogram2dcontour > autocolorscale +histogram2dcontour > autocontour +histogram2dcontour > colorbar +histogram2dcontour > colorbar > bgcolor +histogram2dcontour > colorbar > bordercolor +histogram2dcontour > colorbar > borderwidth +histogram2dcontour > colorbar > dtick +histogram2dcontour > colorbar > exponentformat +histogram2dcontour > colorbar > len +histogram2dcontour > colorbar > lenmode +histogram2dcontour > colorbar > nticks +histogram2dcontour > colorbar > outlinecolor +histogram2dcontour > colorbar > outlinewidth +histogram2dcontour > colorbar > separatethousands +histogram2dcontour > colorbar > showexponent +histogram2dcontour > colorbar > showticklabels +histogram2dcontour > colorbar > showtickprefix +histogram2dcontour > colorbar > showticksuffix +histogram2dcontour > colorbar > thickness +histogram2dcontour > colorbar > thicknessmode +histogram2dcontour > colorbar > tick0 +histogram2dcontour > colorbar > tickangle +histogram2dcontour > colorbar > tickcolor +histogram2dcontour > colorbar > tickfont +histogram2dcontour > colorbar > tickfont > color +histogram2dcontour > colorbar > tickfont > family +histogram2dcontour > colorbar > tickfont > size +histogram2dcontour > colorbar > tickformat +histogram2dcontour > colorbar > tickformatstops +histogram2dcontour > colorbar > tickformatstops > items +histogram2dcontour > colorbar > tickformatstops > items > tickformatstop +histogram2dcontour > colorbar > ticklen +histogram2dcontour > colorbar > tickmode +histogram2dcontour > colorbar > tickprefix +histogram2dcontour > colorbar > ticks +histogram2dcontour > colorbar > ticksuffix +histogram2dcontour > colorbar > ticktext +histogram2dcontour > colorbar > tickvals +histogram2dcontour > colorbar > tickwidth +histogram2dcontour > colorbar > title +histogram2dcontour > colorbar > titlefont +histogram2dcontour > colorbar > titlefont > color +histogram2dcontour > colorbar > titlefont > family +histogram2dcontour > colorbar > titlefont > size +histogram2dcontour > colorbar > titleside +histogram2dcontour > colorbar > x +histogram2dcontour > colorbar > xanchor +histogram2dcontour > colorbar > xpad +histogram2dcontour > colorbar > y +histogram2dcontour > colorbar > yanchor +histogram2dcontour > colorbar > ypad +histogram2dcontour > colorscale +histogram2dcontour > contours +histogram2dcontour > contours > coloring +histogram2dcontour > contours > end +histogram2dcontour > contours > labelfont +histogram2dcontour > contours > labelfont > color +histogram2dcontour > contours > labelfont > family +histogram2dcontour > contours > labelfont > size +histogram2dcontour > contours > labelformat +histogram2dcontour > contours > operation +histogram2dcontour > contours > showlabels +histogram2dcontour > contours > showlines +histogram2dcontour > contours > size +histogram2dcontour > contours > start +histogram2dcontour > contours > type +histogram2dcontour > contours > value +histogram2dcontour > customdata +histogram2dcontour > histfunc +histogram2dcontour > histnorm +histogram2dcontour > hoverinfo +histogram2dcontour > hoverlabel +histogram2dcontour > hoverlabel > bgcolor +histogram2dcontour > hoverlabel > bordercolor +histogram2dcontour > hoverlabel > font +histogram2dcontour > hoverlabel > font > color +histogram2dcontour > hoverlabel > font > family +histogram2dcontour > hoverlabel > font > size +histogram2dcontour > hoverlabel > namelength +histogram2dcontour > ids +histogram2dcontour > legendgroup +histogram2dcontour > line +histogram2dcontour > line > color +histogram2dcontour > line > dash +histogram2dcontour > line > smoothing +histogram2dcontour > line > width +histogram2dcontour > marker +histogram2dcontour > marker > color +histogram2dcontour > name +histogram2dcontour > nbinsx +histogram2dcontour > nbinsy +histogram2dcontour > ncontours +histogram2dcontour > opacity +histogram2dcontour > reversescale +histogram2dcontour > selectedpoints +histogram2dcontour > showlegend +histogram2dcontour > showscale +histogram2dcontour > stream +histogram2dcontour > stream > maxpoints +histogram2dcontour > stream > token +histogram2dcontour > transforms +histogram2dcontour > transforms > items +histogram2dcontour > transforms > items > transform +histogram2dcontour > type +histogram2dcontour > visible +histogram2dcontour > x +histogram2dcontour > xaxis +histogram2dcontour > xbins +histogram2dcontour > xbins > end +histogram2dcontour > xbins > size +histogram2dcontour > xbins > start +histogram2dcontour > xcalendar +histogram2dcontour > y +histogram2dcontour > yaxis +histogram2dcontour > ybins +histogram2dcontour > ybins > end +histogram2dcontour > ybins > size +histogram2dcontour > ybins > start +histogram2dcontour > ycalendar +histogram2dcontour > z +histogram2dcontour > zauto +histogram2dcontour > zhoverformat +histogram2dcontour > zmax +histogram2dcontour > zmin +mesh3d +mesh3d > alphahull +mesh3d > autocolorscale +mesh3d > cauto +mesh3d > cmax +mesh3d > cmin +mesh3d > color +mesh3d > colorbar +mesh3d > colorbar > bgcolor +mesh3d > colorbar > bordercolor +mesh3d > colorbar > borderwidth +mesh3d > colorbar > dtick +mesh3d > colorbar > exponentformat +mesh3d > colorbar > len +mesh3d > colorbar > lenmode +mesh3d > colorbar > nticks +mesh3d > colorbar > outlinecolor +mesh3d > colorbar > outlinewidth +mesh3d > colorbar > separatethousands +mesh3d > colorbar > showexponent +mesh3d > colorbar > showticklabels +mesh3d > colorbar > showtickprefix +mesh3d > colorbar > showticksuffix +mesh3d > colorbar > thickness +mesh3d > colorbar > thicknessmode +mesh3d > colorbar > tick0 +mesh3d > colorbar > tickangle +mesh3d > colorbar > tickcolor +mesh3d > colorbar > tickfont +mesh3d > colorbar > tickfont > color +mesh3d > colorbar > tickfont > family +mesh3d > colorbar > tickfont > size +mesh3d > colorbar > tickformat +mesh3d > colorbar > tickformatstops +mesh3d > colorbar > tickformatstops > items +mesh3d > colorbar > tickformatstops > items > tickformatstop +mesh3d > colorbar > ticklen +mesh3d > colorbar > tickmode +mesh3d > colorbar > tickprefix +mesh3d > colorbar > ticks +mesh3d > colorbar > ticksuffix +mesh3d > colorbar > ticktext +mesh3d > colorbar > tickvals +mesh3d > colorbar > tickwidth +mesh3d > colorbar > title +mesh3d > colorbar > titlefont +mesh3d > colorbar > titlefont > color +mesh3d > colorbar > titlefont > family +mesh3d > colorbar > titlefont > size +mesh3d > colorbar > titleside +mesh3d > colorbar > x +mesh3d > colorbar > xanchor +mesh3d > colorbar > xpad +mesh3d > colorbar > y +mesh3d > colorbar > yanchor +mesh3d > colorbar > ypad +mesh3d > colorscale +mesh3d > contour +mesh3d > contour > color +mesh3d > contour > show +mesh3d > contour > width +mesh3d > customdata +mesh3d > delaunayaxis +mesh3d > facecolor +mesh3d > flatshading +mesh3d > hoverinfo +mesh3d > hoverlabel +mesh3d > hoverlabel > bgcolor +mesh3d > hoverlabel > bordercolor +mesh3d > hoverlabel > font +mesh3d > hoverlabel > font > color +mesh3d > hoverlabel > font > family +mesh3d > hoverlabel > font > size +mesh3d > hoverlabel > namelength +mesh3d > i +mesh3d > ids +mesh3d > intensity +mesh3d > j +mesh3d > k +mesh3d > legendgroup +mesh3d > lighting +mesh3d > lighting > ambient +mesh3d > lighting > diffuse +mesh3d > lighting > facenormalsepsilon +mesh3d > lighting > fresnel +mesh3d > lighting > roughness +mesh3d > lighting > specular +mesh3d > lighting > vertexnormalsepsilon +mesh3d > lightposition +mesh3d > lightposition > x +mesh3d > lightposition > y +mesh3d > lightposition > z +mesh3d > name +mesh3d > opacity +mesh3d > reversescale +mesh3d > scene +mesh3d > selectedpoints +mesh3d > showlegend +mesh3d > showscale +mesh3d > stream +mesh3d > stream > maxpoints +mesh3d > stream > token +mesh3d > text +mesh3d > transforms +mesh3d > transforms > items +mesh3d > transforms > items > transform +mesh3d > type +mesh3d > vertexcolor +mesh3d > visible +mesh3d > x +mesh3d > xcalendar +mesh3d > y +mesh3d > ycalendar +mesh3d > z +mesh3d > zcalendar +ohlc +ohlc > close +ohlc > customdata +ohlc > decreasing +ohlc > decreasing > line +ohlc > decreasing > line > color +ohlc > decreasing > line > dash +ohlc > decreasing > line > width +ohlc > high +ohlc > hoverinfo +ohlc > hoverlabel +ohlc > hoverlabel > bgcolor +ohlc > hoverlabel > bordercolor +ohlc > hoverlabel > font +ohlc > hoverlabel > font > color +ohlc > hoverlabel > font > family +ohlc > hoverlabel > font > size +ohlc > hoverlabel > namelength +ohlc > ids +ohlc > increasing +ohlc > increasing > line +ohlc > increasing > line > color +ohlc > increasing > line > dash +ohlc > increasing > line > width +ohlc > legendgroup +ohlc > line +ohlc > line > dash +ohlc > line > width +ohlc > low +ohlc > name +ohlc > opacity +ohlc > open +ohlc > selectedpoints +ohlc > showlegend +ohlc > stream +ohlc > stream > maxpoints +ohlc > stream > token +ohlc > text +ohlc > tickwidth +ohlc > transforms +ohlc > transforms > items +ohlc > transforms > items > transform +ohlc > type +ohlc > visible +ohlc > x +ohlc > xaxis +ohlc > xcalendar +ohlc > yaxis +parcoords +parcoords > customdata +parcoords > dimensions +parcoords > dimensions > items +parcoords > dimensions > items > dimension +parcoords > dimensions > items > dimension > constraintrange +parcoords > dimensions > items > dimension > label +parcoords > dimensions > items > dimension > multiselect +parcoords > dimensions > items > dimension > name +parcoords > dimensions > items > dimension > range +parcoords > dimensions > items > dimension > templateitemname +parcoords > dimensions > items > dimension > tickformat +parcoords > dimensions > items > dimension > ticktext +parcoords > dimensions > items > dimension > tickvals +parcoords > dimensions > items > dimension > values +parcoords > dimensions > items > dimension > visible +parcoords > domain +parcoords > domain > column +parcoords > domain > row +parcoords > domain > x +parcoords > domain > y +parcoords > hoverinfo +parcoords > hoverlabel +parcoords > hoverlabel > bgcolor +parcoords > hoverlabel > bordercolor +parcoords > hoverlabel > font +parcoords > hoverlabel > font > color +parcoords > hoverlabel > font > family +parcoords > hoverlabel > font > size +parcoords > hoverlabel > namelength +parcoords > ids +parcoords > labelfont +parcoords > labelfont > color +parcoords > labelfont > family +parcoords > labelfont > size +parcoords > legendgroup +parcoords > line +parcoords > line > autocolorscale +parcoords > line > cauto +parcoords > line > cmax +parcoords > line > cmin +parcoords > line > color +parcoords > line > colorbar +parcoords > line > colorbar > bgcolor +parcoords > line > colorbar > bordercolor +parcoords > line > colorbar > borderwidth +parcoords > line > colorbar > dtick +parcoords > line > colorbar > exponentformat +parcoords > line > colorbar > len +parcoords > line > colorbar > lenmode +parcoords > line > colorbar > nticks +parcoords > line > colorbar > outlinecolor +parcoords > line > colorbar > outlinewidth +parcoords > line > colorbar > separatethousands +parcoords > line > colorbar > showexponent +parcoords > line > colorbar > showticklabels +parcoords > line > colorbar > showtickprefix +parcoords > line > colorbar > showticksuffix +parcoords > line > colorbar > thickness +parcoords > line > colorbar > thicknessmode +parcoords > line > colorbar > tick0 +parcoords > line > colorbar > tickangle +parcoords > line > colorbar > tickcolor +parcoords > line > colorbar > tickfont +parcoords > line > colorbar > tickfont > color +parcoords > line > colorbar > tickfont > family +parcoords > line > colorbar > tickfont > size +parcoords > line > colorbar > tickformat +parcoords > line > colorbar > tickformatstops +parcoords > line > colorbar > tickformatstops > items +parcoords > line > colorbar > ticklen +parcoords > line > colorbar > tickmode +parcoords > line > colorbar > tickprefix +parcoords > line > colorbar > ticks +parcoords > line > colorbar > ticksuffix +parcoords > line > colorbar > ticktext +parcoords > line > colorbar > tickvals +parcoords > line > colorbar > tickwidth +parcoords > line > colorbar > title +parcoords > line > colorbar > titlefont +parcoords > line > colorbar > titlefont > color +parcoords > line > colorbar > titlefont > family +parcoords > line > colorbar > titlefont > size +parcoords > line > colorbar > titleside +parcoords > line > colorbar > x +parcoords > line > colorbar > xanchor +parcoords > line > colorbar > xpad +parcoords > line > colorbar > y +parcoords > line > colorbar > yanchor +parcoords > line > colorbar > ypad +parcoords > line > colorscale +parcoords > line > reversescale +parcoords > line > showscale +parcoords > name +parcoords > opacity +parcoords > rangefont +parcoords > rangefont > color +parcoords > rangefont > family +parcoords > rangefont > size +parcoords > selectedpoints +parcoords > showlegend +parcoords > stream +parcoords > stream > maxpoints +parcoords > stream > token +parcoords > tickfont +parcoords > tickfont > color +parcoords > tickfont > family +parcoords > tickfont > size +parcoords > transforms +parcoords > transforms > items +parcoords > transforms > items > transform +parcoords > type +parcoords > visible +pie +pie > customdata +pie > direction +pie > dlabel +pie > domain +pie > domain > column +pie > domain > row +pie > domain > x +pie > domain > y +pie > hole +pie > hoverinfo +pie > hoverlabel +pie > hoverlabel > bgcolor +pie > hoverlabel > bordercolor +pie > hoverlabel > font +pie > hoverlabel > font > color +pie > hoverlabel > font > family +pie > hoverlabel > font > size +pie > hoverlabel > namelength +pie > hovertext +pie > ids +pie > insidetextfont +pie > insidetextfont > color +pie > insidetextfont > family +pie > insidetextfont > size +pie > label0 +pie > labels +pie > legendgroup +pie > marker +pie > marker > colors +pie > marker > line +pie > marker > line > color +pie > marker > line > width +pie > name +pie > opacity +pie > outsidetextfont +pie > outsidetextfont > color +pie > outsidetextfont > family +pie > outsidetextfont > size +pie > pull +pie > rotation +pie > scalegroup +pie > selectedpoints +pie > showlegend +pie > sort +pie > stream +pie > stream > maxpoints +pie > stream > token +pie > text +pie > textfont +pie > textfont > color +pie > textfont > family +pie > textfont > size +pie > textinfo +pie > textposition +pie > transforms +pie > transforms > items +pie > transforms > items > transform +pie > type +pie > values +pie > visible +pointcloud +pointcloud > customdata +pointcloud > hoverinfo +pointcloud > hoverlabel +pointcloud > hoverlabel > bgcolor +pointcloud > hoverlabel > bordercolor +pointcloud > hoverlabel > font +pointcloud > hoverlabel > font > color +pointcloud > hoverlabel > font > family +pointcloud > hoverlabel > font > size +pointcloud > hoverlabel > namelength +pointcloud > ids +pointcloud > indices +pointcloud > legendgroup +pointcloud > marker +pointcloud > marker > blend +pointcloud > marker > border +pointcloud > marker > border > arearatio +pointcloud > marker > border > color +pointcloud > marker > color +pointcloud > marker > opacity +pointcloud > marker > sizemax +pointcloud > marker > sizemin +pointcloud > name +pointcloud > opacity +pointcloud > selectedpoints +pointcloud > showlegend +pointcloud > stream +pointcloud > stream > maxpoints +pointcloud > stream > token +pointcloud > text +pointcloud > transforms +pointcloud > transforms > items +pointcloud > transforms > items > transform +pointcloud > type +pointcloud > visible +pointcloud > x +pointcloud > xaxis +pointcloud > xbounds +pointcloud > xy +pointcloud > y +pointcloud > yaxis +pointcloud > ybounds +sankey +sankey > arrangement +sankey > customdata +sankey > domain +sankey > domain > column +sankey > domain > row +sankey > domain > x +sankey > domain > y +sankey > hoverinfo +sankey > hoverlabel +sankey > hoverlabel > bgcolor +sankey > hoverlabel > bordercolor +sankey > hoverlabel > font +sankey > hoverlabel > font > color +sankey > hoverlabel > font > family +sankey > hoverlabel > font > size +sankey > hoverlabel > namelength +sankey > ids +sankey > legendgroup +sankey > link +sankey > link > color +sankey > link > label +sankey > link > line +sankey > link > line > color +sankey > link > line > width +sankey > link > source +sankey > link > target +sankey > link > value +sankey > name +sankey > node +sankey > node > color +sankey > node > label +sankey > node > line +sankey > node > line > color +sankey > node > line > width +sankey > node > pad +sankey > node > thickness +sankey > opacity +sankey > orientation +sankey > selectedpoints +sankey > showlegend +sankey > stream +sankey > stream > maxpoints +sankey > stream > token +sankey > textfont +sankey > textfont > color +sankey > textfont > family +sankey > textfont > size +sankey > transforms +sankey > transforms > items +sankey > transforms > items > transform +sankey > type +sankey > valueformat +sankey > valuesuffix +sankey > visible +scatter +scatter > cliponaxis +scatter > connectgaps +scatter > customdata +scatter > dx +scatter > dy +scatter > error_x +scatter > error_x > array +scatter > error_x > arrayminus +scatter > error_x > color +scatter > error_x > copy_ystyle +scatter > error_x > symmetric +scatter > error_x > thickness +scatter > error_x > traceref +scatter > error_x > tracerefminus +scatter > error_x > type +scatter > error_x > value +scatter > error_x > valueminus +scatter > error_x > visible +scatter > error_x > width +scatter > error_y +scatter > error_y > array +scatter > error_y > arrayminus +scatter > error_y > color +scatter > error_y > symmetric +scatter > error_y > thickness +scatter > error_y > traceref +scatter > error_y > tracerefminus +scatter > error_y > type +scatter > error_y > value +scatter > error_y > valueminus +scatter > error_y > visible +scatter > error_y > width +scatter > fill +scatter > fillcolor +scatter > groupnorm +scatter > hoverinfo +scatter > hoverlabel +scatter > hoverlabel > bgcolor +scatter > hoverlabel > bordercolor +scatter > hoverlabel > font +scatter > hoverlabel > font > color +scatter > hoverlabel > font > family +scatter > hoverlabel > font > size +scatter > hoverlabel > namelength +scatter > hoveron +scatter > hovertext +scatter > ids +scatter > legendgroup +scatter > line +scatter > line > color +scatter > line > dash +scatter > line > shape +scatter > line > simplify +scatter > line > smoothing +scatter > line > width +scatter > marker +scatter > marker > autocolorscale +scatter > marker > cauto +scatter > marker > cmax +scatter > marker > cmin +scatter > marker > color +scatter > marker > colorbar +scatter > marker > colorbar > bgcolor +scatter > marker > colorbar > bordercolor +scatter > marker > colorbar > borderwidth +scatter > marker > colorbar > dtick +scatter > marker > colorbar > exponentformat +scatter > marker > colorbar > len +scatter > marker > colorbar > lenmode +scatter > marker > colorbar > nticks +scatter > marker > colorbar > outlinecolor +scatter > marker > colorbar > outlinewidth +scatter > marker > colorbar > separatethousands +scatter > marker > colorbar > showexponent +scatter > marker > colorbar > showticklabels +scatter > marker > colorbar > showtickprefix +scatter > marker > colorbar > showticksuffix +scatter > marker > colorbar > thickness +scatter > marker > colorbar > thicknessmode +scatter > marker > colorbar > tick0 +scatter > marker > colorbar > tickangle +scatter > marker > colorbar > tickcolor +scatter > marker > colorbar > tickfont +scatter > marker > colorbar > tickfont > color +scatter > marker > colorbar > tickfont > family +scatter > marker > colorbar > tickfont > size +scatter > marker > colorbar > tickformat +scatter > marker > colorbar > tickformatstops +scatter > marker > colorbar > tickformatstops > items +scatter > marker > colorbar > ticklen +scatter > marker > colorbar > tickmode +scatter > marker > colorbar > tickprefix +scatter > marker > colorbar > ticks +scatter > marker > colorbar > ticksuffix +scatter > marker > colorbar > ticktext +scatter > marker > colorbar > tickvals +scatter > marker > colorbar > tickwidth +scatter > marker > colorbar > title +scatter > marker > colorbar > titlefont +scatter > marker > colorbar > titlefont > color +scatter > marker > colorbar > titlefont > family +scatter > marker > colorbar > titlefont > size +scatter > marker > colorbar > titleside +scatter > marker > colorbar > x +scatter > marker > colorbar > xanchor +scatter > marker > colorbar > xpad +scatter > marker > colorbar > y +scatter > marker > colorbar > yanchor +scatter > marker > colorbar > ypad +scatter > marker > colorscale +scatter > marker > gradient +scatter > marker > gradient > color +scatter > marker > gradient > type +scatter > marker > line +scatter > marker > line > autocolorscale +scatter > marker > line > cauto +scatter > marker > line > cmax +scatter > marker > line > cmin +scatter > marker > line > color +scatter > marker > line > colorscale +scatter > marker > line > reversescale +scatter > marker > line > width +scatter > marker > maxdisplayed +scatter > marker > opacity +scatter > marker > reversescale +scatter > marker > showscale +scatter > marker > size +scatter > marker > sizemin +scatter > marker > sizemode +scatter > marker > sizeref +scatter > marker > symbol +scatter > mode +scatter > name +scatter > opacity +scatter > orientation +scatter > r +scatter > selected +scatter > selected > marker +scatter > selected > marker > color +scatter > selected > marker > opacity +scatter > selected > marker > size +scatter > selected > textfont +scatter > selected > textfont > color +scatter > selectedpoints +scatter > showlegend +scatter > stackgaps +scatter > stackgroup +scatter > stream +scatter > stream > maxpoints +scatter > stream > token +scatter > t +scatter > text +scatter > textfont +scatter > textfont > color +scatter > textfont > family +scatter > textfont > size +scatter > textposition +scatter > transforms +scatter > transforms > items +scatter > transforms > items > transform +scatter > type +scatter > unselected +scatter > unselected > marker +scatter > unselected > marker > color +scatter > unselected > marker > opacity +scatter > unselected > marker > size +scatter > unselected > textfont +scatter > unselected > textfont > color +scatter > visible +scatter > x +scatter > x0 +scatter > xaxis +scatter > xcalendar +scatter > y +scatter > y0 +scatter > yaxis +scatter > ycalendar +scatter3d +scatter3d > connectgaps +scatter3d > customdata +scatter3d > error_x +scatter3d > error_x > array +scatter3d > error_x > arrayminus +scatter3d > error_x > color +scatter3d > error_x > copy_zstyle +scatter3d > error_x > symmetric +scatter3d > error_x > thickness +scatter3d > error_x > traceref +scatter3d > error_x > tracerefminus +scatter3d > error_x > type +scatter3d > error_x > value +scatter3d > error_x > valueminus +scatter3d > error_x > visible +scatter3d > error_x > width +scatter3d > error_y +scatter3d > error_y > array +scatter3d > error_y > arrayminus +scatter3d > error_y > color +scatter3d > error_y > copy_zstyle +scatter3d > error_y > symmetric +scatter3d > error_y > thickness +scatter3d > error_y > traceref +scatter3d > error_y > tracerefminus +scatter3d > error_y > type +scatter3d > error_y > value +scatter3d > error_y > valueminus +scatter3d > error_y > visible +scatter3d > error_y > width +scatter3d > error_z +scatter3d > error_z > array +scatter3d > error_z > arrayminus +scatter3d > error_z > color +scatter3d > error_z > symmetric +scatter3d > error_z > thickness +scatter3d > error_z > traceref +scatter3d > error_z > tracerefminus +scatter3d > error_z > type +scatter3d > error_z > value +scatter3d > error_z > valueminus +scatter3d > error_z > visible +scatter3d > error_z > width +scatter3d > hoverinfo +scatter3d > hoverlabel +scatter3d > hoverlabel > bgcolor +scatter3d > hoverlabel > bordercolor +scatter3d > hoverlabel > font +scatter3d > hoverlabel > font > color +scatter3d > hoverlabel > font > family +scatter3d > hoverlabel > font > size +scatter3d > hoverlabel > namelength +scatter3d > hovertext +scatter3d > ids +scatter3d > legendgroup +scatter3d > line +scatter3d > line > autocolorscale +scatter3d > line > cauto +scatter3d > line > cmax +scatter3d > line > cmin +scatter3d > line > color +scatter3d > line > colorscale +scatter3d > line > dash +scatter3d > line > reversescale +scatter3d > line > width +scatter3d > marker +scatter3d > marker > autocolorscale +scatter3d > marker > cauto +scatter3d > marker > cmax +scatter3d > marker > cmin +scatter3d > marker > color +scatter3d > marker > colorbar +scatter3d > marker > colorbar > bgcolor +scatter3d > marker > colorbar > bordercolor +scatter3d > marker > colorbar > borderwidth +scatter3d > marker > colorbar > dtick +scatter3d > marker > colorbar > exponentformat +scatter3d > marker > colorbar > len +scatter3d > marker > colorbar > lenmode +scatter3d > marker > colorbar > nticks +scatter3d > marker > colorbar > outlinecolor +scatter3d > marker > colorbar > outlinewidth +scatter3d > marker > colorbar > separatethousands +scatter3d > marker > colorbar > showexponent +scatter3d > marker > colorbar > showticklabels +scatter3d > marker > colorbar > showtickprefix +scatter3d > marker > colorbar > showticksuffix +scatter3d > marker > colorbar > thickness +scatter3d > marker > colorbar > thicknessmode +scatter3d > marker > colorbar > tick0 +scatter3d > marker > colorbar > tickangle +scatter3d > marker > colorbar > tickcolor +scatter3d > marker > colorbar > tickfont +scatter3d > marker > colorbar > tickfont > color +scatter3d > marker > colorbar > tickfont > family +scatter3d > marker > colorbar > tickfont > size +scatter3d > marker > colorbar > tickformat +scatter3d > marker > colorbar > tickformatstops +scatter3d > marker > colorbar > tickformatstops > items +scatter3d > marker > colorbar > ticklen +scatter3d > marker > colorbar > tickmode +scatter3d > marker > colorbar > tickprefix +scatter3d > marker > colorbar > ticks +scatter3d > marker > colorbar > ticksuffix +scatter3d > marker > colorbar > ticktext +scatter3d > marker > colorbar > tickvals +scatter3d > marker > colorbar > tickwidth +scatter3d > marker > colorbar > title +scatter3d > marker > colorbar > titlefont +scatter3d > marker > colorbar > titlefont > color +scatter3d > marker > colorbar > titlefont > family +scatter3d > marker > colorbar > titlefont > size +scatter3d > marker > colorbar > titleside +scatter3d > marker > colorbar > x +scatter3d > marker > colorbar > xanchor +scatter3d > marker > colorbar > xpad +scatter3d > marker > colorbar > y +scatter3d > marker > colorbar > yanchor +scatter3d > marker > colorbar > ypad +scatter3d > marker > colorscale +scatter3d > marker > line +scatter3d > marker > line > autocolorscale +scatter3d > marker > line > cauto +scatter3d > marker > line > cmax +scatter3d > marker > line > cmin +scatter3d > marker > line > color +scatter3d > marker > line > colorscale +scatter3d > marker > line > reversescale +scatter3d > marker > line > width +scatter3d > marker > opacity +scatter3d > marker > reversescale +scatter3d > marker > showscale +scatter3d > marker > size +scatter3d > marker > sizemin +scatter3d > marker > sizemode +scatter3d > marker > sizeref +scatter3d > marker > symbol +scatter3d > mode +scatter3d > name +scatter3d > opacity +scatter3d > projection +scatter3d > projection > x +scatter3d > projection > x > opacity +scatter3d > projection > x > scale +scatter3d > projection > x > show +scatter3d > projection > y +scatter3d > projection > y > opacity +scatter3d > projection > y > scale +scatter3d > projection > y > show +scatter3d > projection > z +scatter3d > projection > z > opacity +scatter3d > projection > z > scale +scatter3d > projection > z > show +scatter3d > scene +scatter3d > selectedpoints +scatter3d > showlegend +scatter3d > stream +scatter3d > stream > maxpoints +scatter3d > stream > token +scatter3d > surfaceaxis +scatter3d > surfacecolor +scatter3d > text +scatter3d > textfont +scatter3d > textfont > color +scatter3d > textfont > family +scatter3d > textfont > size +scatter3d > textposition +scatter3d > transforms +scatter3d > transforms > items +scatter3d > transforms > items > transform +scatter3d > type +scatter3d > visible +scatter3d > x +scatter3d > xcalendar +scatter3d > y +scatter3d > ycalendar +scatter3d > z +scatter3d > zcalendar +scattercarpet +scattercarpet > a +scattercarpet > b +scattercarpet > carpet +scattercarpet > connectgaps +scattercarpet > customdata +scattercarpet > fill +scattercarpet > fillcolor +scattercarpet > hoverinfo +scattercarpet > hoverlabel +scattercarpet > hoverlabel > bgcolor +scattercarpet > hoverlabel > bordercolor +scattercarpet > hoverlabel > font +scattercarpet > hoverlabel > font > color +scattercarpet > hoverlabel > font > family +scattercarpet > hoverlabel > font > size +scattercarpet > hoverlabel > namelength +scattercarpet > hoveron +scattercarpet > ids +scattercarpet > legendgroup +scattercarpet > line +scattercarpet > line > color +scattercarpet > line > dash +scattercarpet > line > shape +scattercarpet > line > smoothing +scattercarpet > line > width +scattercarpet > marker +scattercarpet > marker > autocolorscale +scattercarpet > marker > cauto +scattercarpet > marker > cmax +scattercarpet > marker > cmin +scattercarpet > marker > color +scattercarpet > marker > colorbar +scattercarpet > marker > colorbar > bgcolor +scattercarpet > marker > colorbar > bordercolor +scattercarpet > marker > colorbar > borderwidth +scattercarpet > marker > colorbar > dtick +scattercarpet > marker > colorbar > exponentformat +scattercarpet > marker > colorbar > len +scattercarpet > marker > colorbar > lenmode +scattercarpet > marker > colorbar > nticks +scattercarpet > marker > colorbar > outlinecolor +scattercarpet > marker > colorbar > outlinewidth +scattercarpet > marker > colorbar > separatethousands +scattercarpet > marker > colorbar > showexponent +scattercarpet > marker > colorbar > showticklabels +scattercarpet > marker > colorbar > showtickprefix +scattercarpet > marker > colorbar > showticksuffix +scattercarpet > marker > colorbar > thickness +scattercarpet > marker > colorbar > thicknessmode +scattercarpet > marker > colorbar > tick0 +scattercarpet > marker > colorbar > tickangle +scattercarpet > marker > colorbar > tickcolor +scattercarpet > marker > colorbar > tickfont +scattercarpet > marker > colorbar > tickfont > color +scattercarpet > marker > colorbar > tickfont > family +scattercarpet > marker > colorbar > tickfont > size +scattercarpet > marker > colorbar > tickformat +scattercarpet > marker > colorbar > tickformatstops +scattercarpet > marker > colorbar > tickformatstops > items +scattercarpet > marker > colorbar > ticklen +scattercarpet > marker > colorbar > tickmode +scattercarpet > marker > colorbar > tickprefix +scattercarpet > marker > colorbar > ticks +scattercarpet > marker > colorbar > ticksuffix +scattercarpet > marker > colorbar > ticktext +scattercarpet > marker > colorbar > tickvals +scattercarpet > marker > colorbar > tickwidth +scattercarpet > marker > colorbar > title +scattercarpet > marker > colorbar > titlefont +scattercarpet > marker > colorbar > titlefont > color +scattercarpet > marker > colorbar > titlefont > family +scattercarpet > marker > colorbar > titlefont > size +scattercarpet > marker > colorbar > titleside +scattercarpet > marker > colorbar > x +scattercarpet > marker > colorbar > xanchor +scattercarpet > marker > colorbar > xpad +scattercarpet > marker > colorbar > y +scattercarpet > marker > colorbar > yanchor +scattercarpet > marker > colorbar > ypad +scattercarpet > marker > colorscale +scattercarpet > marker > gradient +scattercarpet > marker > gradient > color +scattercarpet > marker > gradient > type +scattercarpet > marker > line +scattercarpet > marker > line > autocolorscale +scattercarpet > marker > line > cauto +scattercarpet > marker > line > cmax +scattercarpet > marker > line > cmin +scattercarpet > marker > line > color +scattercarpet > marker > line > colorscale +scattercarpet > marker > line > reversescale +scattercarpet > marker > line > width +scattercarpet > marker > maxdisplayed +scattercarpet > marker > opacity +scattercarpet > marker > reversescale +scattercarpet > marker > showscale +scattercarpet > marker > size +scattercarpet > marker > sizemin +scattercarpet > marker > sizemode +scattercarpet > marker > sizeref +scattercarpet > marker > symbol +scattercarpet > mode +scattercarpet > name +scattercarpet > opacity +scattercarpet > selected +scattercarpet > selected > marker +scattercarpet > selected > marker > color +scattercarpet > selected > marker > opacity +scattercarpet > selected > marker > size +scattercarpet > selected > textfont +scattercarpet > selected > textfont > color +scattercarpet > selectedpoints +scattercarpet > showlegend +scattercarpet > stream +scattercarpet > stream > maxpoints +scattercarpet > stream > token +scattercarpet > text +scattercarpet > textfont +scattercarpet > textfont > color +scattercarpet > textfont > family +scattercarpet > textfont > size +scattercarpet > textposition +scattercarpet > transforms +scattercarpet > transforms > items +scattercarpet > transforms > items > transform +scattercarpet > type +scattercarpet > unselected +scattercarpet > unselected > marker +scattercarpet > unselected > marker > color +scattercarpet > unselected > marker > opacity +scattercarpet > unselected > marker > size +scattercarpet > unselected > textfont +scattercarpet > unselected > textfont > color +scattercarpet > visible +scattercarpet > xaxis +scattercarpet > yaxis +scattergeo +scattergeo > connectgaps +scattergeo > customdata +scattergeo > fill +scattergeo > fillcolor +scattergeo > geo +scattergeo > hoverinfo +scattergeo > hoverlabel +scattergeo > hoverlabel > bgcolor +scattergeo > hoverlabel > bordercolor +scattergeo > hoverlabel > font +scattergeo > hoverlabel > font > color +scattergeo > hoverlabel > font > family +scattergeo > hoverlabel > font > size +scattergeo > hoverlabel > namelength +scattergeo > hovertext +scattergeo > ids +scattergeo > lat +scattergeo > legendgroup +scattergeo > line +scattergeo > line > color +scattergeo > line > dash +scattergeo > line > width +scattergeo > locationmode +scattergeo > locations +scattergeo > lon +scattergeo > marker +scattergeo > marker > autocolorscale +scattergeo > marker > cauto +scattergeo > marker > cmax +scattergeo > marker > cmin +scattergeo > marker > color +scattergeo > marker > colorbar +scattergeo > marker > colorbar > bgcolor +scattergeo > marker > colorbar > bordercolor +scattergeo > marker > colorbar > borderwidth +scattergeo > marker > colorbar > dtick +scattergeo > marker > colorbar > exponentformat +scattergeo > marker > colorbar > len +scattergeo > marker > colorbar > lenmode +scattergeo > marker > colorbar > nticks +scattergeo > marker > colorbar > outlinecolor +scattergeo > marker > colorbar > outlinewidth +scattergeo > marker > colorbar > separatethousands +scattergeo > marker > colorbar > showexponent +scattergeo > marker > colorbar > showticklabels +scattergeo > marker > colorbar > showtickprefix +scattergeo > marker > colorbar > showticksuffix +scattergeo > marker > colorbar > thickness +scattergeo > marker > colorbar > thicknessmode +scattergeo > marker > colorbar > tick0 +scattergeo > marker > colorbar > tickangle +scattergeo > marker > colorbar > tickcolor +scattergeo > marker > colorbar > tickfont +scattergeo > marker > colorbar > tickfont > color +scattergeo > marker > colorbar > tickfont > family +scattergeo > marker > colorbar > tickfont > size +scattergeo > marker > colorbar > tickformat +scattergeo > marker > colorbar > tickformatstops +scattergeo > marker > colorbar > tickformatstops > items +scattergeo > marker > colorbar > ticklen +scattergeo > marker > colorbar > tickmode +scattergeo > marker > colorbar > tickprefix +scattergeo > marker > colorbar > ticks +scattergeo > marker > colorbar > ticksuffix +scattergeo > marker > colorbar > ticktext +scattergeo > marker > colorbar > tickvals +scattergeo > marker > colorbar > tickwidth +scattergeo > marker > colorbar > title +scattergeo > marker > colorbar > titlefont +scattergeo > marker > colorbar > titlefont > color +scattergeo > marker > colorbar > titlefont > family +scattergeo > marker > colorbar > titlefont > size +scattergeo > marker > colorbar > titleside +scattergeo > marker > colorbar > x +scattergeo > marker > colorbar > xanchor +scattergeo > marker > colorbar > xpad +scattergeo > marker > colorbar > y +scattergeo > marker > colorbar > yanchor +scattergeo > marker > colorbar > ypad +scattergeo > marker > colorscale +scattergeo > marker > gradient +scattergeo > marker > gradient > color +scattergeo > marker > gradient > type +scattergeo > marker > line +scattergeo > marker > line > autocolorscale +scattergeo > marker > line > cauto +scattergeo > marker > line > cmax +scattergeo > marker > line > cmin +scattergeo > marker > line > color +scattergeo > marker > line > colorscale +scattergeo > marker > line > reversescale +scattergeo > marker > line > width +scattergeo > marker > opacity +scattergeo > marker > reversescale +scattergeo > marker > showscale +scattergeo > marker > size +scattergeo > marker > sizemin +scattergeo > marker > sizemode +scattergeo > marker > sizeref +scattergeo > marker > symbol +scattergeo > mode +scattergeo > name +scattergeo > opacity +scattergeo > selected +scattergeo > selected > marker +scattergeo > selected > marker > color +scattergeo > selected > marker > opacity +scattergeo > selected > marker > size +scattergeo > selected > textfont +scattergeo > selected > textfont > color +scattergeo > selectedpoints +scattergeo > showlegend +scattergeo > stream +scattergeo > stream > maxpoints +scattergeo > stream > token +scattergeo > text +scattergeo > textfont +scattergeo > textfont > color +scattergeo > textfont > family +scattergeo > textfont > size +scattergeo > textposition +scattergeo > transforms +scattergeo > transforms > items +scattergeo > transforms > items > transform +scattergeo > type +scattergeo > unselected +scattergeo > unselected > marker +scattergeo > unselected > marker > color +scattergeo > unselected > marker > opacity +scattergeo > unselected > marker > size +scattergeo > unselected > textfont +scattergeo > unselected > textfont > color +scattergeo > visible +scattergl +scattergl > connectgaps +scattergl > customdata +scattergl > dx +scattergl > dy +scattergl > error_x +scattergl > error_x > array +scattergl > error_x > arrayminus +scattergl > error_x > color +scattergl > error_x > copy_ystyle +scattergl > error_x > symmetric +scattergl > error_x > thickness +scattergl > error_x > traceref +scattergl > error_x > tracerefminus +scattergl > error_x > type +scattergl > error_x > value +scattergl > error_x > valueminus +scattergl > error_x > visible +scattergl > error_x > width +scattergl > error_y +scattergl > error_y > array +scattergl > error_y > arrayminus +scattergl > error_y > color +scattergl > error_y > symmetric +scattergl > error_y > thickness +scattergl > error_y > traceref +scattergl > error_y > tracerefminus +scattergl > error_y > type +scattergl > error_y > value +scattergl > error_y > valueminus +scattergl > error_y > visible +scattergl > error_y > width +scattergl > fill +scattergl > fillcolor +scattergl > hoverinfo +scattergl > hoverlabel +scattergl > hoverlabel > bgcolor +scattergl > hoverlabel > bordercolor +scattergl > hoverlabel > font +scattergl > hoverlabel > font > color +scattergl > hoverlabel > font > family +scattergl > hoverlabel > font > size +scattergl > hoverlabel > namelength +scattergl > hovertext +scattergl > ids +scattergl > legendgroup +scattergl > line +scattergl > line > color +scattergl > line > dash +scattergl > line > width +scattergl > marker +scattergl > marker > autocolorscale +scattergl > marker > cauto +scattergl > marker > cmax +scattergl > marker > cmin +scattergl > marker > color +scattergl > marker > colorbar +scattergl > marker > colorbar > bgcolor +scattergl > marker > colorbar > bordercolor +scattergl > marker > colorbar > borderwidth +scattergl > marker > colorbar > dtick +scattergl > marker > colorbar > exponentformat +scattergl > marker > colorbar > len +scattergl > marker > colorbar > lenmode +scattergl > marker > colorbar > nticks +scattergl > marker > colorbar > outlinecolor +scattergl > marker > colorbar > outlinewidth +scattergl > marker > colorbar > separatethousands +scattergl > marker > colorbar > showexponent +scattergl > marker > colorbar > showticklabels +scattergl > marker > colorbar > showtickprefix +scattergl > marker > colorbar > showticksuffix +scattergl > marker > colorbar > thickness +scattergl > marker > colorbar > thicknessmode +scattergl > marker > colorbar > tick0 +scattergl > marker > colorbar > tickangle +scattergl > marker > colorbar > tickcolor +scattergl > marker > colorbar > tickfont +scattergl > marker > colorbar > tickfont > color +scattergl > marker > colorbar > tickfont > family +scattergl > marker > colorbar > tickfont > size +scattergl > marker > colorbar > tickformat +scattergl > marker > colorbar > tickformatstops +scattergl > marker > colorbar > tickformatstops > items +scattergl > marker > colorbar > ticklen +scattergl > marker > colorbar > tickmode +scattergl > marker > colorbar > tickprefix +scattergl > marker > colorbar > ticks +scattergl > marker > colorbar > ticksuffix +scattergl > marker > colorbar > ticktext +scattergl > marker > colorbar > tickvals +scattergl > marker > colorbar > tickwidth +scattergl > marker > colorbar > title +scattergl > marker > colorbar > titlefont +scattergl > marker > colorbar > titlefont > color +scattergl > marker > colorbar > titlefont > family +scattergl > marker > colorbar > titlefont > size +scattergl > marker > colorbar > titleside +scattergl > marker > colorbar > x +scattergl > marker > colorbar > xanchor +scattergl > marker > colorbar > xpad +scattergl > marker > colorbar > y +scattergl > marker > colorbar > yanchor +scattergl > marker > colorbar > ypad +scattergl > marker > colorscale +scattergl > marker > line +scattergl > marker > line > autocolorscale +scattergl > marker > line > cauto +scattergl > marker > line > cmax +scattergl > marker > line > cmin +scattergl > marker > line > color +scattergl > marker > line > colorscale +scattergl > marker > line > reversescale +scattergl > marker > line > width +scattergl > marker > opacity +scattergl > marker > reversescale +scattergl > marker > showscale +scattergl > marker > size +scattergl > marker > sizemin +scattergl > marker > sizemode +scattergl > marker > sizeref +scattergl > marker > symbol +scattergl > mode +scattergl > name +scattergl > opacity +scattergl > selected +scattergl > selected > marker +scattergl > selected > marker > color +scattergl > selected > marker > opacity +scattergl > selected > marker > size +scattergl > selected > textfont +scattergl > selected > textfont > color +scattergl > selectedpoints +scattergl > showlegend +scattergl > stream +scattergl > stream > maxpoints +scattergl > stream > token +scattergl > text +scattergl > textfont +scattergl > textfont > color +scattergl > textfont > family +scattergl > textfont > size +scattergl > textposition +scattergl > transforms +scattergl > transforms > items +scattergl > transforms > items > transform +scattergl > type +scattergl > unselected +scattergl > unselected > marker +scattergl > unselected > marker > color +scattergl > unselected > marker > opacity +scattergl > unselected > marker > size +scattergl > unselected > textfont +scattergl > unselected > textfont > color +scattergl > visible +scattergl > x +scattergl > x0 +scattergl > xaxis +scattergl > xcalendar +scattergl > y +scattergl > y0 +scattergl > yaxis +scattergl > ycalendar +scattermapbox +scattermapbox > connectgaps +scattermapbox > customdata +scattermapbox > fill +scattermapbox > fillcolor +scattermapbox > hoverinfo +scattermapbox > hoverlabel +scattermapbox > hoverlabel > bgcolor +scattermapbox > hoverlabel > bordercolor +scattermapbox > hoverlabel > font +scattermapbox > hoverlabel > font > color +scattermapbox > hoverlabel > font > family +scattermapbox > hoverlabel > font > size +scattermapbox > hoverlabel > namelength +scattermapbox > hovertext +scattermapbox > ids +scattermapbox > lat +scattermapbox > legendgroup +scattermapbox > line +scattermapbox > line > color +scattermapbox > line > width +scattermapbox > lon +scattermapbox > marker +scattermapbox > marker > autocolorscale +scattermapbox > marker > cauto +scattermapbox > marker > cmax +scattermapbox > marker > cmin +scattermapbox > marker > color +scattermapbox > marker > colorbar +scattermapbox > marker > colorbar > bgcolor +scattermapbox > marker > colorbar > bordercolor +scattermapbox > marker > colorbar > borderwidth +scattermapbox > marker > colorbar > dtick +scattermapbox > marker > colorbar > exponentformat +scattermapbox > marker > colorbar > len +scattermapbox > marker > colorbar > lenmode +scattermapbox > marker > colorbar > nticks +scattermapbox > marker > colorbar > outlinecolor +scattermapbox > marker > colorbar > outlinewidth +scattermapbox > marker > colorbar > separatethousands +scattermapbox > marker > colorbar > showexponent +scattermapbox > marker > colorbar > showticklabels +scattermapbox > marker > colorbar > showtickprefix +scattermapbox > marker > colorbar > showticksuffix +scattermapbox > marker > colorbar > thickness +scattermapbox > marker > colorbar > thicknessmode +scattermapbox > marker > colorbar > tick0 +scattermapbox > marker > colorbar > tickangle +scattermapbox > marker > colorbar > tickcolor +scattermapbox > marker > colorbar > tickfont +scattermapbox > marker > colorbar > tickfont > color +scattermapbox > marker > colorbar > tickfont > family +scattermapbox > marker > colorbar > tickfont > size +scattermapbox > marker > colorbar > tickformat +scattermapbox > marker > colorbar > tickformatstops +scattermapbox > marker > colorbar > tickformatstops > items +scattermapbox > marker > colorbar > ticklen +scattermapbox > marker > colorbar > tickmode +scattermapbox > marker > colorbar > tickprefix +scattermapbox > marker > colorbar > ticks +scattermapbox > marker > colorbar > ticksuffix +scattermapbox > marker > colorbar > ticktext +scattermapbox > marker > colorbar > tickvals +scattermapbox > marker > colorbar > tickwidth +scattermapbox > marker > colorbar > title +scattermapbox > marker > colorbar > titlefont +scattermapbox > marker > colorbar > titlefont > color +scattermapbox > marker > colorbar > titlefont > family +scattermapbox > marker > colorbar > titlefont > size +scattermapbox > marker > colorbar > titleside +scattermapbox > marker > colorbar > x +scattermapbox > marker > colorbar > xanchor +scattermapbox > marker > colorbar > xpad +scattermapbox > marker > colorbar > y +scattermapbox > marker > colorbar > yanchor +scattermapbox > marker > colorbar > ypad +scattermapbox > marker > colorscale +scattermapbox > marker > opacity +scattermapbox > marker > reversescale +scattermapbox > marker > showscale +scattermapbox > marker > size +scattermapbox > marker > sizemin +scattermapbox > marker > sizemode +scattermapbox > marker > sizeref +scattermapbox > marker > symbol +scattermapbox > mode +scattermapbox > name +scattermapbox > opacity +scattermapbox > selected +scattermapbox > selected > marker +scattermapbox > selected > marker > color +scattermapbox > selected > marker > opacity +scattermapbox > selected > marker > size +scattermapbox > selectedpoints +scattermapbox > showlegend +scattermapbox > stream +scattermapbox > stream > maxpoints +scattermapbox > stream > token +scattermapbox > subplot +scattermapbox > text +scattermapbox > textfont +scattermapbox > textfont > color +scattermapbox > textfont > family +scattermapbox > textfont > size +scattermapbox > textposition +scattermapbox > transforms +scattermapbox > transforms > items +scattermapbox > transforms > items > transform +scattermapbox > type +scattermapbox > unselected +scattermapbox > unselected > marker +scattermapbox > unselected > marker > color +scattermapbox > unselected > marker > opacity +scattermapbox > unselected > marker > size +scattermapbox > visible +scatterpolar +scatterpolar > cliponaxis +scatterpolar > connectgaps +scatterpolar > customdata +scatterpolar > dr +scatterpolar > dtheta +scatterpolar > fill +scatterpolar > fillcolor +scatterpolar > hoverinfo +scatterpolar > hoverlabel +scatterpolar > hoverlabel > bgcolor +scatterpolar > hoverlabel > bordercolor +scatterpolar > hoverlabel > font +scatterpolar > hoverlabel > font > color +scatterpolar > hoverlabel > font > family +scatterpolar > hoverlabel > font > size +scatterpolar > hoverlabel > namelength +scatterpolar > hoveron +scatterpolar > hovertext +scatterpolar > ids +scatterpolar > legendgroup +scatterpolar > line +scatterpolar > line > color +scatterpolar > line > dash +scatterpolar > line > shape +scatterpolar > line > smoothing +scatterpolar > line > width +scatterpolar > marker +scatterpolar > marker > autocolorscale +scatterpolar > marker > cauto +scatterpolar > marker > cmax +scatterpolar > marker > cmin +scatterpolar > marker > color +scatterpolar > marker > colorbar +scatterpolar > marker > colorbar > bgcolor +scatterpolar > marker > colorbar > bordercolor +scatterpolar > marker > colorbar > borderwidth +scatterpolar > marker > colorbar > dtick +scatterpolar > marker > colorbar > exponentformat +scatterpolar > marker > colorbar > len +scatterpolar > marker > colorbar > lenmode +scatterpolar > marker > colorbar > nticks +scatterpolar > marker > colorbar > outlinecolor +scatterpolar > marker > colorbar > outlinewidth +scatterpolar > marker > colorbar > separatethousands +scatterpolar > marker > colorbar > showexponent +scatterpolar > marker > colorbar > showticklabels +scatterpolar > marker > colorbar > showtickprefix +scatterpolar > marker > colorbar > showticksuffix +scatterpolar > marker > colorbar > thickness +scatterpolar > marker > colorbar > thicknessmode +scatterpolar > marker > colorbar > tick0 +scatterpolar > marker > colorbar > tickangle +scatterpolar > marker > colorbar > tickcolor +scatterpolar > marker > colorbar > tickfont +scatterpolar > marker > colorbar > tickfont > color +scatterpolar > marker > colorbar > tickfont > family +scatterpolar > marker > colorbar > tickfont > size +scatterpolar > marker > colorbar > tickformat +scatterpolar > marker > colorbar > tickformatstops +scatterpolar > marker > colorbar > tickformatstops > items +scatterpolar > marker > colorbar > ticklen +scatterpolar > marker > colorbar > tickmode +scatterpolar > marker > colorbar > tickprefix +scatterpolar > marker > colorbar > ticks +scatterpolar > marker > colorbar > ticksuffix +scatterpolar > marker > colorbar > ticktext +scatterpolar > marker > colorbar > tickvals +scatterpolar > marker > colorbar > tickwidth +scatterpolar > marker > colorbar > title +scatterpolar > marker > colorbar > titlefont +scatterpolar > marker > colorbar > titlefont > color +scatterpolar > marker > colorbar > titlefont > family +scatterpolar > marker > colorbar > titlefont > size +scatterpolar > marker > colorbar > titleside +scatterpolar > marker > colorbar > x +scatterpolar > marker > colorbar > xanchor +scatterpolar > marker > colorbar > xpad +scatterpolar > marker > colorbar > y +scatterpolar > marker > colorbar > yanchor +scatterpolar > marker > colorbar > ypad +scatterpolar > marker > colorscale +scatterpolar > marker > gradient +scatterpolar > marker > gradient > color +scatterpolar > marker > gradient > type +scatterpolar > marker > line +scatterpolar > marker > line > autocolorscale +scatterpolar > marker > line > cauto +scatterpolar > marker > line > cmax +scatterpolar > marker > line > cmin +scatterpolar > marker > line > color +scatterpolar > marker > line > colorscale +scatterpolar > marker > line > reversescale +scatterpolar > marker > line > width +scatterpolar > marker > maxdisplayed +scatterpolar > marker > opacity +scatterpolar > marker > reversescale +scatterpolar > marker > showscale +scatterpolar > marker > size +scatterpolar > marker > sizemin +scatterpolar > marker > sizemode +scatterpolar > marker > sizeref +scatterpolar > marker > symbol +scatterpolar > mode +scatterpolar > name +scatterpolar > opacity +scatterpolar > r +scatterpolar > r0 +scatterpolar > selected +scatterpolar > selected > marker +scatterpolar > selected > marker > color +scatterpolar > selected > marker > opacity +scatterpolar > selected > marker > size +scatterpolar > selected > textfont +scatterpolar > selected > textfont > color +scatterpolar > selectedpoints +scatterpolar > showlegend +scatterpolar > stream +scatterpolar > stream > maxpoints +scatterpolar > stream > token +scatterpolar > subplot +scatterpolar > text +scatterpolar > textfont +scatterpolar > textfont > color +scatterpolar > textfont > family +scatterpolar > textfont > size +scatterpolar > textposition +scatterpolar > theta +scatterpolar > theta0 +scatterpolar > thetaunit +scatterpolar > transforms +scatterpolar > transforms > items +scatterpolar > transforms > items > transform +scatterpolar > type +scatterpolar > unselected +scatterpolar > unselected > marker +scatterpolar > unselected > marker > color +scatterpolar > unselected > marker > opacity +scatterpolar > unselected > marker > size +scatterpolar > unselected > textfont +scatterpolar > unselected > textfont > color +scatterpolar > visible +scatterpolargl +scatterpolargl > connectgaps +scatterpolargl > customdata +scatterpolargl > dr +scatterpolargl > dtheta +scatterpolargl > fill +scatterpolargl > fillcolor +scatterpolargl > hoverinfo +scatterpolargl > hoverlabel +scatterpolargl > hoverlabel > bgcolor +scatterpolargl > hoverlabel > bordercolor +scatterpolargl > hoverlabel > font +scatterpolargl > hoverlabel > font > color +scatterpolargl > hoverlabel > font > family +scatterpolargl > hoverlabel > font > size +scatterpolargl > hoverlabel > namelength +scatterpolargl > hovertext +scatterpolargl > ids +scatterpolargl > legendgroup +scatterpolargl > line +scatterpolargl > line > color +scatterpolargl > line > dash +scatterpolargl > line > width +scatterpolargl > marker +scatterpolargl > marker > autocolorscale +scatterpolargl > marker > cauto +scatterpolargl > marker > cmax +scatterpolargl > marker > cmin +scatterpolargl > marker > color +scatterpolargl > marker > colorbar +scatterpolargl > marker > colorbar > bgcolor +scatterpolargl > marker > colorbar > bordercolor +scatterpolargl > marker > colorbar > borderwidth +scatterpolargl > marker > colorbar > dtick +scatterpolargl > marker > colorbar > exponentformat +scatterpolargl > marker > colorbar > len +scatterpolargl > marker > colorbar > lenmode +scatterpolargl > marker > colorbar > nticks +scatterpolargl > marker > colorbar > outlinecolor +scatterpolargl > marker > colorbar > outlinewidth +scatterpolargl > marker > colorbar > separatethousands +scatterpolargl > marker > colorbar > showexponent +scatterpolargl > marker > colorbar > showticklabels +scatterpolargl > marker > colorbar > showtickprefix +scatterpolargl > marker > colorbar > showticksuffix +scatterpolargl > marker > colorbar > thickness +scatterpolargl > marker > colorbar > thicknessmode +scatterpolargl > marker > colorbar > tick0 +scatterpolargl > marker > colorbar > tickangle +scatterpolargl > marker > colorbar > tickcolor +scatterpolargl > marker > colorbar > tickfont +scatterpolargl > marker > colorbar > tickfont > color +scatterpolargl > marker > colorbar > tickfont > family +scatterpolargl > marker > colorbar > tickfont > size +scatterpolargl > marker > colorbar > tickformat +scatterpolargl > marker > colorbar > tickformatstops +scatterpolargl > marker > colorbar > tickformatstops > items +scatterpolargl > marker > colorbar > ticklen +scatterpolargl > marker > colorbar > tickmode +scatterpolargl > marker > colorbar > tickprefix +scatterpolargl > marker > colorbar > ticks +scatterpolargl > marker > colorbar > ticksuffix +scatterpolargl > marker > colorbar > ticktext +scatterpolargl > marker > colorbar > tickvals +scatterpolargl > marker > colorbar > tickwidth +scatterpolargl > marker > colorbar > title +scatterpolargl > marker > colorbar > titlefont +scatterpolargl > marker > colorbar > titlefont > color +scatterpolargl > marker > colorbar > titlefont > family +scatterpolargl > marker > colorbar > titlefont > size +scatterpolargl > marker > colorbar > titleside +scatterpolargl > marker > colorbar > x +scatterpolargl > marker > colorbar > xanchor +scatterpolargl > marker > colorbar > xpad +scatterpolargl > marker > colorbar > y +scatterpolargl > marker > colorbar > yanchor +scatterpolargl > marker > colorbar > ypad +scatterpolargl > marker > colorscale +scatterpolargl > marker > line +scatterpolargl > marker > line > autocolorscale +scatterpolargl > marker > line > cauto +scatterpolargl > marker > line > cmax +scatterpolargl > marker > line > cmin +scatterpolargl > marker > line > color +scatterpolargl > marker > line > colorscale +scatterpolargl > marker > line > reversescale +scatterpolargl > marker > line > width +scatterpolargl > marker > opacity +scatterpolargl > marker > reversescale +scatterpolargl > marker > showscale +scatterpolargl > marker > size +scatterpolargl > marker > sizemin +scatterpolargl > marker > sizemode +scatterpolargl > marker > sizeref +scatterpolargl > marker > symbol +scatterpolargl > mode +scatterpolargl > name +scatterpolargl > opacity +scatterpolargl > r +scatterpolargl > r0 +scatterpolargl > selected +scatterpolargl > selected > marker +scatterpolargl > selected > marker > color +scatterpolargl > selected > marker > opacity +scatterpolargl > selected > marker > size +scatterpolargl > selected > textfont +scatterpolargl > selected > textfont > color +scatterpolargl > selectedpoints +scatterpolargl > showlegend +scatterpolargl > stream +scatterpolargl > stream > maxpoints +scatterpolargl > stream > token +scatterpolargl > subplot +scatterpolargl > text +scatterpolargl > textfont +scatterpolargl > textfont > color +scatterpolargl > textfont > family +scatterpolargl > textfont > size +scatterpolargl > textposition +scatterpolargl > theta +scatterpolargl > theta0 +scatterpolargl > thetaunit +scatterpolargl > transforms +scatterpolargl > transforms > items +scatterpolargl > transforms > items > transform +scatterpolargl > type +scatterpolargl > unselected +scatterpolargl > unselected > marker +scatterpolargl > unselected > marker > color +scatterpolargl > unselected > marker > opacity +scatterpolargl > unselected > marker > size +scatterpolargl > unselected > textfont +scatterpolargl > unselected > textfont > color +scatterpolargl > visible +scatterternary +scatterternary > a +scatterternary > b +scatterternary > c +scatterternary > cliponaxis +scatterternary > connectgaps +scatterternary > customdata +scatterternary > fill +scatterternary > fillcolor +scatterternary > hoverinfo +scatterternary > hoverlabel +scatterternary > hoverlabel > bgcolor +scatterternary > hoverlabel > bordercolor +scatterternary > hoverlabel > font +scatterternary > hoverlabel > font > color +scatterternary > hoverlabel > font > family +scatterternary > hoverlabel > font > size +scatterternary > hoverlabel > namelength +scatterternary > hoveron +scatterternary > hovertext +scatterternary > ids +scatterternary > legendgroup +scatterternary > line +scatterternary > line > color +scatterternary > line > dash +scatterternary > line > shape +scatterternary > line > smoothing +scatterternary > line > width +scatterternary > marker +scatterternary > marker > autocolorscale +scatterternary > marker > cauto +scatterternary > marker > cmax +scatterternary > marker > cmin +scatterternary > marker > color +scatterternary > marker > colorbar +scatterternary > marker > colorbar > bgcolor +scatterternary > marker > colorbar > bordercolor +scatterternary > marker > colorbar > borderwidth +scatterternary > marker > colorbar > dtick +scatterternary > marker > colorbar > exponentformat +scatterternary > marker > colorbar > len +scatterternary > marker > colorbar > lenmode +scatterternary > marker > colorbar > nticks +scatterternary > marker > colorbar > outlinecolor +scatterternary > marker > colorbar > outlinewidth +scatterternary > marker > colorbar > separatethousands +scatterternary > marker > colorbar > showexponent +scatterternary > marker > colorbar > showticklabels +scatterternary > marker > colorbar > showtickprefix +scatterternary > marker > colorbar > showticksuffix +scatterternary > marker > colorbar > thickness +scatterternary > marker > colorbar > thicknessmode +scatterternary > marker > colorbar > tick0 +scatterternary > marker > colorbar > tickangle +scatterternary > marker > colorbar > tickcolor +scatterternary > marker > colorbar > tickfont +scatterternary > marker > colorbar > tickfont > color +scatterternary > marker > colorbar > tickfont > family +scatterternary > marker > colorbar > tickfont > size +scatterternary > marker > colorbar > tickformat +scatterternary > marker > colorbar > tickformatstops +scatterternary > marker > colorbar > tickformatstops > items +scatterternary > marker > colorbar > ticklen +scatterternary > marker > colorbar > tickmode +scatterternary > marker > colorbar > tickprefix +scatterternary > marker > colorbar > ticks +scatterternary > marker > colorbar > ticksuffix +scatterternary > marker > colorbar > ticktext +scatterternary > marker > colorbar > tickvals +scatterternary > marker > colorbar > tickwidth +scatterternary > marker > colorbar > title +scatterternary > marker > colorbar > titlefont +scatterternary > marker > colorbar > titlefont > color +scatterternary > marker > colorbar > titlefont > family +scatterternary > marker > colorbar > titlefont > size +scatterternary > marker > colorbar > titleside +scatterternary > marker > colorbar > x +scatterternary > marker > colorbar > xanchor +scatterternary > marker > colorbar > xpad +scatterternary > marker > colorbar > y +scatterternary > marker > colorbar > yanchor +scatterternary > marker > colorbar > ypad +scatterternary > marker > colorscale +scatterternary > marker > gradient +scatterternary > marker > gradient > color +scatterternary > marker > gradient > type +scatterternary > marker > line +scatterternary > marker > line > autocolorscale +scatterternary > marker > line > cauto +scatterternary > marker > line > cmax +scatterternary > marker > line > cmin +scatterternary > marker > line > color +scatterternary > marker > line > colorscale +scatterternary > marker > line > reversescale +scatterternary > marker > line > width +scatterternary > marker > maxdisplayed +scatterternary > marker > opacity +scatterternary > marker > reversescale +scatterternary > marker > showscale +scatterternary > marker > size +scatterternary > marker > sizemin +scatterternary > marker > sizemode +scatterternary > marker > sizeref +scatterternary > marker > symbol +scatterternary > mode +scatterternary > name +scatterternary > opacity +scatterternary > selected +scatterternary > selected > marker +scatterternary > selected > marker > color +scatterternary > selected > marker > opacity +scatterternary > selected > marker > size +scatterternary > selected > textfont +scatterternary > selected > textfont > color +scatterternary > selectedpoints +scatterternary > showlegend +scatterternary > stream +scatterternary > stream > maxpoints +scatterternary > stream > token +scatterternary > subplot +scatterternary > sum +scatterternary > text +scatterternary > textfont +scatterternary > textfont > color +scatterternary > textfont > family +scatterternary > textfont > size +scatterternary > textposition +scatterternary > transforms +scatterternary > transforms > items +scatterternary > transforms > items > transform +scatterternary > type +scatterternary > unselected +scatterternary > unselected > marker +scatterternary > unselected > marker > color +scatterternary > unselected > marker > opacity +scatterternary > unselected > marker > size +scatterternary > unselected > textfont +scatterternary > unselected > textfont > color +scatterternary > visible +splom +splom > customdata +splom > diagonal +splom > diagonal > visible +splom > dimensions +splom > dimensions > items +splom > dimensions > items > dimension +splom > dimensions > items > dimension > axis +splom > dimensions > items > dimension > label +splom > dimensions > items > dimension > name +splom > dimensions > items > dimension > templateitemname +splom > dimensions > items > dimension > values +splom > dimensions > items > dimension > visible +splom > hoverinfo +splom > hoverlabel +splom > hoverlabel > bgcolor +splom > hoverlabel > bordercolor +splom > hoverlabel > font +splom > hoverlabel > font > color +splom > hoverlabel > font > family +splom > hoverlabel > font > size +splom > hoverlabel > namelength +splom > ids +splom > legendgroup +splom > marker +splom > marker > autocolorscale +splom > marker > cauto +splom > marker > cmax +splom > marker > cmin +splom > marker > color +splom > marker > colorbar +splom > marker > colorbar > bgcolor +splom > marker > colorbar > bordercolor +splom > marker > colorbar > borderwidth +splom > marker > colorbar > dtick +splom > marker > colorbar > exponentformat +splom > marker > colorbar > len +splom > marker > colorbar > lenmode +splom > marker > colorbar > nticks +splom > marker > colorbar > outlinecolor +splom > marker > colorbar > outlinewidth +splom > marker > colorbar > separatethousands +splom > marker > colorbar > showexponent +splom > marker > colorbar > showticklabels +splom > marker > colorbar > showtickprefix +splom > marker > colorbar > showticksuffix +splom > marker > colorbar > thickness +splom > marker > colorbar > thicknessmode +splom > marker > colorbar > tick0 +splom > marker > colorbar > tickangle +splom > marker > colorbar > tickcolor +splom > marker > colorbar > tickfont +splom > marker > colorbar > tickfont > color +splom > marker > colorbar > tickfont > family +splom > marker > colorbar > tickfont > size +splom > marker > colorbar > tickformat +splom > marker > colorbar > tickformatstops +splom > marker > colorbar > tickformatstops > items +splom > marker > colorbar > ticklen +splom > marker > colorbar > tickmode +splom > marker > colorbar > tickprefix +splom > marker > colorbar > ticks +splom > marker > colorbar > ticksuffix +splom > marker > colorbar > ticktext +splom > marker > colorbar > tickvals +splom > marker > colorbar > tickwidth +splom > marker > colorbar > title +splom > marker > colorbar > titlefont +splom > marker > colorbar > titlefont > color +splom > marker > colorbar > titlefont > family +splom > marker > colorbar > titlefont > size +splom > marker > colorbar > titleside +splom > marker > colorbar > x +splom > marker > colorbar > xanchor +splom > marker > colorbar > xpad +splom > marker > colorbar > y +splom > marker > colorbar > yanchor +splom > marker > colorbar > ypad +splom > marker > colorscale +splom > marker > line +splom > marker > line > autocolorscale +splom > marker > line > cauto +splom > marker > line > cmax +splom > marker > line > cmin +splom > marker > line > color +splom > marker > line > colorscale +splom > marker > line > reversescale +splom > marker > line > width +splom > marker > opacity +splom > marker > reversescale +splom > marker > showscale +splom > marker > size +splom > marker > sizemin +splom > marker > sizemode +splom > marker > sizeref +splom > marker > symbol +splom > name +splom > opacity +splom > selected +splom > selected > marker +splom > selected > marker > color +splom > selected > marker > opacity +splom > selected > marker > size +splom > selectedpoints +splom > showlegend +splom > showlowerhalf +splom > showupperhalf +splom > stream +splom > stream > maxpoints +splom > stream > token +splom > text +splom > transforms +splom > transforms > items +splom > transforms > items > transform +splom > type +splom > unselected +splom > unselected > marker +splom > unselected > marker > color +splom > unselected > marker > opacity +splom > unselected > marker > size +splom > visible +splom > xaxes +splom > xaxes > items +splom > yaxes +splom > yaxes > items +streamtube +streamtube > autocolorscale +streamtube > cauto +streamtube > cmax +streamtube > cmin +streamtube > colorbar +streamtube > colorbar > bgcolor +streamtube > colorbar > bordercolor +streamtube > colorbar > borderwidth +streamtube > colorbar > dtick +streamtube > colorbar > exponentformat +streamtube > colorbar > len +streamtube > colorbar > lenmode +streamtube > colorbar > nticks +streamtube > colorbar > outlinecolor +streamtube > colorbar > outlinewidth +streamtube > colorbar > separatethousands +streamtube > colorbar > showexponent +streamtube > colorbar > showticklabels +streamtube > colorbar > showtickprefix +streamtube > colorbar > showticksuffix +streamtube > colorbar > thickness +streamtube > colorbar > thicknessmode +streamtube > colorbar > tick0 +streamtube > colorbar > tickangle +streamtube > colorbar > tickcolor +streamtube > colorbar > tickfont +streamtube > colorbar > tickfont > color +streamtube > colorbar > tickfont > family +streamtube > colorbar > tickfont > size +streamtube > colorbar > tickformat +streamtube > colorbar > tickformatstops +streamtube > colorbar > tickformatstops > items +streamtube > colorbar > tickformatstops > items > tickformatstop +streamtube > colorbar > ticklen +streamtube > colorbar > tickmode +streamtube > colorbar > tickprefix +streamtube > colorbar > ticks +streamtube > colorbar > ticksuffix +streamtube > colorbar > ticktext +streamtube > colorbar > tickvals +streamtube > colorbar > tickwidth +streamtube > colorbar > title +streamtube > colorbar > titlefont +streamtube > colorbar > titlefont > color +streamtube > colorbar > titlefont > family +streamtube > colorbar > titlefont > size +streamtube > colorbar > titleside +streamtube > colorbar > x +streamtube > colorbar > xanchor +streamtube > colorbar > xpad +streamtube > colorbar > y +streamtube > colorbar > yanchor +streamtube > colorbar > ypad +streamtube > colorscale +streamtube > customdata +streamtube > hoverinfo +streamtube > hoverlabel +streamtube > hoverlabel > bgcolor +streamtube > hoverlabel > bordercolor +streamtube > hoverlabel > font +streamtube > hoverlabel > font > color +streamtube > hoverlabel > font > family +streamtube > hoverlabel > font > size +streamtube > hoverlabel > namelength +streamtube > ids +streamtube > legendgroup +streamtube > lighting +streamtube > lighting > ambient +streamtube > lighting > diffuse +streamtube > lighting > facenormalsepsilon +streamtube > lighting > fresnel +streamtube > lighting > roughness +streamtube > lighting > specular +streamtube > lighting > vertexnormalsepsilon +streamtube > lightposition +streamtube > lightposition > x +streamtube > lightposition > y +streamtube > lightposition > z +streamtube > maxdisplayed +streamtube > name +streamtube > opacity +streamtube > reversescale +streamtube > scene +streamtube > selectedpoints +streamtube > showlegend +streamtube > showscale +streamtube > sizeref +streamtube > starts +streamtube > starts > x +streamtube > starts > y +streamtube > starts > z +streamtube > stream +streamtube > stream > maxpoints +streamtube > stream > token +streamtube > text +streamtube > transforms +streamtube > transforms > items +streamtube > transforms > items > transform +streamtube > type +streamtube > u +streamtube > v +streamtube > visible +streamtube > w +streamtube > x +streamtube > y +streamtube > z +surface +surface > _deprecated > zauto +surface > _deprecated > zmax +surface > _deprecated > zmin +surface > autocolorscale +surface > cauto +surface > cmax +surface > cmin +surface > colorbar +surface > colorbar > bgcolor +surface > colorbar > bordercolor +surface > colorbar > borderwidth +surface > colorbar > dtick +surface > colorbar > exponentformat +surface > colorbar > len +surface > colorbar > lenmode +surface > colorbar > nticks +surface > colorbar > outlinecolor +surface > colorbar > outlinewidth +surface > colorbar > separatethousands +surface > colorbar > showexponent +surface > colorbar > showticklabels +surface > colorbar > showtickprefix +surface > colorbar > showticksuffix +surface > colorbar > thickness +surface > colorbar > thicknessmode +surface > colorbar > tick0 +surface > colorbar > tickangle +surface > colorbar > tickcolor +surface > colorbar > tickfont +surface > colorbar > tickfont > color +surface > colorbar > tickfont > family +surface > colorbar > tickfont > size +surface > colorbar > tickformat +surface > colorbar > tickformatstops +surface > colorbar > tickformatstops > items +surface > colorbar > tickformatstops > items > tickformatstop +surface > colorbar > ticklen +surface > colorbar > tickmode +surface > colorbar > tickprefix +surface > colorbar > ticks +surface > colorbar > ticksuffix +surface > colorbar > ticktext +surface > colorbar > tickvals +surface > colorbar > tickwidth +surface > colorbar > title +surface > colorbar > titlefont +surface > colorbar > titlefont > color +surface > colorbar > titlefont > family +surface > colorbar > titlefont > size +surface > colorbar > titleside +surface > colorbar > x +surface > colorbar > xanchor +surface > colorbar > xpad +surface > colorbar > y +surface > colorbar > yanchor +surface > colorbar > ypad +surface > colorscale +surface > contours +surface > contours > x +surface > contours > x > color +surface > contours > x > highlight +surface > contours > x > highlightcolor +surface > contours > x > highlightwidth +surface > contours > x > project +surface > contours > x > project > x +surface > contours > x > project > y +surface > contours > x > project > z +surface > contours > x > show +surface > contours > x > usecolormap +surface > contours > x > width +surface > contours > y +surface > contours > y > color +surface > contours > y > highlight +surface > contours > y > highlightcolor +surface > contours > y > highlightwidth +surface > contours > y > project +surface > contours > y > project > x +surface > contours > y > project > y +surface > contours > y > project > z +surface > contours > y > show +surface > contours > y > usecolormap +surface > contours > y > width +surface > contours > z +surface > contours > z > color +surface > contours > z > highlight +surface > contours > z > highlightcolor +surface > contours > z > highlightwidth +surface > contours > z > project +surface > contours > z > project > x +surface > contours > z > project > y +surface > contours > z > project > z +surface > contours > z > show +surface > contours > z > usecolormap +surface > contours > z > width +surface > customdata +surface > hidesurface +surface > hoverinfo +surface > hoverlabel +surface > hoverlabel > bgcolor +surface > hoverlabel > bordercolor +surface > hoverlabel > font +surface > hoverlabel > font > color +surface > hoverlabel > font > family +surface > hoverlabel > font > size +surface > hoverlabel > namelength +surface > ids +surface > legendgroup +surface > lighting +surface > lighting > ambient +surface > lighting > diffuse +surface > lighting > fresnel +surface > lighting > roughness +surface > lighting > specular +surface > lightposition +surface > lightposition > x +surface > lightposition > y +surface > lightposition > z +surface > name +surface > opacity +surface > reversescale +surface > scene +surface > selectedpoints +surface > showlegend +surface > showscale +surface > stream +surface > stream > maxpoints +surface > stream > token +surface > surfacecolor +surface > text +surface > transforms +surface > transforms > items +surface > transforms > items > transform +surface > type +surface > visible +surface > x +surface > xcalendar +surface > y +surface > ycalendar +surface > z +surface > zcalendar +table +table > cells +table > cells > align +table > cells > fill +table > cells > fill > color +table > cells > font +table > cells > font > color +table > cells > font > family +table > cells > font > size +table > cells > format +table > cells > height +table > cells > line +table > cells > line > color +table > cells > line > width +table > cells > prefix +table > cells > suffix +table > cells > values +table > columnorder +table > columnwidth +table > customdata +table > domain +table > domain > column +table > domain > row +table > domain > x +table > domain > y +table > header +table > header > align +table > header > fill +table > header > fill > color +table > header > font +table > header > font > color +table > header > font > family +table > header > font > size +table > header > format +table > header > height +table > header > line +table > header > line > color +table > header > line > width +table > header > prefix +table > header > suffix +table > header > values +table > hoverinfo +table > hoverlabel +table > hoverlabel > bgcolor +table > hoverlabel > bordercolor +table > hoverlabel > font +table > hoverlabel > font > color +table > hoverlabel > font > family +table > hoverlabel > font > size +table > hoverlabel > namelength +table > ids +table > legendgroup +table > name +table > opacity +table > selectedpoints +table > showlegend +table > stream +table > stream > maxpoints +table > stream > token +table > transforms +table > transforms > items +table > transforms > items > transform +table > type +table > visible +violin +violin > bandwidth +violin > box +violin > box > fillcolor +violin > box > line +violin > box > line > color +violin > box > line > width +violin > box > visible +violin > box > width +violin > customdata +violin > fillcolor +violin > hoverinfo +violin > hoverlabel +violin > hoverlabel > bgcolor +violin > hoverlabel > bordercolor +violin > hoverlabel > font +violin > hoverlabel > font > color +violin > hoverlabel > font > family +violin > hoverlabel > font > size +violin > hoverlabel > namelength +violin > hoveron +violin > ids +violin > jitter +violin > legendgroup +violin > line +violin > line > color +violin > line > width +violin > marker +violin > marker > color +violin > marker > line +violin > marker > line > color +violin > marker > line > outliercolor +violin > marker > line > outlierwidth +violin > marker > line > width +violin > marker > opacity +violin > marker > outliercolor +violin > marker > size +violin > marker > symbol +violin > meanline +violin > meanline > color +violin > meanline > visible +violin > meanline > width +violin > name +violin > opacity +violin > orientation +violin > pointpos +violin > points +violin > scalegroup +violin > scalemode +violin > selected +violin > selected > marker +violin > selected > marker > color +violin > selected > marker > opacity +violin > selected > marker > size +violin > selectedpoints +violin > showlegend +violin > side +violin > span +violin > spanmode +violin > stream +violin > stream > maxpoints +violin > stream > token +violin > text +violin > transforms +violin > transforms > items +violin > transforms > items > transform +violin > type +violin > unselected +violin > unselected > marker +violin > unselected > marker > color +violin > unselected > marker > opacity +violin > unselected > marker > size +violin > visible +violin > x +violin > x0 +violin > xaxis +violin > y +violin > y0 +violin > yaxis diff --git a/update_ref_search.ipynb b/update_ref_search.ipynb index 3b6853e0ee54..07ed7ea03e12 100644 --- a/update_ref_search.ipynb +++ b/update_ref_search.ipynb @@ -101,7 +101,7 @@ "source": [ "# keep a list of the names of of refs to tests against\n", "with open('ref_names.txt', 'w') as f:\n", - " for name in sorted([s['name'] for s in schema2]):\n", + " for name in sorted([s['name'] for s in schema]):\n", " f.write('{}\\n'.format(name))\n", "\n", "len(schema)"