Commit 7899ae08 authored by Sergey Luzyanin's avatar Sergey Luzyanin

set Bevel type lineJoin

parent 4715252d
......@@ -4542,7 +4542,6 @@ DrawingObjectsController.prototype =
return ret;
},
_getChartSpace: function (chartSeries, options, bUseCache) {
options.type = c_oAscChartTypeSettings.surfaceNormal;
switch (options.type) {
case c_oAscChartTypeSettings.lineNormal:
case c_oAscChartTypeSettings.lineNormalMarker:
......
......@@ -9845,7 +9845,9 @@ CChartSpace.prototype.recalculateSeriesColors = function()
var compiled_line = new AscFormat.CLn();
compiled_line.merge(default_line);
compiled_line.Fill.merge(base_line_fills[i]);
compiled_line.w *= style.line3;
//compiled_line.w *= style.line3;
compiled_line.Join = new AscFormat.LineJoin();
compiled_line.Join.type = AscFormat.LineJoinType.Bevel;
if(oBandFmt && oBandFmt.spPr){
compiled_line.merge(oBandFmt.spPr.ln);
}
......
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