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
......@@ -827,6 +827,9 @@ asc_CChart.prototype = {
var ser = new asc_CChartSeria();
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) {
......@@ -868,6 +871,9 @@ asc_CChart.prototype = {
var ser = new asc_CChartSeria();
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) {
......@@ -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