| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -318,17 +318,6 @@ module.exports = { | |||
| 318 | 318 | 'other locales may alter this default.' | |
| 319 | 319 | ].join(' ') | |
| 320 | 320 | }, | |
| 321 | - hidesources: { | ||
| 322 | - valType: 'boolean', | ||
| 323 | - dflt: false, | ||
| 324 | - editType: 'plot', | ||
| 325 | - description: [ | ||
| 326 | - 'Determines whether or not a text link citing the data source is', | ||
| 327 | - 'placed at the bottom-right cored of the figure.', | ||
| 328 | - 'Has only an effect only on graphs that have been generated via', | ||
| 329 | - 'forked graphs from the Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise).' | ||
| 330 | - ].join(' ') | ||
| 331 | - }, | ||
| 332 | 321 | showlegend: { | |
| 333 | 322 | // handled in legend.supplyLayoutDefaults | |
| 334 | 323 | // but included here because it's not in the legend object | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1318,7 +1318,6 @@ plots.supplyLayoutGlobalDefaults = function(layoutIn, layoutOut, formatObj) { | |||
| 1318 | 1318 | coerce('paper_bgcolor'); | |
| 1319 | 1319 | ||
| 1320 | 1320 | coerce('separators', formatObj.decimal + formatObj.thousands); | |
| 1321 | - coerce('hidesources'); | ||
| 1322 | 1321 | ||
| 1323 | 1322 | coerce('colorway'); | |
| 1324 | 1323 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -26,7 +26,6 @@ function cloneLayoutOverride(tileClass) { | |||
| 26 | 26 | case 'thumbnail': | |
| 27 | 27 | override = { | |
| 28 | 28 | title: {text: ''}, | |
| 29 | - hidesources: true, | ||
| 30 | 29 | showlegend: false, | |
| 31 | 30 | borderwidth: 0, | |
| 32 | 31 | bordercolor: '', | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16254,7 +16254,6 @@ export interface Layout { | |||
| 16254 | 16254 | yside?: 'left' | 'left plot' | 'right plot' | 'right'; | |
| 16255 | 16255 | }; | |
| 16256 | 16256 | height?: number; | |
| 16257 | - hidesources?: boolean; | ||
| 16258 | 16257 | hoveranywhere?: boolean; | |
| 16259 | 16258 | hoverdistance?: number; | |
| 16260 | 16259 | hoverlabel?: { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1217,7 +1217,6 @@ | |||
| 1217 | 1217 | "barmode": "stack", | |
| 1218 | 1218 | "bargap": 0.2, | |
| 1219 | 1219 | "bargroupgap": 0, | |
| 1220 | - "separators": ".,", | ||
| 1221 | - "hidesources": false | ||
| 1220 | + "separators": ".," | ||
| 1222 | 1221 | } | |
| 1223 | 1222 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -609,7 +609,6 @@ | |||
| 609 | 609 | "hovermode": "x", | |
| 610 | 610 | "dragmode": "zoom", | |
| 611 | 611 | "boxmode": "overlay", | |
| 612 | - "separators": ".,", | ||
| 613 | - "hidesources": false | ||
| 612 | + "separators": ".," | ||
| 614 | 613 | } | |
| 615 | 614 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -256,7 +256,6 @@ | |||
| 256 | 256 | "plot_bgcolor": "rgb(255, 255, 255)", | |
| 257 | 257 | "hovermode": "x", | |
| 258 | 258 | "dragmode": "zoom", | |
| 259 | - "separators": ".,", | ||
| 260 | - "hidesources": false | ||
| 259 | + "separators": ".," | ||
| 261 | 260 | } | |
| 262 | 261 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -232,7 +232,6 @@ | |||
| 232 | 232 | "bargap": 0.2, | |
| 233 | 233 | "bargroupgap": 0, | |
| 234 | 234 | "boxmode": "overlay", | |
| 235 | - "separators": ".,", | ||
| 236 | - "hidesources": false | ||
| 235 | + "separators": ".," | ||
| 237 | 236 | } | |
| 238 | 237 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -505,7 +505,6 @@ | |||
| 505 | 505 | "bargroupgap": 0, | |
| 506 | 506 | "boxmode": "overlay", | |
| 507 | 507 | "separators": ".,", | |
| 508 | - "hidesources": false, | ||
| 509 | 508 | "selections": [ | |
| 510 | 509 | { | |
| 511 | 510 | "x0": 150, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -328,7 +328,6 @@ | |||
| 328 | 328 | "bargap": 0.2, | |
| 329 | 329 | "bargroupgap": 0, | |
| 330 | 330 | "boxmode": "overlay", | |
| 331 | - "separators": ".,", | ||
| 332 | - "hidesources": false | ||
| 331 | + "separators": ".," | ||
| 333 | 332 | } | |
| 334 | 333 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments