未验证 提交 f05f3e44 编写于 作者: M make it right 提交者: GitHub

Merge pull request #11993 from apache/fix-11801-code

fix-11081-code Don't use private properties directly
......@@ -76,8 +76,8 @@ var RadarSeries = SeriesModel.extend({
for (var i = 0, len = values.length; i < len; i++) {
if (!isNaN(values[i])) {
var indicatorAxis = coordSys._indicatorAxes[i];
return coordSys.coordToPoint(indicatorAxis.dataToCoord(values[i]), i);
var indicatorAxes = coordSys.getIndicatorAxes();
return coordSys.coordToPoint(indicatorAxes[i].dataToCoord(values[i]), i);
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册