Skip to content

Commit

Permalink
[lens][heatmap] Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
mariairiartef committed Jan 9, 2025
1 parent 7926be1 commit 387ea25
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,8 @@ export const HeatmapComponent: FC<HeatmapRenderProps> = memo(
// eui color subdued
textColor: chartBaseTheme.axes.tickLabel.fill,
padding: xAxisColumn?.name ? 8 : 0,
rotation: args.gridConfig.xAxisLabelRotation && Math.abs(args.gridConfig.xAxisLabelRotation), // rotation is a positive value
rotation:
args.gridConfig.xAxisLabelRotation && Math.abs(args.gridConfig.xAxisLabelRotation), // rotation is a positive value
},
brushMask: {
fill: isDarkTheme ? 'rgb(30,31,35,80%)' : 'rgb(247,247,247,50%)',
Expand Down

0 comments on commit 387ea25

Please sign in to comment.