Commit c8db7038 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Add c3.flush API

parent 0994da13
...@@ -2754,7 +2754,7 @@ ...@@ -2754,7 +2754,7 @@
if (window.onresize.add) { if (window.onresize.add) {
window.onresize.add(__onresize); window.onresize.add(__onresize);
window.onresize.add(function () { window.onresize.add(function () {
updateAndRedraw({withLegend: true, withTransition: false, withTransitionForTransform: false}); c3.flush();
}); });
window.onresize.add(__onresized); window.onresize.add(__onresized);
} }
...@@ -4551,6 +4551,10 @@ ...@@ -4551,6 +4551,10 @@
c3.resize = function (size) { c3.resize = function (size) {
__size_width = size ? size.width : null; __size_width = size ? size.width : null;
__size_height = size ? size.height : null; __size_height = size ? size.height : null;
c3.flush();
};
c3.flush = function () {
updateAndRedraw({withLegend: true, withTransition: false, withTransitionForTransform: false}); updateAndRedraw({withLegend: true, withTransition: false, withTransitionForTransform: false});
}; };
......
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