Browse Source

Fix grid focus line update

pull/104/head
Masayuki Tanaka 11 years ago
parent
commit
a138b185f6
  1. 4
      c3.js
  2. 2
      c3.min.js

4
c3.js

@ -2764,8 +2764,8 @@
// grid
main.select('line.' + CLASS.xgridFocus)
.style("visibility", "hidden")
.attr('y2', height);
.attr(__axis_rotated ? 'y1' : 'x1', xx)
.attr(__axis_rotated ? 'y2' : 'x2', xx);
if (__grid_x_show) {
if (__grid_x_type === 'year') {
xgridData = [];

2
c3.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save