Commit 3551a401 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Сохранение 3DBar

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67710 954022d7-b5bf-4e40-9824-e11837661b57
parent 32464724
...@@ -4745,16 +4745,17 @@ BinaryChartWriter.prototype.WriteCT_PlotArea = function (oVal) { ...@@ -4745,16 +4745,17 @@ BinaryChartWriter.prototype.WriteCT_PlotArea = function (oVal) {
// }); // });
// } // }
else if (chart instanceof CBarChart) { else if (chart instanceof CBarChart) {
this.bs.WriteItem(c_oserct_plotareaBARCHART, function () { if(chart.b3D){
oThis.WriteCT_BarChart(chart); this.bs.WriteItem(c_oserct_plotareaBAR3DCHART, function () {
}); oThis.WriteCT_Bar3DChart(chart);
});
}
else{
this.bs.WriteItem(c_oserct_plotareaBARCHART, function () {
oThis.WriteCT_BarChart(chart);
});
}
} }
// else if(chart instanceof CBar3DChart)
// {
// this.bs.WriteItem(c_oserct_plotareaBAR3DCHART, function () {
// oThis.WriteCT_Bar3DChart(chart);
// });
// }
else if (chart instanceof CBubbleChart) { else if (chart instanceof CBubbleChart) {
this.bs.WriteItem(c_oserct_plotareaBUBBLECHART, function () { this.bs.WriteItem(c_oserct_plotareaBUBBLECHART, function () {
oThis.WriteCT_BubbleChart(chart); oThis.WriteCT_BubbleChart(chart);
......
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