Commit 81ef0d54 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix transition when show.point = false

parent 0c72d1a5
...@@ -561,7 +561,7 @@ ...@@ -561,7 +561,7 @@
$$.addTransitionForBar(transitions, drawBar); $$.addTransitionForBar(transitions, drawBar);
$$.addTransitionForLine(transitions, drawLine); $$.addTransitionForLine(transitions, drawLine);
$$.addTransitionForArea(transitions, drawArea); $$.addTransitionForArea(transitions, drawArea);
$$.addTransitionForCircle(transitions, cx, cy); if (config.point_show) { $$.addTransitionForCircle(transitions, cx, cy); }
$$.addTransitionForText(transitions, xForText, yForText, options.flow); $$.addTransitionForText(transitions, xForText, yForText, options.flow);
$$.addTransitionForRegion(transitions); $$.addTransitionForRegion(transitions);
$$.addTransitionForGrid(transitions); $$.addTransitionForGrid(transitions);
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -556,7 +556,7 @@ c3_chart_internal_fn.redraw = function (options, transitions) { ...@@ -556,7 +556,7 @@ c3_chart_internal_fn.redraw = function (options, transitions) {
$$.addTransitionForBar(transitions, drawBar); $$.addTransitionForBar(transitions, drawBar);
$$.addTransitionForLine(transitions, drawLine); $$.addTransitionForLine(transitions, drawLine);
$$.addTransitionForArea(transitions, drawArea); $$.addTransitionForArea(transitions, drawArea);
$$.addTransitionForCircle(transitions, cx, cy); if (config.point_show) { $$.addTransitionForCircle(transitions, cx, cy); }
$$.addTransitionForText(transitions, xForText, yForText, options.flow); $$.addTransitionForText(transitions, xForText, yForText, options.flow);
$$.addTransitionForRegion(transitions); $$.addTransitionForRegion(transitions);
$$.addTransitionForGrid(transitions); $$.addTransitionForGrid(transitions);
......
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