Commit 04474543 authored by Alexander.Trofimov's avatar Alexander.Trofimov

update set colors in sparkline group

parent 073c23af
......@@ -4676,14 +4676,14 @@ CellArea.prototype = {
this.maxAxisType = null !== val.maxAxisType ? val.maxAxisType : this.maxAxisType;
this.rightToLeft = null !== val.rightToLeft ? val.rightToLeft : this.rightToLeft;
this.colorSeries = null !== val.colorSeries ? val.colorSeries : this.colorSeries;
this.colorNegative = null !== val.colorNegative ? val.colorNegative : this.colorNegative;
this.colorAxis = null !== val.colorAxis ? val.colorAxis : this.colorAxis;
this.colorMarkers = null !== val.colorMarkers ? val.colorMarkers : this.colorMarkers;
this.colorFirst = null !== val.colorFirst ? val.colorFirst : this.colorFirst;
this.colorLast = null !== val.colorLast ? val.colorLast : this.colorLast;
this.colorHigh = null !== val.colorHigh ? val.colorHigh : this.colorHigh;
this.colorLow = null !== val.colorLow ? val.colorLow : this.colorLow;
this.colorSeries = null !== val.colorSeries ? AscCommonExcel.CorrectAscColor(val.colorSeries) : this.colorSeries;
this.colorNegative = null !== val.colorNegative ? AscCommonExcel.CorrectAscColor(val.colorNegative) : this.colorNegative;
this.colorAxis = null !== val.colorAxis ? AscCommonExcel.CorrectAscColor(val.colorAxis) : this.colorAxis;
this.colorMarkers = null !== val.colorMarkers ? AscCommonExcel.CorrectAscColor(val.colorMarkers) : this.colorMarkers;
this.colorFirst = null !== val.colorFirst ? AscCommonExcel.CorrectAscColor(val.colorFirst) : this.colorFirst;
this.colorLast = null !== val.colorLast ? AscCommonExcel.CorrectAscColor(val.colorLast) : this.colorLast;
this.colorHigh = null !== val.colorHigh ? AscCommonExcel.CorrectAscColor(val.colorHigh) : this.colorHigh;
this.colorLow = null !== val.colorLow ? AscCommonExcel.CorrectAscColor(val.colorLow) : this.colorLow;
this.cleanCache();
};
......
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