Skip to content

Commit

Permalink
fix(axis): rotated label positioning (#709)
Browse files Browse the repository at this point in the history
Fix title positioning when using rotated tick labels

fixes #673
  • Loading branch information
nickofthyme authored Jun 15, 2020
1 parent ed49bbb commit 2e26430
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/chart_types/xy_chart/renderer/canvas/axes/title.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function renderVerticalTitle(ctx: CanvasRenderingContext2D, props: AxisProps) {
const {
axisPosition: { height },
axisSpec: { title, position, tickSize, tickPadding },
axisTicksDimensions: { maxLabelTextWidth },
axisTicksDimensions: { maxLabelBboxWidth },
axisConfig: { axisTitleStyle },
debug,
} = props;
Expand All @@ -51,7 +51,7 @@ function renderVerticalTitle(ctx: CanvasRenderingContext2D, props: AxisProps) {
}
const { padding, ...titleStyle } = axisTitleStyle;
const top = height;
const left = position === Position.Left ? 0 : tickSize + tickPadding + maxLabelTextWidth + padding;
const left = position === Position.Left ? 0 : tickSize + tickPadding + maxLabelBboxWidth + padding;

if (debug) {
renderDebugRect(ctx, { x: left, y: top, width: height, height: titleStyle.fontSize }, undefined, undefined, -90);
Expand Down
2 changes: 1 addition & 1 deletion stories/axes/2_tick_label_rotation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const Example = () => {
id="right"
title="Bar axis"
position={Position.Right}
tickLabelRotation={number('right axis tick label rotation', 0, {
tickLabelRotation={number('right axis tick label rotation', -90, {
range: true,
min: -90,
max: 90,
Expand Down

0 comments on commit 2e26430

Please sign in to comment.