Commit f5bf4a3f authored by Oleg Korshul's avatar Oleg Korshul

fix bug 34094

parent a715009e
......@@ -1032,7 +1032,12 @@ define([
chartObject = this.api.asc_getChartObject();
if (!_.isUndefined(chartObject) && value && value.length > 0) {
var intValue = parseInt(value);
chartObject[propertyMethod](parseInt(value));
if ("putDataLabelsPos" == propertyMethod && intValue != 0)
chartObject["putShowVal"](true);
this.api.asc_editChartDrawingObject(chartObject);
}
},
......
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