Skip to content

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 and zhaoyongjie committed Nov 26, 2021
1 parent 091789c commit 58fce4b
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
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 58fce4b

Please sign in to comment.