Commit 35680836 authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 32806

parent 5390e3f0
...@@ -3664,7 +3664,8 @@ DrawingObjectsController.prototype = ...@@ -3664,7 +3664,8 @@ DrawingObjectsController.prototype =
{ {
if(!(finish_dlbl_pos === c_oAscChartDataLabelsPos.ctr if(!(finish_dlbl_pos === c_oAscChartDataLabelsPos.ctr
|| finish_dlbl_pos === c_oAscChartDataLabelsPos.inEnd || finish_dlbl_pos === c_oAscChartDataLabelsPos.inEnd
|| finish_dlbl_pos === c_oAscChartDataLabelsPos.outEnd)) || finish_dlbl_pos === c_oAscChartDataLabelsPos.outEnd
|| finish_dlbl_pos === c_oAscChartDataLabelsPos.bestFit))
{ {
finish_dlbl_pos = c_oAscChartDataLabelsPos.ctr; finish_dlbl_pos = c_oAscChartDataLabelsPos.ctr;
} }
...@@ -6959,7 +6960,12 @@ DrawingObjectsController.prototype = ...@@ -6959,7 +6960,12 @@ DrawingObjectsController.prototype =
{ {
oTextArtProperties.Fill = AscFormat.CreateUnfilFromRGB(oTextPr.Color.r, oTextPr.Color.g, oTextPr.Color.b); oTextArtProperties.Fill = AscFormat.CreateUnfilFromRGB(oTextPr.Color.r, oTextPr.Color.g, oTextPr.Color.b);
} }
if(oTextPr.TextOutline){
oTextArtProperties.Line = oTextPr.TextOutline; oTextArtProperties.Line = oTextPr.TextOutline;
}
else{
oTextArtProperties.Line = AscFormat.CreateNoFillLine();
}
if(oTextArtProperties.Fill) if(oTextArtProperties.Fill)
{ {
oTextArtProperties.Fill.check(this.getTheme(), this.getColorMap()); oTextArtProperties.Fill.check(this.getTheme(), this.getColorMap());
......
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