Browse Source

Fixed build

Added c3.js & c3.min.js
pull/1193/head
GermainBergeron 10 years ago
parent
commit
18a39d5878
  1. 836
      c3.js
  2. 10
      c3.min.js
  3. 4
      src/api.tooltip.js

836
c3.js

File diff suppressed because it is too large Load Diff

10
c3.min.js vendored

File diff suppressed because one or more lines are too long

4
src/api.tooltip.js

@ -29,11 +29,11 @@ c3_chart_fn.tooltip.show = function (args) {
$$.dispatchEvent('mouseover', index, mouse);
$$.dispatchEvent('mousemove', index, mouse);
config.tooltip_onshow.call($$, dataToShow);
this.config.tooltip_onshow.call($$, args.data);
};
c3_chart_fn.tooltip.hide = function () {
// TODO: get target data by checking the state of focus
this.internal.dispatchEvent('mouseout', 0);
config.tooltip_onhide.call(this);
this.config.tooltip_onhide.call(this);
};

Loading…
Cancel
Save