Commit 27038291 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix grids

parent b556645b
...@@ -3110,8 +3110,6 @@ ...@@ -3110,8 +3110,6 @@
} }
} }
tickOffset = xAxis.tickOffset();
// rotate tick text if needed // rotate tick text if needed
if (!__axis_rotated && __axis_x_tick_rotate) { if (!__axis_rotated && __axis_x_tick_rotate) {
rotateTickText(xaxis, transitions.axisX, __axis_x_tick_rotate); rotateTickText(xaxis, transitions.axisX, __axis_x_tick_rotate);
...@@ -3136,6 +3134,7 @@ ...@@ -3136,6 +3134,7 @@
main.select('line.' + CLASS.xgridFocus).style("visibility", "hidden"); main.select('line.' + CLASS.xgridFocus).style("visibility", "hidden");
if (__grid_x_show) { if (__grid_x_show) {
xgridData = generateGridData(__grid_x_type, x); xgridData = generateGridData(__grid_x_type, x);
tickOffset = isCategorized ? xAxis.tickOffset() : 0;
xgridAttr = __axis_rotated ? { xgridAttr = __axis_rotated ? {
'x1': 0, 'x1': 0,
'x2': width, 'x2': width,
......
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