Commit 43d58126 authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

isHidden для серий

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49159 954022d7-b5bf-4e40-9824-e11837661b57
parent a3700098
......@@ -828,6 +828,9 @@ asc_CChart.prototype = {
var startCell = new CellAddress(i, bbox.c1 + (parsedHeaders.bLeft ? 1 : 0), 0);
var endCell = new CellAddress(i, bbox.c2, 0);
if ( _t.range.intervalObject.worksheet._getRow(i).hd === true )
ser.isHidden = true;
// Val
if (startCell && endCell) {
if (startCell.getID() == endCell.getID())
......@@ -869,6 +872,9 @@ asc_CChart.prototype = {
var startCell = new CellAddress(bbox.r1 + (parsedHeaders.bTop ? 1 : 0), i, 0);
var endCell = new CellAddress(bbox.r2, i, 0);
if ( _t.range.intervalObject.worksheet._getCol(i).hd === true )
ser.isHidden = true;
// Val
if (startCell && endCell) {
if (startCell.getID() == endCell.getID())
......@@ -1670,6 +1676,7 @@ function asc_CChartSeria() {
this.Marker = { Size: null, Symbol: null };
this.OutlineColor = null;
this.FormatCode = "";
this.isHidden = false;
}
asc_CChartSeria.prototype = {
......
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