diff --git a/src/chart/line/LineView.js b/src/chart/line/LineView.js index 86841f84525ecd0b04a0a512567ee85db6f0a5f5..c9063cf92e559a28b596c35508adb737edfa08b0 100644 --- a/src/chart/line/LineView.js +++ b/src/chart/line/LineView.js @@ -1,3 +1,4 @@ +// FIXME step not support polar define(function(require) { 'use strict'; @@ -269,7 +270,8 @@ define(function(require) { group.add(lineGroup); - var step = seriesModel.get('step'); + // FIXME step not support polar + var step = !isCoordSysPolar && seriesModel.get('step'); // Initialization animation or coordinate system changed if ( !(polyline && prevCoordSys.type === coordSys.type && step === this._step)