Skip to content

Commit

Permalink
fix(scatter plot): add gridValues to ScatterPlot (#853)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsliu committed Feb 25, 2020
1 parent ced84ee commit cf0fd6b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/scatterplot/src/ScatterPlot.js
Expand Up @@ -45,6 +45,8 @@ const ScatterPlot = props => {

enableGridX,
enableGridY,
gridXValues,
gridYValues,
axisTop,
axisRight,
axisBottom,
Expand Down Expand Up @@ -110,6 +112,8 @@ const ScatterPlot = props => {
height={innerHeight}
xScale={enableGridX ? xScale : null}
yScale={enableGridY ? yScale : null}
xValues={gridXValues}
yValues={gridYValues}
/>
),
axes: (
Expand Down

0 comments on commit cf0fd6b

Please sign in to comment.