Skip to content

Commit 5aab848

Browse files
committed
Comment out unsupported traces so far
1 parent 6567f65 commit 5aab848

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

src/components/fields/TraceSelector.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,30 @@ function computeTraceOptionsFromSchema(schema, _, context) {
2222
{value: 'box', label: _('Box')},
2323
{value: 'bar', label: _('Bar')},
2424
{value: 'heatmap', label: _('Heatmap')},
25-
{value: 'histogram', label: _('Histogram')},
26-
{value: 'histogram2d', label: _('2D Histogram')},
27-
{value: 'histogram2dcontour', label: _('2D Contour Histogram')},
25+
// {value: 'histogram', label: _('Histogram')},
26+
// {value: 'histogram2d', label: _('2D Histogram')},
27+
// {value: 'histogram2dcontour', label: _('2D Contour Histogram')},
2828
{value: 'pie', label: _('Pie')},
2929
{value: 'contour', label: _('Contour')},
3030
{value: 'scatterternary', label: _('Ternary Scatter')},
31-
{value: 'violin', label: _('Violin')},
31+
// {value: 'violin', label: _('Violin')},
3232
{value: 'scatter3d', label: _('3D Scatter')},
3333
{value: 'surface', label: _('Surface')},
3434
{value: 'mesh3d', label: _('3D Mesh')},
3535
{value: 'scattergeo', label: _('Atlas Map')},
3636
{value: 'choropleth', label: _('Choropleth')},
37-
{value: 'scattergl', label: _('Scatter GL')},
38-
{value: 'pointcloud', label: _('Point Cloud')},
39-
{value: 'heatmapgl', label: _('Heatmap GL')},
40-
{value: 'parcoords', label: _('Parallel Coordinates')},
41-
{value: 'sankey', label: _('Sankey')},
42-
{value: 'table', label: _('Table')},
43-
{value: 'carpet', label: _('Carpet')},
44-
{value: 'scattercarpet', label: _('Carpet Scatter')},
45-
{value: 'contourcarpet', label: _('Carpet Contour')},
37+
// {value: 'scattergl', label: _('Scatter GL')},
38+
// {value: 'pointcloud', label: _('Point Cloud')},
39+
// {value: 'heatmapgl', label: _('Heatmap GL')},
40+
// {value: 'parcoords', label: _('Parallel Coordinates')},
41+
// {value: 'sankey', label: _('Sankey')},
42+
// {value: 'table', label: _('Table')},
43+
// {value: 'carpet', label: _('Carpet')},
44+
// {value: 'scattercarpet', label: _('Carpet Scatter')},
45+
// {value: 'contourcarpet', label: _('Carpet Contour')},
4646
{value: 'ohlc', label: _('OHLC')},
4747
{value: 'candlestick', label: _('Candlestick')},
48-
{value: 'scatterpolar', label: _('Polar Scatter')},
48+
// {value: 'scatterpolar', label: _('Polar Scatter')},
4949
].filter(obj => traceTypes.indexOf(obj.value) !== -1);
5050

5151
const traceIndex = traceType =>

0 commit comments

Comments
 (0)