Skip to content

Commit

Permalink
Adding stacked area charts
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaskruchten committed Sep 22, 2018
1 parent aaff40f commit 2e73dc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-pivottable",
"version": "0.6.0",
"version": "0.7.0",
"description": "A React-based pivot table",
"main": "PivotTableUI.js",
"files": [
Expand Down
1 change: 1 addition & 0 deletions src/PlotlyRenderers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ export default function createPlotlyRenderers(PlotlyComponent) {
),
'Line Chart': makeRenderer(PlotlyComponent),
'Dot Chart': makeRenderer(PlotlyComponent, {mode: 'markers'}, {}, true),
'Area Chart': makeRenderer(PlotlyComponent, {stackgroup: 1}),
'Scatter Chart': makeScatterRenderer(PlotlyComponent),
};
}

0 comments on commit 2e73dc1

Please sign in to comment.