Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

Commit

Permalink
fix: move series in front of xy gridlines (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw authored Jun 5, 2019
1 parent 4031587 commit 0042f46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ export default class BoxPlot extends React.PureComponent<Props> {
xScale={convertScaleToDataUIScale(channels.x.scale!.config)}
yScale={convertScaleToDataUIScale(channels.y.scale!.config)}
>
{children}
{layout.renderXAxis()}
{layout.renderYAxis()}
{children}
</XYChart>
));
}
Expand Down
2 changes: 1 addition & 1 deletion packages/superset-ui-preset-chart-xy/src/Line/Line.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@ export default class LineChart extends PureComponent<Props> {
xScale={convertScaleToDataUIScale(channels.x.scale!.config)}
yScale={convertScaleToDataUIScale(channels.y.scale!.config)}
>
{children}
{layout.renderXAxis()}
{layout.renderYAxis()}
{children}
<CrossHair
fullHeight
strokeDasharray=""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ export default class ScatterPlot extends PureComponent<Props> {
xScale={convertScaleToDataUIScale(channels.x.scale!.config)}
yScale={convertScaleToDataUIScale(channels.y.scale!.config)}
>
{children}
{layout.renderXAxis()}
{layout.renderYAxis()}
{children}
</XYChart>
));
}
Expand Down

0 comments on commit 0042f46

Please sign in to comment.