Commit 296c8e43 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix axis max width

parent f469741c
...@@ -746,7 +746,7 @@ ...@@ -746,7 +746,7 @@
var box = this.getBBox(); var box = this.getBBox();
if (maxWidth < box.width) { maxWidth = box.width; } if (maxWidth < box.width) { maxWidth = box.width; }
}); });
return maxWidth; return maxWidth < 20 ? 20 : maxWidth;
} }
function categoryAxis() { function categoryAxis() {
......
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