Skip to content

Commit

Permalink
🐛 (stacked bar) hide y-axis labels when shared (#3326)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiamersmann authored Mar 12, 2024
1 parent de07974 commit 9184f4e
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -446,12 +446,14 @@ export class StackedBarChart
opacity={0}
fill="rgba(255,255,255,0)"
/>
<VerticalAxisComponent
bounds={bounds}
verticalAxis={verticalAxis}
labelColor={manager.secondaryColorInStaticCharts}
detailsMarker={manager.detailsMarkerInSvg}
/>
{!verticalAxis.hideAxis && (
<VerticalAxisComponent
bounds={bounds}
verticalAxis={verticalAxis}
labelColor={manager.secondaryColorInStaticCharts}
detailsMarker={manager.detailsMarkerInSvg}
/>
)}
<VerticalAxisGridLines
verticalAxis={verticalAxis}
bounds={innerBounds}
Expand Down

0 comments on commit 9184f4e

Please sign in to comment.