Commit 83fd35f1 authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

bShowValue для серии

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49952 954022d7-b5bf-4e40-9824-e11837661b57
parent 83f29078
......@@ -651,7 +651,8 @@ asc_CChart.prototype = {
Writer.WriteString2(this.series[i].Marker.Symbol);
Writer.WriteString2(this.series[i].FormatCode);
Writer.WriteBool(this.series[i].isHidden);
Writer.WriteBool(this.series[i].isHidden);
Writer.WriteBool(this.series[i].bShowValue);
}
// Theme Colors
......@@ -748,7 +749,8 @@ asc_CChart.prototype = {
seria.Marker.Symbol = Reader.GetString2();
seria.FormatCode = Reader.GetString2();
seria.isHidden = Reader.GetBool();
seria.isHidden = Reader.GetBool();
seria.bShowValue = Reader.GetBool();
this.series.push(seria);
}
......@@ -1405,7 +1407,8 @@ function asc_CChartSeria() {
this.xVal = { Formula: null, NumCache: [] };
this.Cat = { Formula: null, NumCache: [] };
this.TxCache = { Formula: null, Tx: null };
this.Marker = { Size: null, Symbol: null };
this.Marker = { Size: null, Symbol: null };
this.bShowValue = false;
this.OutlineColor = null;
this.FormatCode = "";
this.isHidden = false;
......@@ -2392,7 +2395,6 @@ function DrawingObjects() {
lockState: c_oAscObjectLockState.No
};
_t.getAllFonts = function(AllFonts) {
_t.graphicObject && _t.graphicObject.getAllFonts && _t.graphicObject.getAllFonts(AllFonts);
};
......
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