Skip to content

Commit 8f70325

Browse files
committed
adjustments for plotly.js 1.44.0
1 parent 4a7c475 commit 8f70325

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

src/lib/computeTraceOptionsFromSchema.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,10 @@ function computeTraceOptionsFromSchema(schema, _, context) {
132132
value: 'barpolar',
133133
label: _('Polar Bar'),
134134
},
135+
{
136+
value: 'isosurface',
137+
label: _('Isosurface'),
138+
},
135139
].filter(obj => traceTypes.indexOf(obj.value) !== -1);
136140

137141
const traceIndex = traceType => traceOptions.findIndex(opt => opt.value === traceType);

src/lib/traceTypes.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,4 +240,9 @@ export const traceTypes = _ => [
240240
label: _('Carpet'),
241241
category: chartCategory(_).HIDDEN,
242242
},
243+
{
244+
value: 'isosurface',
245+
label: _('Isosurface'),
246+
category: chartCategory(_).HIDDEN,
247+
},
243248
];

0 commit comments

Comments
 (0)