Skip to content
Snippets Groups Projects
Unverified Commit 23f6b761 authored by Kyle Doherty's avatar Kyle Doherty Committed by GitHub
Browse files

match tick stroke color to axis stroke color (#17665)

parent 41773668
No related merge requests found
......@@ -62,6 +62,7 @@ export default function CategoricalBar(
/>
<AxisBottom
hideTicks={false}
tickStroke={layout.colors.axis.stroke}
numTicks={5}
top={layout.yMax}
scale={xAxisScale}
......
......@@ -74,6 +74,7 @@ export default function TimeseriesBar(
hideTicks={false}
numTicks={5}
top={layout.yMax}
tickStroke={layout.colors.axis.stroke}
tickFormat={d => new Date(d).toLocaleDateString("en")}
scale={xAxisScale}
stroke={layout.colors.axis.stroke}
......
......@@ -80,6 +80,7 @@ export default function TimeseriesLine(
<AxisBottom
label={labels.bottom || t`Dimension`}
hideTicks={false}
tickStroke={layout.colors.axis.stroke}
numTicks={5}
top={layout.yMax}
stroke={layout.colors.axis.stroke}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment