Commit 761887a4 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

Bug 26356 - MS Excel считает книгу поврежденной и предлагает восстановить после экспорта XLSX книги

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58135 954022d7-b5bf-4e40-9824-e11837661b57
parent 03b0b7bf
......@@ -4831,18 +4831,16 @@ BinaryChartWriter.prototype.WriteCT_PlotArea = function (oVal) {
oThis.WriteCT_ValAx(axis);
});
}
// else if(axis instanceof CDateAx)
// {
// this.bs.WriteItem(c_oserct_plotareaDATEAX, function () {
// oThis.WriteCT_DateAx(axis);
// });
// }
// else if(axis instanceof CSerAx)
// {
// this.bs.WriteItem(c_oserct_plotareaSERAX, function () {
// oThis.WriteCT_SerAx(axis);
// });
// }
else if (axis instanceof CDateAx) {
this.bs.WriteItem(c_oserct_plotareaDATEAX, function () {
oThis.WriteCT_DateAx(axis);
});
}
else if (axis instanceof CSerAx) {
this.bs.WriteItem(c_oserct_plotareaSERAX, function () {
oThis.WriteCT_SerAx(axis);
});
}
}
if (null != oVal.dTable) {
this.bs.WriteItem(c_oserct_plotareaDTABLE, function () {
......
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