Commit a3bbdb33 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix min of padding left when axis rotated

parent f5692996
...@@ -515,7 +515,7 @@ ...@@ -515,7 +515,7 @@
if (__padding_left) { if (__padding_left) {
return __padding_left; return __padding_left;
} else if (__axis_rotated) { } else if (__axis_rotated) {
return !__axis_x_show ? 1 : ceil10(getAxisWidthByAxisId('x')); return !__axis_x_show ? 1 : Math.max(ceil10(getAxisWidthByAxisId('x')), 40);
} else { } else {
return !__axis_y_show || __axis_y_inner ? 1 : ceil10(getAxisWidthByAxisId('y')); return !__axis_y_show || __axis_y_inner ? 1 : ceil10(getAxisWidthByAxisId('y'));
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment