plotly
Advanced tools
| # --- THIS FILE IS AUTO-GENERATED --- | ||
| # Modifications will be overwitten the next time code generation run. | ||
| from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType | ||
| import copy as _copy | ||
| class Unifiedhovertitle(_BaseLayoutHierarchyType): | ||
| _parent_path_str = "layout.xaxis" | ||
| _path_str = "layout.xaxis.unifiedhovertitle" | ||
| _valid_props = {"text"} | ||
| @property | ||
| def text(self): | ||
| """ | ||
| Template string used for rendering the title that appear on x | ||
| or y unified hover box. Variables are inserted using | ||
| %{variable}, for example "y: %{y}". Numbers are formatted using | ||
| d3-format's syntax %{variable:d3-format}, for example "Price: | ||
| %{y:$.2f}". | ||
| https://github.com/d3/d3-format/tree/v1.4.5#d3-format for | ||
| details on the formatting syntax. Dates are formatted using | ||
| d3-time-format's syntax %{variable|d3-time-format}, for example | ||
| "Day: %{2019-01-01|%A}". https://github.com/d3/d3-time- | ||
| format/tree/v2.2.3#locale_format for details on the date | ||
| formatting syntax. | ||
| The 'text' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["text"] | ||
| @text.setter | ||
| def text(self, val): | ||
| self["text"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
| return """\ | ||
| text | ||
| Template string used for rendering the title that | ||
| appear on x or y unified hover box. Variables are | ||
| inserted using %{variable}, for example "y: %{y}". | ||
| Numbers are formatted using d3-format's syntax | ||
| %{variable:d3-format}, for example "Price: %{y:$.2f}". | ||
| https://github.com/d3/d3-format/tree/v1.4.5#d3-format | ||
| for details on the formatting syntax. Dates are | ||
| formatted using d3-time-format's syntax | ||
| %{variable|d3-time-format}, for example "Day: | ||
| %{2019-01-01|%A}". https://github.com/d3/d3-time- | ||
| format/tree/v2.2.3#locale_format for details on the | ||
| date formatting syntax. | ||
| """ | ||
| def __init__(self, arg=None, text=None, **kwargs): | ||
| """ | ||
| Construct a new Unifiedhovertitle object | ||
| Parameters | ||
| ---------- | ||
| arg | ||
| dict of properties compatible with this constructor or | ||
| an instance of :class:`plotly.graph_objs.layout.xaxis.U | ||
| nifiedhovertitle` | ||
| text | ||
| Template string used for rendering the title that | ||
| appear on x or y unified hover box. Variables are | ||
| inserted using %{variable}, for example "y: %{y}". | ||
| Numbers are formatted using d3-format's syntax | ||
| %{variable:d3-format}, for example "Price: %{y:$.2f}". | ||
| https://github.com/d3/d3-format/tree/v1.4.5#d3-format | ||
| for details on the formatting syntax. Dates are | ||
| formatted using d3-time-format's syntax | ||
| %{variable|d3-time-format}, for example "Day: | ||
| %{2019-01-01|%A}". https://github.com/d3/d3-time- | ||
| format/tree/v2.2.3#locale_format for details on the | ||
| date formatting syntax. | ||
| Returns | ||
| ------- | ||
| Unifiedhovertitle | ||
| """ | ||
| super().__init__("unifiedhovertitle") | ||
| if "_parent" in kwargs: | ||
| self._parent = kwargs["_parent"] | ||
| return | ||
| if arg is None: | ||
| arg = {} | ||
| elif isinstance(arg, self.__class__): | ||
| arg = arg.to_plotly_json() | ||
| elif isinstance(arg, dict): | ||
| arg = _copy.copy(arg) | ||
| else: | ||
| raise ValueError("""\ | ||
| The first argument to the plotly.graph_objs.layout.xaxis.Unifiedhovertitle | ||
| constructor must be a dict or | ||
| an instance of :class:`plotly.graph_objs.layout.xaxis.Unifiedhovertitle`""") | ||
| self._skip_invalid = kwargs.pop("skip_invalid", False) | ||
| self._validate = kwargs.pop("_validate", True) | ||
| self._set_property("text", arg, text) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
| # --- THIS FILE IS AUTO-GENERATED --- | ||
| # Modifications will be overwitten the next time code generation run. | ||
| from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType | ||
| import copy as _copy | ||
| class Unifiedhovertitle(_BaseLayoutHierarchyType): | ||
| _parent_path_str = "layout.yaxis" | ||
| _path_str = "layout.yaxis.unifiedhovertitle" | ||
| _valid_props = {"text"} | ||
| @property | ||
| def text(self): | ||
| """ | ||
| Template string used for rendering the title that appear on x | ||
| or y unified hover box. Variables are inserted using | ||
| %{variable}, for example "y: %{y}". Numbers are formatted using | ||
| d3-format's syntax %{variable:d3-format}, for example "Price: | ||
| %{y:$.2f}". | ||
| https://github.com/d3/d3-format/tree/v1.4.5#d3-format for | ||
| details on the formatting syntax. Dates are formatted using | ||
| d3-time-format's syntax %{variable|d3-time-format}, for example | ||
| "Day: %{2019-01-01|%A}". https://github.com/d3/d3-time- | ||
| format/tree/v2.2.3#locale_format for details on the date | ||
| formatting syntax. | ||
| The 'text' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["text"] | ||
| @text.setter | ||
| def text(self, val): | ||
| self["text"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
| return """\ | ||
| text | ||
| Template string used for rendering the title that | ||
| appear on x or y unified hover box. Variables are | ||
| inserted using %{variable}, for example "y: %{y}". | ||
| Numbers are formatted using d3-format's syntax | ||
| %{variable:d3-format}, for example "Price: %{y:$.2f}". | ||
| https://github.com/d3/d3-format/tree/v1.4.5#d3-format | ||
| for details on the formatting syntax. Dates are | ||
| formatted using d3-time-format's syntax | ||
| %{variable|d3-time-format}, for example "Day: | ||
| %{2019-01-01|%A}". https://github.com/d3/d3-time- | ||
| format/tree/v2.2.3#locale_format for details on the | ||
| date formatting syntax. | ||
| """ | ||
| def __init__(self, arg=None, text=None, **kwargs): | ||
| """ | ||
| Construct a new Unifiedhovertitle object | ||
| Parameters | ||
| ---------- | ||
| arg | ||
| dict of properties compatible with this constructor or | ||
| an instance of :class:`plotly.graph_objs.layout.yaxis.U | ||
| nifiedhovertitle` | ||
| text | ||
| Template string used for rendering the title that | ||
| appear on x or y unified hover box. Variables are | ||
| inserted using %{variable}, for example "y: %{y}". | ||
| Numbers are formatted using d3-format's syntax | ||
| %{variable:d3-format}, for example "Price: %{y:$.2f}". | ||
| https://github.com/d3/d3-format/tree/v1.4.5#d3-format | ||
| for details on the formatting syntax. Dates are | ||
| formatted using d3-time-format's syntax | ||
| %{variable|d3-time-format}, for example "Day: | ||
| %{2019-01-01|%A}". https://github.com/d3/d3-time- | ||
| format/tree/v2.2.3#locale_format for details on the | ||
| date formatting syntax. | ||
| Returns | ||
| ------- | ||
| Unifiedhovertitle | ||
| """ | ||
| super().__init__("unifiedhovertitle") | ||
| if "_parent" in kwargs: | ||
| self._parent = kwargs["_parent"] | ||
| return | ||
| if arg is None: | ||
| arg = {} | ||
| elif isinstance(arg, self.__class__): | ||
| arg = arg.to_plotly_json() | ||
| elif isinstance(arg, dict): | ||
| arg = _copy.copy(arg) | ||
| else: | ||
| raise ValueError("""\ | ||
| The first argument to the plotly.graph_objs.layout.yaxis.Unifiedhovertitle | ||
| constructor must be a dict or | ||
| an instance of :class:`plotly.graph_objs.layout.yaxis.Unifiedhovertitle`""") | ||
| self._skip_invalid = kwargs.pop("skip_invalid", False) | ||
| self._validate = kwargs.pop("_validate", True) | ||
| self._set_property("text", arg, text) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
Sorry, the diff of this file is too big to display
| var _JUPYTERLAB;(()=>{"use strict";var e,r,t={987:(e,r,t)=>{var o={"./index":()=>t.e(340).then((()=>()=>t(340))),"./mimeExtension":()=>t.e(340).then((()=>()=>t(340)))},a=(e,r)=>(t.R=r,r=t.o(o,e)?o[e]():Promise.resolve().then((()=>{throw new Error('Module "'+e+'" does not exist in container.')})),t.R=void 0,r),n=(e,r)=>{if(t.S){var o="default",a=t.S[o];if(a&&a!==e)throw new Error("Container initialization failed as it has already been initialized with a different share scope");return t.S[o]=e,t.I(o,r)}};t.d(r,{get:()=>a,init:()=>n})}},o={};function a(e){var r=o[e];if(void 0!==r)return r.exports;var n=o[e]={exports:{}};return t[e](n,n.exports,a),n.exports}a.m=t,a.c=o,a.amdO={},a.d=(e,r)=>{for(var t in r)a.o(r,t)&&!a.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},a.f={},a.e=e=>Promise.all(Object.keys(a.f).reduce(((r,t)=>(a.f[t](e,r),r)),[])),a.u=e=>e+".e7c6cfbf008f29878868.js?v=e7c6cfbf008f29878868",a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),e={},r="jupyterlab-plotly:",a.l=(t,o,n,i)=>{if(e[t])e[t].push(o);else{var l,u;if(void 0!==n)for(var p=document.getElementsByTagName("script"),s=0;s<p.length;s++){var d=p[s];if(d.getAttribute("src")==t||d.getAttribute("data-webpack")==r+n){l=d;break}}l||(u=!0,(l=document.createElement("script")).charset="utf-8",l.timeout=120,a.nc&&l.setAttribute("nonce",a.nc),l.setAttribute("data-webpack",r+n),l.src=t),e[t]=[o];var c=(r,o)=>{l.onerror=l.onload=null,clearTimeout(f);var a=e[t];if(delete e[t],l.parentNode&&l.parentNode.removeChild(l),a&&a.forEach((e=>e(o))),r)return r(o)},f=setTimeout(c.bind(null,void 0,{type:"timeout",target:l}),12e4);l.onerror=c.bind(null,l.onerror),l.onload=c.bind(null,l.onload),u&&document.head.appendChild(l)}},a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{a.S={};var e={},r={};a.I=(t,o)=>{o||(o=[]);var n=r[t];if(n||(n=r[t]={}),!(o.indexOf(n)>=0)){if(o.push(n),e[t])return e[t];a.o(a.S,t)||(a.S[t]={});var i=a.S[t],l="jupyterlab-plotly",u=[];return"default"===t&&((e,r,t,o)=>{var n=i[e]=i[e]||{},u=n[r];(!u||!u.loaded&&(1!=!u.eager?o:l>u.from))&&(n[r]={get:()=>a.e(340).then((()=>()=>a(340))),from:l,eager:!1})})("jupyterlab-plotly","6.0.1"),e[t]=u.length?Promise.all(u).then((()=>e[t]=1)):1}}})(),(()=>{var e;a.g.importScripts&&(e=a.g.location+"");var r=a.g.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var o=t.length-1;o>-1&&(!e||!/^http(s?):/.test(e));)e=t[o--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=e})(),(()=>{var e={80:0};a.f.j=(r,t)=>{var o=a.o(e,r)?e[r]:void 0;if(0!==o)if(o)t.push(o[2]);else{var n=new Promise(((t,a)=>o=e[r]=[t,a]));t.push(o[2]=n);var i=a.p+a.u(r),l=new Error;a.l(i,(t=>{if(a.o(e,r)&&(0!==(o=e[r])&&(e[r]=void 0),o)){var n=t&&("load"===t.type?"missing":t.type),i=t&&t.target&&t.target.src;l.message="Loading chunk "+r+" failed.\n("+n+": "+i+")",l.name="ChunkLoadError",l.type=n,l.request=i,o[1](l)}}),"chunk-"+r,r)}};var r=(r,t)=>{var o,n,[i,l,u]=t,p=0;if(i.some((r=>0!==e[r]))){for(o in l)a.o(l,o)&&(a.m[o]=l[o]);u&&u(a)}for(r&&r(t);p<i.length;p++)n=i[p],a.o(e,n)&&e[n]&&e[n][0](),e[n]=0},t=self.webpackChunkjupyterlab_plotly=self.webpackChunkjupyterlab_plotly||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})();var n=a(987);(_JUPYTERLAB=void 0===_JUPYTERLAB?{}:_JUPYTERLAB)["jupyterlab-plotly"]=n})(); |
+3
-3
| { | ||
| "schemaVersion": 1, | ||
| "name": "jupyterlab-plotly", | ||
| "packageName": "jupyterlab-plotly", | ||
| "version": "6.0.1", | ||
| "packageManager": "python", | ||
| "jupyterlab": { | ||
| "mimeExtension": "lib/mimeExtension.js" | ||
| } | ||
| } | ||
| } |
+1
-1
| Metadata-Version: 2.4 | ||
| Name: plotly | ||
| Version: 6.2.0 | ||
| Version: 6.3.0 | ||
| Summary: An open-source interactive data visualization library for Python | ||
@@ -5,0 +5,0 @@ Author-email: Chris P <chris@plot.ly> |
| [console_scripts] | ||
| plotly_get_chrome = plotly.io._kaleido:get_chrome | ||
| plotly_get_chrome = plotly.io._kaleido:plotly_get_chrome |
| Metadata-Version: 2.4 | ||
| Name: plotly | ||
| Version: 6.2.0 | ||
| Version: 6.3.0 | ||
| Summary: An open-source interactive data visualization library for Python | ||
@@ -5,0 +5,0 @@ Author-email: Chris P <chris@plot.ly> |
@@ -1113,2 +1113,12 @@ from warnings import warn | ||
| """ | ||
| if locationmode == "country names": | ||
| warn( | ||
| "The library used by the *country names* `locationmode` option is changing in an upcoming version. " | ||
| "Country names in existing plots may not work in the new version. " | ||
| "To ensure consistent behavior, consider setting `locationmode` to *ISO-3*.", | ||
| DeprecationWarning, | ||
| stacklevel=2, | ||
| ) | ||
| return make_figure( | ||
@@ -1172,2 +1182,12 @@ args=locals(), | ||
| """ | ||
| if locationmode == "country names": | ||
| warn( | ||
| "The library used by the *country names* `locationmode` option is changing in an upcoming version. " | ||
| "Country names in existing plots may not work in the new version. " | ||
| "To ensure consistent behavior, consider setting `locationmode` to *ISO-3*.", | ||
| DeprecationWarning, | ||
| stacklevel=2, | ||
| ) | ||
| return make_figure( | ||
@@ -1174,0 +1194,0 @@ args=locals(), |
@@ -263,3 +263,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -1090,4 +1090,5 @@ | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1373,4 +1374,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1377,0 +1379,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -6,2 +6,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| import copy as _copy | ||
| import warnings | ||
@@ -374,3 +375,3 @@ | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -599,7 +600,10 @@ | ||
| """ | ||
| Determines the set of locations used to match entries in | ||
| `locations` to regions on the map. Values "ISO-3", "USA- | ||
| states", *country names* correspond to features on the base map | ||
| and value "geojson-id" corresponds to features from a custom | ||
| GeoJSON linked to the `geojson` attribute. | ||
| The library used by the *country names* `locationmode` option | ||
| is changing in an upcoming version. Country names in existing | ||
| plots may not work in the new version. Determines the set of | ||
| locations used to match entries in `locations` to regions on | ||
| the map. Values "ISO-3", "USA-states", *country names* | ||
| correspond to features on the base map and value "geojson-id" | ||
| corresponds to features from a custom GeoJSON linked to the | ||
| `geojson` attribute. | ||
@@ -1202,4 +1206,5 @@ The 'locationmode' property is an enumeration that may be specified as: | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1248,8 +1253,11 @@ Sets the source reference on Chart Studio Cloud for | ||
| locationmode | ||
| Determines the set of locations used to match entries | ||
| in `locations` to regions on the map. Values "ISO-3", | ||
| "USA-states", *country names* correspond to features on | ||
| the base map and value "geojson-id" corresponds to | ||
| features from a custom GeoJSON linked to the `geojson` | ||
| attribute. | ||
| The library used by the *country names* `locationmode` | ||
| option is changing in an upcoming version. Country | ||
| names in existing plots may not work in the new | ||
| version. Determines the set of locations used to match | ||
| entries in `locations` to regions on the map. Values | ||
| "ISO-3", "USA-states", *country names* correspond to | ||
| features on the base map and value "geojson-id" | ||
| corresponds to features from a custom GeoJSON linked to | ||
| the `geojson` attribute. | ||
| locations | ||
@@ -1523,4 +1531,5 @@ Sets the coordinates via location IDs or names. See | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1569,8 +1578,11 @@ Sets the source reference on Chart Studio Cloud for | ||
| locationmode | ||
| Determines the set of locations used to match entries | ||
| in `locations` to regions on the map. Values "ISO-3", | ||
| "USA-states", *country names* correspond to features on | ||
| the base map and value "geojson-id" corresponds to | ||
| features from a custom GeoJSON linked to the `geojson` | ||
| attribute. | ||
| The library used by the *country names* `locationmode` | ||
| option is changing in an upcoming version. Country | ||
| names in existing plots may not work in the new | ||
| version. Determines the set of locations used to match | ||
| entries in `locations` to regions on the map. Values | ||
| "ISO-3", "USA-states", *country names* correspond to | ||
| features on the base map and value "geojson-id" | ||
| corresponds to features from a custom GeoJSON linked to | ||
| the `geojson` attribute. | ||
| locations | ||
@@ -1707,2 +1719,11 @@ Sets the coordinates via location IDs or names. See | ||
| if locationmode == "country names" and kwargs.get("_validate"): | ||
| warnings.warn( | ||
| "The library used by the *country names* `locationmode` option is changing in an upcoming version. " | ||
| "Country names in existing plots may not work in the new version. " | ||
| "To ensure consistent behavior, consider setting `locationmode` to *ISO-3*.", | ||
| DeprecationWarning, | ||
| stacklevel=5, | ||
| ) | ||
| self._skip_invalid = kwargs.pop("skip_invalid", False) | ||
@@ -1709,0 +1730,0 @@ self._validate = kwargs.pop("_validate", True) |
@@ -371,3 +371,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -1197,3 +1197,3 @@ | ||
| `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -1515,3 +1515,3 @@ `<extra></extra>`. | ||
| `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -1518,0 +1518,0 @@ `<extra></extra>`. |
@@ -372,3 +372,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -1202,3 +1202,3 @@ | ||
| `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -1530,3 +1530,3 @@ `<extra></extra>`. | ||
| `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -1533,0 +1533,0 @@ `<extra></extra>`. |
@@ -328,3 +328,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -1165,4 +1165,5 @@ | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1480,4 +1481,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1484,0 +1486,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -329,3 +329,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -1170,4 +1170,5 @@ | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1494,4 +1495,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1498,0 +1500,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -262,3 +262,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| `<extra>` is displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary box | ||
| `<extra>%{fullData.name}</extra>`. To hide the secondary box | ||
| completely, use an empty tag `<extra></extra>`. | ||
@@ -1094,4 +1094,5 @@ | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1393,4 +1394,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1397,0 +1399,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -257,4 +257,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| Anything contained in tag `<extra>` is displayed in the | ||
| secondary box, for example "<extra>{fullData.name}</extra>". To | ||
| hide the secondary box completely, use an empty tag | ||
| secondary box, for example `<extra>%{fullData.name}</extra>`. | ||
| To hide the secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
@@ -1174,4 +1174,5 @@ | ||
| secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1497,4 +1498,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1501,0 +1503,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -240,3 +240,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary box | ||
| `<extra>%{fullData.name}</extra>`. To hide the secondary box | ||
| completely, use an empty tag `<extra></extra>`. | ||
@@ -960,4 +960,5 @@ | ||
| secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1233,4 +1234,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1237,0 +1239,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -257,4 +257,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| Anything contained in tag `<extra>` is displayed in the | ||
| secondary box, for example "<extra>{fullData.name}</extra>". To | ||
| hide the secondary box completely, use an empty tag | ||
| secondary box, for example `<extra>%{fullData.name}</extra>`. | ||
| To hide the secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
@@ -630,3 +630,3 @@ | ||
| in tag `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -814,3 +814,3 @@ `<extra></extra>`. | ||
| in tag `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -817,0 +817,0 @@ `<extra></extra>`. |
@@ -293,3 +293,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -1141,4 +1141,5 @@ | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1454,4 +1455,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1458,0 +1460,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -295,3 +295,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -1147,4 +1147,5 @@ | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1469,4 +1470,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1473,0 +1475,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -303,3 +303,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -1183,4 +1183,5 @@ | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1517,4 +1518,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1521,0 +1523,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -242,3 +242,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -990,4 +990,5 @@ | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1282,4 +1283,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1286,0 +1288,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -256,4 +256,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| Anything contained in tag `<extra>` is displayed in the | ||
| secondary box, for example "<extra>{fullData.name}</extra>". To | ||
| hide the secondary box completely, use an empty tag | ||
| secondary box, for example `<extra>%{fullData.name}</extra>`. | ||
| To hide the secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
@@ -1161,4 +1161,5 @@ | ||
| secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1488,4 +1489,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1492,0 +1494,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -256,4 +256,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| Anything contained in tag `<extra>` is displayed in the | ||
| secondary box, for example "<extra>{fullData.name}</extra>". To | ||
| hide the secondary box completely, use an empty tag | ||
| secondary box, for example `<extra>%{fullData.name}</extra>`. | ||
| To hide the secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
@@ -1154,4 +1154,5 @@ | ||
| secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1474,4 +1475,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -1478,0 +1480,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -18,2 +18,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "fillmode", | ||
| "path", | ||
| "pathsrc", | ||
| "shape", | ||
@@ -155,2 +157,42 @@ "shapesrc", | ||
| @property | ||
| def path(self): | ||
| """ | ||
| Sets a custom path for pattern fill. Use with no `shape` or | ||
| `solidity`, provide an SVG path string for the regions of the | ||
| square from (0,0) to (`size`,`size`) to color. | ||
| The 'path' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| - A tuple, list, or one-dimensional numpy array of the above | ||
| Returns | ||
| ------- | ||
| str|numpy.ndarray | ||
| """ | ||
| return self["path"] | ||
| @path.setter | ||
| def path(self, val): | ||
| self["path"] = val | ||
| @property | ||
| def pathsrc(self): | ||
| """ | ||
| Sets the source reference on Chart Studio Cloud for `path`. | ||
| The 'pathsrc' property must be specified as a string or | ||
| as a plotly.grid_objs.Column object | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["pathsrc"] | ||
| @pathsrc.setter | ||
| def pathsrc(self, val): | ||
| self["pathsrc"] = val | ||
| @property | ||
| def shape(self): | ||
@@ -299,2 +341,10 @@ """ | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -333,2 +383,4 @@ Sets the shape of the pattern fill. By default, no | ||
| fillmode=None, | ||
| path=None, | ||
| pathsrc=None, | ||
| shape=None, | ||
@@ -377,2 +429,10 @@ shapesrc=None, | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -431,2 +491,4 @@ Sets the shape of the pattern fill. By default, no | ||
| self._set_property("fillmode", arg, fillmode) | ||
| self._set_property("path", arg, path) | ||
| self._set_property("pathsrc", arg, pathsrc) | ||
| self._set_property("shape", arg, shape) | ||
@@ -433,0 +495,0 @@ self._set_property("shapesrc", arg, shapesrc) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -18,2 +18,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "fillmode", | ||
| "path", | ||
| "pathsrc", | ||
| "shape", | ||
@@ -155,2 +157,42 @@ "shapesrc", | ||
| @property | ||
| def path(self): | ||
| """ | ||
| Sets a custom path for pattern fill. Use with no `shape` or | ||
| `solidity`, provide an SVG path string for the regions of the | ||
| square from (0,0) to (`size`,`size`) to color. | ||
| The 'path' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| - A tuple, list, or one-dimensional numpy array of the above | ||
| Returns | ||
| ------- | ||
| str|numpy.ndarray | ||
| """ | ||
| return self["path"] | ||
| @path.setter | ||
| def path(self, val): | ||
| self["path"] = val | ||
| @property | ||
| def pathsrc(self): | ||
| """ | ||
| Sets the source reference on Chart Studio Cloud for `path`. | ||
| The 'pathsrc' property must be specified as a string or | ||
| as a plotly.grid_objs.Column object | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["pathsrc"] | ||
| @pathsrc.setter | ||
| def pathsrc(self, val): | ||
| self["pathsrc"] = val | ||
| @property | ||
| def shape(self): | ||
@@ -299,2 +341,10 @@ """ | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -333,2 +383,4 @@ Sets the shape of the pattern fill. By default, no | ||
| fillmode=None, | ||
| path=None, | ||
| pathsrc=None, | ||
| shape=None, | ||
@@ -377,2 +429,10 @@ shapesrc=None, | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -431,2 +491,4 @@ Sets the shape of the pattern fill. By default, no | ||
| self._set_property("fillmode", arg, fillmode) | ||
| self._set_property("path", arg, path) | ||
| self._set_property("pathsrc", arg, pathsrc) | ||
| self._set_property("shape", arg, shape) | ||
@@ -433,0 +495,0 @@ self._set_property("shapesrc", arg, shapesrc) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| "split", | ||
@@ -214,2 +215,21 @@ } | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def split(self): | ||
@@ -268,2 +288,5 @@ """ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| split | ||
@@ -286,2 +309,3 @@ Show hover information (open, close, high, low) in | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| split=None, | ||
@@ -331,2 +355,5 @@ **kwargs, | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| split | ||
@@ -369,4 +396,5 @@ Show hover information (open, close, high, low) in | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._set_property("split", arg, split) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -241,7 +241,7 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| `operation` is set to one of the comparison values | ||
| (=,<,>=,>,<=) "value" is expected to be a number. When | ||
| (`=,<,>=,>,<=`) "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. | ||
| (`[],(),[),(],][,)(,](,)[`) "value" is expected to be an array | ||
| of two numbers where the first is the lower bound and the | ||
| second is the upper bound. | ||
@@ -313,7 +313,7 @@ The 'value' property accepts values of any type | ||
| 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. | ||
| (`=,<,>=,>,<=`) "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. | ||
| """ | ||
@@ -396,7 +396,7 @@ | ||
| 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. | ||
| (`=,<,>=,>,<=`) "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. | ||
@@ -403,0 +403,0 @@ Returns |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -240,7 +240,7 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| `operation` is set to one of the comparison values | ||
| (=,<,>=,>,<=) "value" is expected to be a number. When | ||
| (`=,<,>=,>,<=`) "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. | ||
| (`[],(),[),(],][,)(,](,)[`) "value" is expected to be an array | ||
| of two numbers where the first is the lower bound and the | ||
| second is the upper bound. | ||
@@ -311,7 +311,7 @@ The 'value' property accepts values of any type | ||
| 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. | ||
| (`=,<,>=,>,<=`) "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. | ||
| """ | ||
@@ -393,7 +393,7 @@ | ||
| 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. | ||
| (`=,<,>=,>,<=`) "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. | ||
@@ -400,0 +400,0 @@ Returns |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -18,2 +18,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "fillmode", | ||
| "path", | ||
| "pathsrc", | ||
| "shape", | ||
@@ -155,2 +157,42 @@ "shapesrc", | ||
| @property | ||
| def path(self): | ||
| """ | ||
| Sets a custom path for pattern fill. Use with no `shape` or | ||
| `solidity`, provide an SVG path string for the regions of the | ||
| square from (0,0) to (`size`,`size`) to color. | ||
| The 'path' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| - A tuple, list, or one-dimensional numpy array of the above | ||
| Returns | ||
| ------- | ||
| str|numpy.ndarray | ||
| """ | ||
| return self["path"] | ||
| @path.setter | ||
| def path(self, val): | ||
| self["path"] = val | ||
| @property | ||
| def pathsrc(self): | ||
| """ | ||
| Sets the source reference on Chart Studio Cloud for `path`. | ||
| The 'pathsrc' property must be specified as a string or | ||
| as a plotly.grid_objs.Column object | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["pathsrc"] | ||
| @pathsrc.setter | ||
| def pathsrc(self, val): | ||
| self["pathsrc"] = val | ||
| @property | ||
| def shape(self): | ||
@@ -299,2 +341,10 @@ """ | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -333,2 +383,4 @@ Sets the shape of the pattern fill. By default, no | ||
| fillmode=None, | ||
| path=None, | ||
| pathsrc=None, | ||
| shape=None, | ||
@@ -377,2 +429,10 @@ shapesrc=None, | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -431,2 +491,4 @@ Sets the shape of the pattern fill. By default, no | ||
| self._set_property("fillmode", arg, fillmode) | ||
| self._set_property("path", arg, path) | ||
| self._set_property("pathsrc", arg, pathsrc) | ||
| self._set_property("shape", arg, shape) | ||
@@ -433,0 +495,0 @@ self._set_property("shapesrc", arg, shapesrc) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -18,2 +18,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "fillmode", | ||
| "path", | ||
| "pathsrc", | ||
| "shape", | ||
@@ -155,2 +157,42 @@ "shapesrc", | ||
| @property | ||
| def path(self): | ||
| """ | ||
| Sets a custom path for pattern fill. Use with no `shape` or | ||
| `solidity`, provide an SVG path string for the regions of the | ||
| square from (0,0) to (`size`,`size`) to color. | ||
| The 'path' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| - A tuple, list, or one-dimensional numpy array of the above | ||
| Returns | ||
| ------- | ||
| str|numpy.ndarray | ||
| """ | ||
| return self["path"] | ||
| @path.setter | ||
| def path(self, val): | ||
| self["path"] = val | ||
| @property | ||
| def pathsrc(self): | ||
| """ | ||
| Sets the source reference on Chart Studio Cloud for `path`. | ||
| The 'pathsrc' property must be specified as a string or | ||
| as a plotly.grid_objs.Column object | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["pathsrc"] | ||
| @pathsrc.setter | ||
| def pathsrc(self, val): | ||
| self["pathsrc"] = val | ||
| @property | ||
| def shape(self): | ||
@@ -299,2 +341,10 @@ """ | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -333,2 +383,4 @@ Sets the shape of the pattern fill. By default, no | ||
| fillmode=None, | ||
| path=None, | ||
| pathsrc=None, | ||
| shape=None, | ||
@@ -377,2 +429,10 @@ shapesrc=None, | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -431,2 +491,4 @@ Sets the shape of the pattern fill. By default, no | ||
| self._set_property("fillmode", arg, fillmode) | ||
| self._set_property("path", arg, path) | ||
| self._set_property("pathsrc", arg, pathsrc) | ||
| self._set_property("shape", arg, shape) | ||
@@ -433,0 +495,0 @@ self._set_property("shapesrc", arg, shapesrc) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -241,7 +241,7 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| `operation` is set to one of the comparison values | ||
| (=,<,>=,>,<=) "value" is expected to be a number. When | ||
| (`=,<,>=,>,<=`) "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. | ||
| (`[],(),[),(],][,)(,](,)[`) "value" is expected to be an array | ||
| of two numbers where the first is the lower bound and the | ||
| second is the upper bound. | ||
@@ -313,7 +313,7 @@ The 'value' property accepts values of any type | ||
| 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. | ||
| (`=,<,>=,>,<=`) "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. | ||
| """ | ||
@@ -396,7 +396,7 @@ | ||
| 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. | ||
| (`=,<,>=,>,<=`) "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. | ||
@@ -403,0 +403,0 @@ Returns |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -18,2 +18,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "fillmode", | ||
| "path", | ||
| "pathsrc", | ||
| "shape", | ||
@@ -155,2 +157,42 @@ "shapesrc", | ||
| @property | ||
| def path(self): | ||
| """ | ||
| Sets a custom path for pattern fill. Use with no `shape` or | ||
| `solidity`, provide an SVG path string for the regions of the | ||
| square from (0,0) to (`size`,`size`) to color. | ||
| The 'path' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| - A tuple, list, or one-dimensional numpy array of the above | ||
| Returns | ||
| ------- | ||
| str|numpy.ndarray | ||
| """ | ||
| return self["path"] | ||
| @path.setter | ||
| def path(self, val): | ||
| self["path"] = val | ||
| @property | ||
| def pathsrc(self): | ||
| """ | ||
| Sets the source reference on Chart Studio Cloud for `path`. | ||
| The 'pathsrc' property must be specified as a string or | ||
| as a plotly.grid_objs.Column object | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["pathsrc"] | ||
| @pathsrc.setter | ||
| def pathsrc(self, val): | ||
| self["pathsrc"] = val | ||
| @property | ||
| def shape(self): | ||
@@ -299,2 +341,10 @@ """ | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -333,2 +383,4 @@ Sets the shape of the pattern fill. By default, no | ||
| fillmode=None, | ||
| path=None, | ||
| pathsrc=None, | ||
| shape=None, | ||
@@ -377,2 +429,10 @@ shapesrc=None, | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -431,2 +491,4 @@ Sets the shape of the pattern fill. By default, no | ||
| self._set_property("fillmode", arg, fillmode) | ||
| self._set_property("path", arg, path) | ||
| self._set_property("pathsrc", arg, pathsrc) | ||
| self._set_property("shape", arg, shape) | ||
@@ -433,0 +495,0 @@ self._set_property("shapesrc", arg, shapesrc) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -448,4 +448,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| - One of the following enumeration values: | ||
| ['africa', 'asia', 'europe', 'north america', 'south | ||
| america', 'usa', 'world'] | ||
| ['africa', 'antarctica', 'asia', 'europe', 'north | ||
| america', 'oceania', 'south america', 'usa', 'world'] | ||
@@ -452,0 +452,0 @@ Returns |
@@ -18,2 +18,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelength", | ||
| "showarrow", | ||
| } | ||
@@ -155,2 +156,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -180,2 +200,5 @@ return """\ | ||
| characters and add an ellipsis. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -192,2 +215,3 @@ | ||
| namelength=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -226,2 +250,5 @@ ): | ||
| characters and add an ellipsis. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -258,3 +285,4 @@ Returns | ||
| self._set_property("namelength", arg, namelength) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -25,2 +25,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "itemwidth", | ||
| "maxheight", | ||
| "orientation", | ||
@@ -313,2 +314,28 @@ "title", | ||
| @property | ||
| def maxheight(self): | ||
| """ | ||
| Sets the max height (in px) of the legend, or max height ratio | ||
| (reference height * ratio) if less than or equal to 1. Default | ||
| value is: 0.5 for horizontal legends; 1 for vertical legends. | ||
| The minimum allowed height is 30px. For a ratio of 0.5, the | ||
| legend will take up to 50% of the reference height before | ||
| displaying a scrollbar. The reference height is the full layout | ||
| height with the following exception: vertically oriented | ||
| legends with a `yref` of `"paper", located to the side of the | ||
| plot. In this case, the reference height is the plot height. | ||
| The 'maxheight' property is a number and may be specified as: | ||
| - An int or float in the interval [0, inf] | ||
| Returns | ||
| ------- | ||
| int|float | ||
| """ | ||
| return self["maxheight"] | ||
| @maxheight.setter | ||
| def maxheight(self, val): | ||
| self["maxheight"] = val | ||
| @property | ||
| def orientation(self): | ||
@@ -550,3 +577,3 @@ """ | ||
| """ | ||
| Sets the legend's vertical position anchor This anchor binds | ||
| Sets the legend's vertical position anchor. This anchor binds | ||
| the `y` position to the "top", "middle" or "bottom" of the | ||
@@ -642,2 +669,14 @@ legend. Value "auto" anchors legends at their bottom for `y` | ||
| part other than the title.text). | ||
| maxheight | ||
| Sets the max height (in px) of the legend, or max | ||
| height ratio (reference height * ratio) if less than or | ||
| equal to 1. Default value is: 0.5 for horizontal | ||
| legends; 1 for vertical legends. The minimum allowed | ||
| height is 30px. For a ratio of 0.5, the legend will | ||
| take up to 50% of the reference height before | ||
| displaying a scrollbar. The reference height is the | ||
| full layout height with the following exception: | ||
| vertically oriented legends with a `yref` of `"paper", | ||
| located to the side of the plot. In this case, the | ||
| reference height is the plot height. | ||
| orientation | ||
@@ -701,3 +740,3 @@ Sets the orientation of the legend. | ||
| yanchor | ||
| Sets the legend's vertical position anchor This anchor | ||
| Sets the legend's vertical position anchor. This anchor | ||
| binds the `y` position to the "top", "middle" or | ||
@@ -731,2 +770,3 @@ "bottom" of the legend. Value "auto" anchors legends at | ||
| itemwidth=None, | ||
| maxheight=None, | ||
| orientation=None, | ||
@@ -801,2 +841,14 @@ title=None, | ||
| part other than the title.text). | ||
| maxheight | ||
| Sets the max height (in px) of the legend, or max | ||
| height ratio (reference height * ratio) if less than or | ||
| equal to 1. Default value is: 0.5 for horizontal | ||
| legends; 1 for vertical legends. The minimum allowed | ||
| height is 30px. For a ratio of 0.5, the legend will | ||
| take up to 50% of the reference height before | ||
| displaying a scrollbar. The reference height is the | ||
| full layout height with the following exception: | ||
| vertically oriented legends with a `yref` of `"paper", | ||
| located to the side of the plot. In this case, the | ||
| reference height is the plot height. | ||
| orientation | ||
@@ -860,3 +912,3 @@ Sets the orientation of the legend. | ||
| yanchor | ||
| Sets the legend's vertical position anchor This anchor | ||
| Sets the legend's vertical position anchor. This anchor | ||
| binds the `y` position to the "top", "middle" or | ||
@@ -910,2 +962,3 @@ "bottom" of the legend. Value "auto" anchors legends at | ||
| self._set_property("itemwidth", arg, itemwidth) | ||
| self._set_property("maxheight", arg, maxheight) | ||
| self._set_property("orientation", arg, orientation) | ||
@@ -912,0 +965,0 @@ self._set_property("title", arg, title) |
@@ -17,3 +17,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| Sets the symbol icon image (map.layer.layout.icon-image). Full | ||
| list: https://www.map.com/maki-icons/ | ||
| list: https://www.mapbox.com/maki-icons/ | ||
@@ -146,3 +146,3 @@ The 'icon' property is a string and must be specified as: | ||
| Sets the symbol icon image (map.layer.layout.icon- | ||
| image). Full list: https://www.map.com/maki-icons/ | ||
| image). Full list: https://www.mapbox.com/maki-icons/ | ||
| iconsize | ||
@@ -192,3 +192,3 @@ Sets the symbol icon size (map.layer.layout.icon-size). | ||
| Sets the symbol icon image (map.layer.layout.icon- | ||
| image). Full list: https://www.map.com/maki-icons/ | ||
| image). Full list: https://www.mapbox.com/maki-icons/ | ||
| iconsize | ||
@@ -195,0 +195,0 @@ Sets the symbol icon size (map.layer.layout.icon-size). |
@@ -571,5 +571,6 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| Sets the text associated with this annotation. Plotly uses a | ||
| subset of HTML tags to do things like newline (<br>), bold | ||
| (<b></b>), italics (<i></i>), hyperlinks (<a href='...'></a>). | ||
| Tags <em>, <sup>, <sub>, <s>, <u> <span> are also supported. | ||
| subset of HTML tags to do things like newline (`<br>`), bold | ||
| (`<b></b>`), italics (`<i></i>`), hyperlinks (`<a | ||
| href='...'></a>`). Tags `<em>`, `<sup>`, `<sub>`, `<s>`, `<u>`, | ||
| and `<span>` are also supported. | ||
@@ -920,5 +921,6 @@ The 'text' property is a string and must be specified as: | ||
| uses a subset of HTML tags to do things like newline | ||
| (<br>), bold (<b></b>), italics (<i></i>), hyperlinks | ||
| (<a href='...'></a>). Tags <em>, <sup>, <sub>, <s>, <u> | ||
| <span> are also supported. | ||
| (`<br>`), bold (`<b></b>`), italics (`<i></i>`), | ||
| hyperlinks (`<a href='...'></a>`). Tags `<em>`, | ||
| `<sup>`, `<sub>`, `<s>`, `<u>`, and `<span>` are also | ||
| supported. | ||
| textangle | ||
@@ -1130,5 +1132,6 @@ Sets the angle at which the `text` is drawn with | ||
| uses a subset of HTML tags to do things like newline | ||
| (<br>), bold (<b></b>), italics (<i></i>), hyperlinks | ||
| (<a href='...'></a>). Tags <em>, <sup>, <sub>, <s>, <u> | ||
| <span> are also supported. | ||
| (`<br>`), bold (`<b></b>`), italics (`<i></i>`), | ||
| hyperlinks (`<a href='...'></a>`). Tags `<em>`, | ||
| `<sup>`, `<sub>`, `<s>`, `<u>`, and `<span>` are also | ||
| supported. | ||
| textangle | ||
@@ -1135,0 +1138,0 @@ Sets the angle at which the `text` is drawn with |
@@ -13,2 +13,3 @@ import sys | ||
| from ._title import Title | ||
| from ._unifiedhovertitle import Unifiedhovertitle | ||
| from . import rangeselector | ||
@@ -32,3 +33,4 @@ from . import rangeslider | ||
| "._title.Title", | ||
| "._unifiedhovertitle.Unifiedhovertitle", | ||
| ], | ||
| ) |
@@ -11,2 +11,3 @@ import sys | ||
| from ._title import Title | ||
| from ._unifiedhovertitle import Unifiedhovertitle | ||
| from . import title | ||
@@ -26,3 +27,4 @@ else: | ||
| "._title.Title", | ||
| "._unifiedhovertitle.Unifiedhovertitle", | ||
| ], | ||
| ) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| "split", | ||
@@ -214,2 +215,21 @@ } | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def split(self): | ||
@@ -268,2 +288,5 @@ """ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| split | ||
@@ -286,2 +309,3 @@ Show hover information (open, close, high, low) in | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| split=None, | ||
@@ -331,2 +355,5 @@ **kwargs, | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| split | ||
@@ -369,4 +396,5 @@ Show hover information (open, close, high, low) in | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._set_property("split", arg, split) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -306,4 +306,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| Anything contained in tag `<extra>` is displayed in the | ||
| secondary box, for example "<extra>{fullData.name}</extra>". To | ||
| hide the secondary box completely, use an empty tag | ||
| secondary box, for example `<extra>%{fullData.name}</extra>`. | ||
| To hide the secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
@@ -484,3 +484,3 @@ | ||
| in tag `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -625,3 +625,3 @@ `<extra></extra>`. | ||
| in tag `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -628,0 +628,0 @@ `<extra></extra>`. |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -18,2 +18,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "fillmode", | ||
| "path", | ||
| "pathsrc", | ||
| "shape", | ||
@@ -155,2 +157,42 @@ "shapesrc", | ||
| @property | ||
| def path(self): | ||
| """ | ||
| Sets a custom path for pattern fill. Use with no `shape` or | ||
| `solidity`, provide an SVG path string for the regions of the | ||
| square from (0,0) to (`size`,`size`) to color. | ||
| The 'path' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| - A tuple, list, or one-dimensional numpy array of the above | ||
| Returns | ||
| ------- | ||
| str|numpy.ndarray | ||
| """ | ||
| return self["path"] | ||
| @path.setter | ||
| def path(self, val): | ||
| self["path"] = val | ||
| @property | ||
| def pathsrc(self): | ||
| """ | ||
| Sets the source reference on Chart Studio Cloud for `path`. | ||
| The 'pathsrc' property must be specified as a string or | ||
| as a plotly.grid_objs.Column object | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["pathsrc"] | ||
| @pathsrc.setter | ||
| def pathsrc(self, val): | ||
| self["pathsrc"] = val | ||
| @property | ||
| def shape(self): | ||
@@ -299,2 +341,10 @@ """ | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -333,2 +383,4 @@ Sets the shape of the pattern fill. By default, no | ||
| fillmode=None, | ||
| path=None, | ||
| pathsrc=None, | ||
| shape=None, | ||
@@ -377,2 +429,10 @@ shapesrc=None, | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -431,2 +491,4 @@ Sets the shape of the pattern fill. By default, no | ||
| self._set_property("fillmode", arg, fillmode) | ||
| self._set_property("path", arg, path) | ||
| self._set_property("pathsrc", arg, pathsrc) | ||
| self._set_property("shape", arg, shape) | ||
@@ -433,0 +495,0 @@ self._set_property("shapesrc", arg, shapesrc) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -290,3 +290,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| contained in tag `<extra>` is displayed in the secondary box, | ||
| for example "<extra>{fullData.name}</extra>". To hide the | ||
| for example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag `<extra></extra>`. | ||
@@ -566,3 +566,3 @@ | ||
| tag `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -707,3 +707,3 @@ `<extra></extra>`. | ||
| tag `<extra>` is displayed in the secondary box, for | ||
| example "<extra>{fullData.name}</extra>". To hide the | ||
| example `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
@@ -710,0 +710,0 @@ `<extra></extra>`. |
@@ -226,3 +226,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary box | ||
| `<extra>%{fullData.name}</extra>`. To hide the secondary box | ||
| completely, use an empty tag `<extra></extra>`. | ||
@@ -489,4 +489,5 @@ | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -612,4 +613,5 @@ Sets the source reference on Chart Studio Cloud for | ||
| displayed in the secondary box, for example | ||
| "<extra>{fullData.name}</extra>". To hide the secondary | ||
| box completely, use an empty tag `<extra></extra>`. | ||
| `<extra>%{fullData.name}</extra>`. To hide the | ||
| secondary box completely, use an empty tag | ||
| `<extra></extra>`. | ||
| hovertemplatesrc | ||
@@ -616,0 +618,0 @@ Sets the source reference on Chart Studio Cloud for |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -18,2 +18,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "fillmode", | ||
| "path", | ||
| "pathsrc", | ||
| "shape", | ||
@@ -155,2 +157,42 @@ "shapesrc", | ||
| @property | ||
| def path(self): | ||
| """ | ||
| Sets a custom path for pattern fill. Use with no `shape` or | ||
| `solidity`, provide an SVG path string for the regions of the | ||
| square from (0,0) to (`size`,`size`) to color. | ||
| The 'path' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| - A tuple, list, or one-dimensional numpy array of the above | ||
| Returns | ||
| ------- | ||
| str|numpy.ndarray | ||
| """ | ||
| return self["path"] | ||
| @path.setter | ||
| def path(self, val): | ||
| self["path"] = val | ||
| @property | ||
| def pathsrc(self): | ||
| """ | ||
| Sets the source reference on Chart Studio Cloud for `path`. | ||
| The 'pathsrc' property must be specified as a string or | ||
| as a plotly.grid_objs.Column object | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["pathsrc"] | ||
| @pathsrc.setter | ||
| def pathsrc(self, val): | ||
| self["pathsrc"] = val | ||
| @property | ||
| def shape(self): | ||
@@ -299,2 +341,10 @@ """ | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -333,2 +383,4 @@ Sets the shape of the pattern fill. By default, no | ||
| fillmode=None, | ||
| path=None, | ||
| pathsrc=None, | ||
| shape=None, | ||
@@ -377,2 +429,10 @@ shapesrc=None, | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -431,2 +491,4 @@ Sets the shape of the pattern fill. By default, no | ||
| self._set_property("fillmode", arg, fillmode) | ||
| self._set_property("path", arg, path) | ||
| self._set_property("pathsrc", arg, pathsrc) | ||
| self._set_property("shape", arg, shape) | ||
@@ -433,0 +495,0 @@ self._set_property("shapesrc", arg, shapesrc) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -528,3 +528,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| """ | ||
| Sets the marker symbol. Full list: https://www.map.com/maki- | ||
| Sets the marker symbol. Full list: https://www.mapbox.com/maki- | ||
| icons/ Note that the array `marker.color` and `marker.size` are | ||
@@ -680,3 +680,3 @@ only available for "circle" symbols. | ||
| Sets the marker symbol. Full list: | ||
| https://www.map.com/maki-icons/ Note that the array | ||
| https://www.mapbox.com/maki-icons/ Note that the array | ||
| `marker.color` and `marker.size` are only available for | ||
@@ -838,3 +838,3 @@ "circle" symbols. | ||
| Sets the marker symbol. Full list: | ||
| https://www.map.com/maki-icons/ Note that the array | ||
| https://www.mapbox.com/maki-icons/ Note that the array | ||
| `marker.color` and `marker.size` are only available for | ||
@@ -841,0 +841,0 @@ "circle" symbols. |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -18,2 +18,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "fillmode", | ||
| "path", | ||
| "pathsrc", | ||
| "shape", | ||
@@ -155,2 +157,42 @@ "shapesrc", | ||
| @property | ||
| def path(self): | ||
| """ | ||
| Sets a custom path for pattern fill. Use with no `shape` or | ||
| `solidity`, provide an SVG path string for the regions of the | ||
| square from (0,0) to (`size`,`size`) to color. | ||
| The 'path' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| - A tuple, list, or one-dimensional numpy array of the above | ||
| Returns | ||
| ------- | ||
| str|numpy.ndarray | ||
| """ | ||
| return self["path"] | ||
| @path.setter | ||
| def path(self, val): | ||
| self["path"] = val | ||
| @property | ||
| def pathsrc(self): | ||
| """ | ||
| Sets the source reference on Chart Studio Cloud for `path`. | ||
| The 'pathsrc' property must be specified as a string or | ||
| as a plotly.grid_objs.Column object | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["pathsrc"] | ||
| @pathsrc.setter | ||
| def pathsrc(self, val): | ||
| self["pathsrc"] = val | ||
| @property | ||
| def shape(self): | ||
@@ -299,2 +341,10 @@ """ | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -333,2 +383,4 @@ Sets the shape of the pattern fill. By default, no | ||
| fillmode=None, | ||
| path=None, | ||
| pathsrc=None, | ||
| shape=None, | ||
@@ -377,2 +429,10 @@ shapesrc=None, | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -431,2 +491,4 @@ Sets the shape of the pattern fill. By default, no | ||
| self._set_property("fillmode", arg, fillmode) | ||
| self._set_property("path", arg, path) | ||
| self._set_property("pathsrc", arg, pathsrc) | ||
| self._set_property("shape", arg, shape) | ||
@@ -433,0 +495,0 @@ self._set_property("shapesrc", arg, shapesrc) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -18,2 +18,4 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "fillmode", | ||
| "path", | ||
| "pathsrc", | ||
| "shape", | ||
@@ -155,2 +157,42 @@ "shapesrc", | ||
| @property | ||
| def path(self): | ||
| """ | ||
| Sets a custom path for pattern fill. Use with no `shape` or | ||
| `solidity`, provide an SVG path string for the regions of the | ||
| square from (0,0) to (`size`,`size`) to color. | ||
| The 'path' property is a string and must be specified as: | ||
| - A string | ||
| - A number that will be converted to a string | ||
| - A tuple, list, or one-dimensional numpy array of the above | ||
| Returns | ||
| ------- | ||
| str|numpy.ndarray | ||
| """ | ||
| return self["path"] | ||
| @path.setter | ||
| def path(self, val): | ||
| self["path"] = val | ||
| @property | ||
| def pathsrc(self): | ||
| """ | ||
| Sets the source reference on Chart Studio Cloud for `path`. | ||
| The 'pathsrc' property must be specified as a string or | ||
| as a plotly.grid_objs.Column object | ||
| Returns | ||
| ------- | ||
| str | ||
| """ | ||
| return self["pathsrc"] | ||
| @pathsrc.setter | ||
| def pathsrc(self, val): | ||
| self["pathsrc"] = val | ||
| @property | ||
| def shape(self): | ||
@@ -299,2 +341,10 @@ """ | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -333,2 +383,4 @@ Sets the shape of the pattern fill. By default, no | ||
| fillmode=None, | ||
| path=None, | ||
| pathsrc=None, | ||
| shape=None, | ||
@@ -377,2 +429,10 @@ shapesrc=None, | ||
| default to `bgcolor` or a `fgcolor`. | ||
| path | ||
| Sets a custom path for pattern fill. Use with no | ||
| `shape` or `solidity`, provide an SVG path string for | ||
| the regions of the square from (0,0) to (`size`,`size`) | ||
| to color. | ||
| pathsrc | ||
| Sets the source reference on Chart Studio Cloud for | ||
| `path`. | ||
| shape | ||
@@ -431,2 +491,4 @@ Sets the shape of the pattern fill. By default, no | ||
| self._set_property("fillmode", arg, fillmode) | ||
| self._set_property("path", arg, path) | ||
| self._set_property("pathsrc", arg, pathsrc) | ||
| self._set_property("shape", arg, shape) | ||
@@ -433,0 +495,0 @@ self._set_property("shapesrc", arg, shapesrc) |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -21,2 +21,3 @@ # --- THIS FILE IS AUTO-GENERATED --- | ||
| "namelengthsrc", | ||
| "showarrow", | ||
| } | ||
@@ -213,2 +214,21 @@ | ||
| @property | ||
| def showarrow(self): | ||
| """ | ||
| Sets whether or not to show the hover label arrow/triangle | ||
| pointing to the data point. | ||
| The 'showarrow' property must be specified as a bool | ||
| (either True, or False) | ||
| Returns | ||
| ------- | ||
| bool | ||
| """ | ||
| return self["showarrow"] | ||
| @showarrow.setter | ||
| def showarrow(self, val): | ||
| self["showarrow"] = val | ||
| @property | ||
| def _prop_descriptions(self): | ||
@@ -248,2 +268,5 @@ return """\ | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
| """ | ||
@@ -263,2 +286,3 @@ | ||
| namelengthsrc=None, | ||
| showarrow=None, | ||
| **kwargs, | ||
@@ -307,2 +331,5 @@ ): | ||
| `namelength`. | ||
| showarrow | ||
| Sets whether or not to show the hover label | ||
| arrow/triangle pointing to the data point. | ||
@@ -342,3 +369,4 @@ Returns | ||
| self._set_property("namelengthsrc", arg, namelengthsrc) | ||
| self._set_property("showarrow", arg, showarrow) | ||
| self._process_kwargs(**dict(arg, **kwargs)) | ||
| self._skip_invalid = False |
@@ -20,3 +20,3 @@ # ruff: noqa: F401 | ||
| from . import base_renderers | ||
| from ._kaleido import defaults | ||
| from ._kaleido import defaults, get_chrome | ||
@@ -42,2 +42,3 @@ __all__ = [ | ||
| "defaults", | ||
| "get_chrome", | ||
| ] | ||
@@ -64,2 +65,3 @@ else: | ||
| "._kaleido.defaults", | ||
| "._kaleido.get_chrome", | ||
| ], | ||
@@ -66,0 +68,0 @@ ) |
@@ -151,3 +151,3 @@ import base64 | ||
| def __init__(self, width=None, height=None, scale=None, engine="auto"): | ||
| def __init__(self, width=None, height=None, scale=None, engine=None): | ||
| super(PngRenderer, self).__init__( | ||
@@ -174,3 +174,3 @@ mime_type="image/png", | ||
| def __init__(self, width=None, height=None, scale=None, engine="auto"): | ||
| def __init__(self, width=None, height=None, scale=None, engine=None): | ||
| super(SvgRenderer, self).__init__( | ||
@@ -197,3 +197,3 @@ mime_type="image/svg+xml", | ||
| def __init__(self, width=None, height=None, scale=None, engine="auto"): | ||
| def __init__(self, width=None, height=None, scale=None, engine=None): | ||
| super(JpegRenderer, self).__init__( | ||
@@ -219,3 +219,3 @@ mime_type="image/jpeg", | ||
| def __init__(self, width=None, height=None, scale=None, engine="auto"): | ||
| def __init__(self, width=None, height=None, scale=None, engine=None): | ||
| super(PdfRenderer, self).__init__( | ||
@@ -222,0 +222,0 @@ mime_type="application/pdf", |
@@ -228,4 +228,6 @@ import json | ||
| Convert a figure to JSON and write it to a file or writeable | ||
| object | ||
| object. | ||
| Note: A figure converted to JSON with one version of Plotly.py may not be compatible with another version. | ||
| Parameters | ||
@@ -418,4 +420,6 @@ ---------- | ||
| Construct a figure from the JSON contents of a local file or readable | ||
| Python object | ||
| Python object. | ||
| Note: A figure converted to JSON with one version of Plotly.py may not be compatible with another version. | ||
| Parameters | ||
@@ -422,0 +426,0 @@ ---------- |
+52
-24
@@ -778,7 +778,9 @@ import os | ||
| def get_chrome() -> None: | ||
| def plotly_get_chrome() -> None: | ||
| """ | ||
| Install Google Chrome for Kaleido (Required for Plotly image export). | ||
| This function can be run from the command line using the command `plotly_get_chrome` | ||
| defined in pyproject.toml | ||
| This function is a command-line wrapper for `plotly.io.get_chrome()`. | ||
| When running from the command line, use the command `plotly_get_chrome`; | ||
| when calling from Python code, use `plotly.io.get_chrome()`. | ||
| """ | ||
@@ -817,3 +819,2 @@ | ||
| chrome_install_path = None | ||
| user_specified_path = False | ||
| if "--path" in cli_args: | ||
@@ -826,4 +827,49 @@ path_index = cli_args.index("--path") + 1 | ||
| chrome_install_path = Path(chrome_install_path) | ||
| user_specified_path = True | ||
| # If any arguments remain, command syntax was incorrect -- print usage and exit | ||
| if len(cli_args) > 1: | ||
| print(usage) | ||
| sys.exit(1) | ||
| if not cli_yes: | ||
| print( | ||
| f""" | ||
| Plotly will install a copy of Google Chrome to be used for generating static images of plots. | ||
| Chrome will be installed at: {chrome_install_path}""" | ||
| ) | ||
| response = input("Do you want to proceed? [y/n] ") | ||
| if not response or response[0].lower() != "y": | ||
| print("Cancelled") | ||
| return | ||
| print("Installing Chrome for Plotly...") | ||
| exe_path = get_chrome(chrome_install_path) | ||
| print("Chrome installed successfully.") | ||
| print(f"The Chrome executable is now located at: {exe_path}") | ||
| def get_chrome(path: Union[str, Path, None] = None) -> Path: | ||
| """ | ||
| Get the path to the Chrome executable for Kaleido. | ||
| This function is used by the `plotly_get_chrome` command line utility. | ||
| Parameters | ||
| ---------- | ||
| path: str or Path or None | ||
| The path to the directory where Chrome should be installed. | ||
| If None, the default download path will be used. | ||
| """ | ||
| if not kaleido_available() or kaleido_major() < 1: | ||
| raise ValueError( | ||
| """ | ||
| This command requires Kaleido v1.0.0 or greater. | ||
| Install it using `pip install 'kaleido>=1.0.0'` or `pip install 'plotly[kaleido]'`." | ||
| """ | ||
| ) | ||
| # Use default download path if no path was specified | ||
| if path: | ||
| user_specified_path = True | ||
| chrome_install_path = Path(path) # Ensure it's a Path object | ||
| else: | ||
| user_specified_path = False | ||
| from choreographer.cli.defaults import default_download_path | ||
@@ -854,23 +900,5 @@ | ||
| # If any arguments remain, command syntax was incorrect -- print usage and exit | ||
| if len(cli_args) > 1: | ||
| print(usage) | ||
| sys.exit(1) | ||
| return kaleido.get_chrome_sync(path=chrome_install_path) | ||
| if not cli_yes: | ||
| print( | ||
| f""" | ||
| Plotly will install a copy of Google Chrome to be used for generating static images of plots. | ||
| Chrome will be installed at: {chrome_install_path}""" | ||
| ) | ||
| response = input("Do you want to proceed? [y/n] ") | ||
| if not response or response[0].lower() != "y": | ||
| print("Cancelled") | ||
| return | ||
| print("Installing Chrome for Plotly...") | ||
| exe_path = kaleido.get_chrome_sync(path=chrome_install_path) | ||
| print("Chrome installed successfully.") | ||
| print(f"The Chrome executable is now located at: {exe_path}") | ||
| __all__ = ["to_image", "write_image", "scope", "full_figure_for_development"] |
@@ -22,3 +22,3 @@ { | ||
| "lodash-es": "^4.17.21", | ||
| "plotly.js": "3.0.1", | ||
| "plotly.js": "3.1.0", | ||
| "@lumino/widgets": "~2.4.0" | ||
@@ -36,3 +36,3 @@ }, | ||
| "_build": { | ||
| "load": "static/remoteEntry.5153b2c003c011c482e3.js", | ||
| "load": "static/remoteEntry.38ea05461c254e327731.js", | ||
| "mimeExtension": "./mimeExtension" | ||
@@ -39,0 +39,0 @@ } |
| # DO NOT EDIT | ||
| # This file is generated by the updatebundle commands.py command | ||
| __plotlyjs_version__ = "3.0.1" | ||
| __plotlyjs_version__ = "3.1.0" |
+2
-2
@@ -35,3 +35,3 @@ [build-system] | ||
| license = {file="LICENSE.txt"} | ||
| version = "6.2.0" | ||
| version = "6.3.0" | ||
| dependencies = [ | ||
@@ -87,3 +87,3 @@ "narwhals>=1.15.1", | ||
| [project.scripts] | ||
| plotly_get_chrome = "plotly.io._kaleido:get_chrome" | ||
| plotly_get_chrome = "plotly.io._kaleido:plotly_get_chrome" | ||
@@ -90,0 +90,0 @@ [tool.pytest.ini_options] |
Sorry, the diff of this file is too big to display
| var _JUPYTERLAB;(()=>{"use strict";var e,r,t={987:(e,r,t)=>{var o={"./index":()=>t.e(340).then((()=>()=>t(340))),"./mimeExtension":()=>t.e(340).then((()=>()=>t(340)))},a=(e,r)=>(t.R=r,r=t.o(o,e)?o[e]():Promise.resolve().then((()=>{throw new Error('Module "'+e+'" does not exist in container.')})),t.R=void 0,r),n=(e,r)=>{if(t.S){var o="default",a=t.S[o];if(a&&a!==e)throw new Error("Container initialization failed as it has already been initialized with a different share scope");return t.S[o]=e,t.I(o,r)}};t.d(r,{get:()=>a,init:()=>n})}},o={};function a(e){var r=o[e];if(void 0!==r)return r.exports;var n=o[e]={exports:{}};return t[e](n,n.exports,a),n.exports}a.m=t,a.c=o,a.amdO={},a.d=(e,r)=>{for(var t in r)a.o(r,t)&&!a.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},a.f={},a.e=e=>Promise.all(Object.keys(a.f).reduce(((r,t)=>(a.f[t](e,r),r)),[])),a.u=e=>e+".2a23c8275d47a2531dae.js?v=2a23c8275d47a2531dae",a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),e={},r="jupyterlab-plotly:",a.l=(t,o,n,i)=>{if(e[t])e[t].push(o);else{var l,u;if(void 0!==n)for(var d=document.getElementsByTagName("script"),p=0;p<d.length;p++){var s=d[p];if(s.getAttribute("src")==t||s.getAttribute("data-webpack")==r+n){l=s;break}}l||(u=!0,(l=document.createElement("script")).charset="utf-8",l.timeout=120,a.nc&&l.setAttribute("nonce",a.nc),l.setAttribute("data-webpack",r+n),l.src=t),e[t]=[o];var c=(r,o)=>{l.onerror=l.onload=null,clearTimeout(f);var a=e[t];if(delete e[t],l.parentNode&&l.parentNode.removeChild(l),a&&a.forEach((e=>e(o))),r)return r(o)},f=setTimeout(c.bind(null,void 0,{type:"timeout",target:l}),12e4);l.onerror=c.bind(null,l.onerror),l.onload=c.bind(null,l.onload),u&&document.head.appendChild(l)}},a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{a.S={};var e={},r={};a.I=(t,o)=>{o||(o=[]);var n=r[t];if(n||(n=r[t]={}),!(o.indexOf(n)>=0)){if(o.push(n),e[t])return e[t];a.o(a.S,t)||(a.S[t]={});var i=a.S[t],l="jupyterlab-plotly",u=[];return"default"===t&&((e,r,t,o)=>{var n=i[e]=i[e]||{},u=n[r];(!u||!u.loaded&&(1!=!u.eager?o:l>u.from))&&(n[r]={get:()=>a.e(340).then((()=>()=>a(340))),from:l,eager:!1})})("jupyterlab-plotly","6.0.1"),e[t]=u.length?Promise.all(u).then((()=>e[t]=1)):1}}})(),(()=>{var e;a.g.importScripts&&(e=a.g.location+"");var r=a.g.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var o=t.length-1;o>-1&&(!e||!/^http(s?):/.test(e));)e=t[o--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=e})(),(()=>{var e={80:0};a.f.j=(r,t)=>{var o=a.o(e,r)?e[r]:void 0;if(0!==o)if(o)t.push(o[2]);else{var n=new Promise(((t,a)=>o=e[r]=[t,a]));t.push(o[2]=n);var i=a.p+a.u(r),l=new Error;a.l(i,(t=>{if(a.o(e,r)&&(0!==(o=e[r])&&(e[r]=void 0),o)){var n=t&&("load"===t.type?"missing":t.type),i=t&&t.target&&t.target.src;l.message="Loading chunk "+r+" failed.\n("+n+": "+i+")",l.name="ChunkLoadError",l.type=n,l.request=i,o[1](l)}}),"chunk-"+r,r)}};var r=(r,t)=>{var o,n,[i,l,u]=t,d=0;if(i.some((r=>0!==e[r]))){for(o in l)a.o(l,o)&&(a.m[o]=l[o]);u&&u(a)}for(r&&r(t);d<i.length;d++)n=i[d],a.o(e,n)&&e[n]&&e[n][0](),e[n]=0},t=self.webpackChunkjupyterlab_plotly=self.webpackChunkjupyterlab_plotly||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})();var n=a(987);(_JUPYTERLAB=void 0===_JUPYTERLAB?{}:_JUPYTERLAB)["jupyterlab-plotly"]=n})(); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
37583266
1.14%1657
0.12%630057
0.49%