18736 lines
642 KiB
JavaScript
18736 lines
642 KiB
JavaScript
/*
|
|
* (c) Copyright Ascensio System SIA 2010-2015
|
|
*
|
|
* This program is a free software product. You can redistribute it and/or
|
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
* version 3 as published by the Free Software Foundation. In accordance with
|
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
|
* of any third-party rights.
|
|
*
|
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
|
* EU, LV-1021.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of the Program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|
* grant you any rights under trademark law for use of our trademarks.
|
|
*
|
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
|
* well as technical writing content are licensed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
*/
|
|
"use strict";
|
|
var GLOBAL_AX_ID_COUNTER = 1000;
|
|
function findPrAndRemove(arr, pr) {
|
|
for (var i = arr.length - 1; i > -1; --i) {
|
|
if (arr[i] === pr) {
|
|
arr.splice(i, 1);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
function removePtsFromLit(lit) {
|
|
var i;
|
|
var start_idx = Array.isArray(lit.pts) ? lit.pts.length - 1 : (Array.isArray(lit.pt) ? lit.pt.length - 1 : -1);
|
|
for (i = start_idx; i > -1; --i) {
|
|
lit.removeDPt(i);
|
|
}
|
|
}
|
|
function removeDPtsFromSeries(series) {
|
|
if (Array.isArray(series.dPt)) {
|
|
for (var i = series.dPt.length - 1; i > -1; --i) {
|
|
series.removeDPt(i);
|
|
}
|
|
}
|
|
}
|
|
function checkParagraphDefFonts(map, par) {
|
|
par && par.Pr && par.Pr.DefaultRunPr && checkRFonts(map, par.Pr.DefaultRunPr.RFonts);
|
|
}
|
|
function checkTxBodyDefFonts(map, txBody) {
|
|
txBody && txBody.content && txBody.content.Content[0] && checkParagraphDefFonts(map, txBody.content.Content[0]);
|
|
}
|
|
function checkRFonts(map, rFonts) {
|
|
if (rFonts) {
|
|
if (rFonts.Ascii && typeof rFonts.Ascii.Name && rFonts.Ascii.Name.length > 0) {
|
|
map[rFonts.Ascii.Name] = true;
|
|
}
|
|
if (rFonts.EastAsia && typeof rFonts.EastAsia.Name && rFonts.EastAsia.Name.length > 0) {
|
|
map[rFonts.EastAsia.Name] = true;
|
|
}
|
|
if (rFonts.CS && typeof rFonts.CS.Name && rFonts.CS.Name.length > 0) {
|
|
map[rFonts.CS.Name] = true;
|
|
}
|
|
if (rFonts.HAnsi && typeof rFonts.HAnsi.Name && rFonts.HAnsi.Name.length > 0) {
|
|
map[rFonts.HAnsi.Name] = true;
|
|
}
|
|
}
|
|
}
|
|
function removeAllSeriesFromChart(chart) {
|
|
for (var i = chart.series.length - 1; i > -1; --i) {
|
|
chart.removeSeries(i);
|
|
}
|
|
}
|
|
var SCALE_INSET_COEFF = 1.016;
|
|
var NEW_WORKSHEET_DRAWING_DOCUMENT = null;
|
|
function CDLbl() {
|
|
this.bDelete = null;
|
|
this.dLblPos = null;
|
|
this.idx = null;
|
|
this.layout = null;
|
|
this.numFmt = null;
|
|
this.separator = null;
|
|
this.showBubbleSize = null;
|
|
this.showCatName = null;
|
|
this.showLegendKey = null;
|
|
this.showPercent = null;
|
|
this.showSerName = null;
|
|
this.showVal = null;
|
|
this.spPr = null;
|
|
this.tx = null;
|
|
this.txPr = null;
|
|
this.parent = null;
|
|
this.anchorX = null;
|
|
this.anchorY = null;
|
|
this.recalcInfo = {
|
|
recalcTransform: true,
|
|
recalcTransformText: true,
|
|
recalcStyle: true,
|
|
recalculateTxBody: true,
|
|
recalculateBrush: true,
|
|
recalculatePen: true,
|
|
recalculateContent: true
|
|
};
|
|
this.chart = null;
|
|
this.series = null;
|
|
this.x = 0;
|
|
this.y = 0;
|
|
this.calcX = null;
|
|
this.calcY = null;
|
|
this.relPosX = null;
|
|
this.relPosY = null;
|
|
this.txBody = null;
|
|
this.transform = new CMatrix();
|
|
this.transformText = new CMatrix();
|
|
this.ownTransform = new CMatrix();
|
|
this.ownTransformText = new CMatrix();
|
|
this.localTransform = new CMatrix();
|
|
this.localTransformText = new CMatrix();
|
|
this.compiledStyles = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CDLbl.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_DLbl;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CDLbl();
|
|
c.setDelete(this.bDelete);
|
|
c.setDLblPos(this.dLblPos);
|
|
c.setIdx(this.idx);
|
|
if (this.layout) {
|
|
c.setLayout(this.layout.createDuplicate());
|
|
}
|
|
if (this.numFmt) {
|
|
c.setNumFmt(this.numFmt.createDuplicate());
|
|
}
|
|
c.setSeparator(this.separator);
|
|
c.setShowBubbleSize(this.showBubbleSize);
|
|
c.setShowCatName(this.showCatName);
|
|
c.setShowLegendKey(this.showLegendKey);
|
|
c.setShowPercent(this.showPercent);
|
|
c.setShowSerName(this.showSerName);
|
|
c.setShowVal(this.showVal);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
checkShapeChildTransform: function (transform) {
|
|
this.updatePosition(this.posX, this.posY);
|
|
global_MatrixTransformer.MultiplyAppend(this.transform, transform);
|
|
global_MatrixTransformer.MultiplyAppend(this.transformText, transform);
|
|
if (this instanceof CTitle) {
|
|
this.invertTransform = global_MatrixTransformer.Invert(this.transform);
|
|
this.invertTransformText = global_MatrixTransformer.Invert(this.transform);
|
|
}
|
|
},
|
|
getCompiledFill: function () {
|
|
return this.spPr && this.spPr.Fill ? this.spPr.Fill : null;
|
|
},
|
|
getCompiledLine: function () {
|
|
return this.spPr && this.spPr.ln ? this.spPr.ln : null;
|
|
},
|
|
getCompiledTransparent: function () {
|
|
return this.spPr && this.spPr.Fill ? this.spPr.Fill.transparent : null;
|
|
},
|
|
recalculate: function () {
|
|
if (this.bDelete) {
|
|
return;
|
|
}
|
|
ExecuteNoHistory(function () {
|
|
if (this.recalcInfo.recalculateBrush) {
|
|
this.recalculateBrush();
|
|
this.recalcInfo.recalculateBrush = false;
|
|
}
|
|
if (this.recalcInfo.recalculatePen) {
|
|
this.recalculatePen();
|
|
this.recalcInfo.recalculatePen = false;
|
|
}
|
|
if (this.recalcInfo.recalcStyle) {
|
|
this.recalculateStyle();
|
|
}
|
|
if (this.recalcInfo.recalculateTxBody) {
|
|
this.recalculateTxBody();
|
|
this.recalcInfo.recalculateTxBody = false;
|
|
}
|
|
if (this.recalcInfo.recalculateContent) {
|
|
this.recalculateContent();
|
|
}
|
|
if (this.recalcInfo.recalcTransform) {
|
|
this.recalculateTransform();
|
|
}
|
|
if (this.recalcInfo.recalcTransformText) {
|
|
this.recalculateTransformText();
|
|
}
|
|
if (this.chart) {
|
|
this.chart.addToSetPosition(this);
|
|
}
|
|
},
|
|
this, []);
|
|
},
|
|
recalculateBrush: CShape.prototype.recalculateBrush,
|
|
recalculatePen: CShape.prototype.recalculatePen,
|
|
check_bounds: CShape.prototype.check_bounds,
|
|
getCompiledStyle: function () {
|
|
return null;
|
|
},
|
|
getParentObjects: function () {
|
|
return this.chart.getParentObjects();
|
|
},
|
|
recalculateTransform: function () {},
|
|
recalculateTransformText: function () {
|
|
if (this.txBody === null) {
|
|
return;
|
|
}
|
|
this.ownTransformText.Reset();
|
|
var _text_transform = this.ownTransformText;
|
|
var _shape_transform = this.ownTransform;
|
|
var _body_pr = this.getBodyPr();
|
|
var _content_height = this.txBody.content.Get_SummaryHeight();
|
|
var _l, _t, _r, _b;
|
|
var _t_x_lt, _t_y_lt, _t_x_rt, _t_y_rt, _t_x_lb, _t_y_lb, _t_x_rb, _t_y_rb;
|
|
if (isRealObject(this.spPr) && isRealObject(this.spPr.geometry) && isRealObject(this.spPr.geometry.rect)) {
|
|
var _rect = this.spPr.geometry.rect;
|
|
_l = _rect.l + _body_pr.lIns;
|
|
_t = _rect.t + _body_pr.tIns;
|
|
_r = _rect.r - _body_pr.rIns;
|
|
_b = _rect.b - _body_pr.bIns;
|
|
} else {
|
|
_l = _body_pr.lIns;
|
|
_t = _body_pr.tIns;
|
|
_r = this.extX - _body_pr.rIns;
|
|
_b = this.extY - _body_pr.bIns;
|
|
}
|
|
if (_l >= _r) {
|
|
var _c = (_l + _r) * 0.5;
|
|
_l = _c - 0.01;
|
|
_r = _c + 0.01;
|
|
}
|
|
if (_t >= _b) {
|
|
_c = (_t + _b) * 0.5;
|
|
_t = _c - 0.01;
|
|
_b = _c + 0.01;
|
|
}
|
|
_t_x_lt = _shape_transform.TransformPointX(_l, _t);
|
|
_t_y_lt = _shape_transform.TransformPointY(_l, _t);
|
|
_t_x_rt = _shape_transform.TransformPointX(_r, _t);
|
|
_t_y_rt = _shape_transform.TransformPointY(_r, _t);
|
|
_t_x_lb = _shape_transform.TransformPointX(_l, _b);
|
|
_t_y_lb = _shape_transform.TransformPointY(_l, _b);
|
|
_t_x_rb = _shape_transform.TransformPointX(_r, _b);
|
|
_t_y_rb = _shape_transform.TransformPointY(_r, _b);
|
|
var _dx_t, _dy_t;
|
|
_dx_t = _t_x_rt - _t_x_lt;
|
|
_dy_t = _t_y_rt - _t_y_lt;
|
|
var _dx_lt_rb, _dy_lt_rb;
|
|
_dx_lt_rb = _t_x_rb - _t_x_lt;
|
|
_dy_lt_rb = _t_y_rb - _t_y_lt;
|
|
var _vertical_shift;
|
|
var _text_rect_height = _b - _t;
|
|
var _text_rect_width = _r - _l;
|
|
if (_body_pr.upright === false) {
|
|
if (! (_body_pr.vert === nVertTTvert || _body_pr.vert === nVertTTvert270)) {
|
|
if (true) {
|
|
switch (_body_pr.anchor) {
|
|
case 0:
|
|
_vertical_shift = _text_rect_height - _content_height;
|
|
break;
|
|
case 1:
|
|
_vertical_shift = (_text_rect_height - _content_height) * 0.5;
|
|
break;
|
|
case 2:
|
|
_vertical_shift = (_text_rect_height - _content_height) * 0.5;
|
|
break;
|
|
case 3:
|
|
_vertical_shift = (_text_rect_height - _content_height) * 0.5;
|
|
break;
|
|
case 4:
|
|
_vertical_shift = 0;
|
|
break;
|
|
}
|
|
} else {
|
|
_vertical_shift = 0;
|
|
}
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, 0, _vertical_shift);
|
|
if (_dx_lt_rb * _dy_t - _dy_lt_rb * _dx_t <= 0) {
|
|
var alpha = Math.atan2(_dy_t, _dx_t);
|
|
global_MatrixTransformer.RotateRadAppend(_text_transform, -alpha - (isRealNumber(_body_pr.rot) ? _body_pr.rot * cToRad2 : 0));
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, _t_x_lt, _t_y_lt);
|
|
} else {
|
|
alpha = Math.atan2(_dy_t, _dx_t);
|
|
global_MatrixTransformer.RotateRadAppend(_text_transform, Math.PI - alpha - (isRealNumber(_body_pr.rot) ? _body_pr.rot * cToRad2 : 0));
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, _t_x_rt, _t_y_rt);
|
|
}
|
|
} else {
|
|
if (true) {
|
|
switch (_body_pr.anchor) {
|
|
case 0:
|
|
_vertical_shift = _text_rect_width - _content_height;
|
|
break;
|
|
case 1:
|
|
_vertical_shift = (_text_rect_width - _content_height) * 0.5;
|
|
break;
|
|
case 2:
|
|
_vertical_shift = (_text_rect_width - _content_height) * 0.5;
|
|
break;
|
|
case 3:
|
|
_vertical_shift = (_text_rect_width - _content_height) * 0.5;
|
|
break;
|
|
case 4:
|
|
_vertical_shift = 0;
|
|
break;
|
|
}
|
|
} else {
|
|
_vertical_shift = 0;
|
|
}
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, 0, _vertical_shift);
|
|
var _alpha;
|
|
_alpha = Math.atan2(_dy_t, _dx_t);
|
|
if (_body_pr.vert === nVertTTvert) {
|
|
if (_dx_lt_rb * _dy_t - _dy_lt_rb * _dx_t <= 0) {
|
|
global_MatrixTransformer.RotateRadAppend(_text_transform, -_alpha - Math.PI * 0.5 + (isRealNumber(_body_pr.rot) ? _body_pr.rot * cToRad2 : 0));
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, _t_x_rt, _t_y_rt);
|
|
} else {
|
|
global_MatrixTransformer.RotateRadAppend(_text_transform, Math.PI * 0.5 - _alpha + (isRealNumber(_body_pr.rot) ? _body_pr.rot * cToRad2 : 0));
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, _t_x_lt, _t_y_lt);
|
|
}
|
|
} else {
|
|
if (_dx_lt_rb * _dy_t - _dy_lt_rb * _dx_t <= 0) {
|
|
global_MatrixTransformer.RotateRadAppend(_text_transform, -_alpha - Math.PI * 1.5 + (isRealNumber(_body_pr.rot) ? _body_pr.rot * cToRad2 : 0));
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, _t_x_lb, _t_y_lb);
|
|
} else {
|
|
global_MatrixTransformer.RotateRadAppend(_text_transform, -Math.PI * 0.5 - _alpha + (isRealNumber(_body_pr.rot) ? _body_pr.rot * cToRad2 : 0));
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, _t_x_rb, _t_y_rb);
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
var _full_rotate = 0;
|
|
var _full_flip = {
|
|
flipH: false,
|
|
flipV: false
|
|
};
|
|
var _hc = this.extX * 0.5;
|
|
var _vc = this.extY * 0.5;
|
|
var _transformed_shape_xc = this.transform.TransformPointX(_hc, _vc);
|
|
var _transformed_shape_yc = this.transform.TransformPointY(_hc, _vc);
|
|
var _content_width, content_height2;
|
|
if (checkNormalRotate(_full_rotate)) {
|
|
if (! (_body_pr.vert === nVertTTvert || _body_pr.vert === nVertTTvert270)) {
|
|
_content_width = _r - _l;
|
|
content_height2 = _b - _t;
|
|
} else {
|
|
_content_width = _b - _t;
|
|
content_height2 = _r - _l;
|
|
}
|
|
} else {
|
|
if (! (_body_pr.vert === nVertTTvert || _body_pr.vert === nVertTTvert270)) {
|
|
_content_width = _b - _t;
|
|
content_height2 = _r - _l;
|
|
} else {
|
|
_content_width = _r - _l;
|
|
content_height2 = _b - _t;
|
|
}
|
|
}
|
|
if (true) {
|
|
switch (_body_pr.anchor) {
|
|
case 0:
|
|
_vertical_shift = content_height2 - _content_height;
|
|
break;
|
|
case 1:
|
|
_vertical_shift = (content_height2 - _content_height) * 0.5;
|
|
break;
|
|
case 2:
|
|
_vertical_shift = (content_height2 - _content_height) * 0.5;
|
|
break;
|
|
case 3:
|
|
_vertical_shift = (content_height2 - _content_height) * 0.5;
|
|
break;
|
|
case 4:
|
|
_vertical_shift = 0;
|
|
break;
|
|
}
|
|
} else {
|
|
_vertical_shift = 0;
|
|
}
|
|
var _text_rect_xc = _l + (_r - _l) * 0.5;
|
|
var _text_rect_yc = _t + (_b - _t) * 0.5;
|
|
var _vx = _text_rect_xc - _hc;
|
|
var _vy = _text_rect_yc - _vc;
|
|
var _transformed_text_xc, _transformed_text_yc;
|
|
if (!_full_flip.flipH) {
|
|
_transformed_text_xc = _transformed_shape_xc + _vx;
|
|
} else {
|
|
_transformed_text_xc = _transformed_shape_xc - _vx;
|
|
}
|
|
if (!_full_flip.flipV) {
|
|
_transformed_text_yc = _transformed_shape_yc + _vy;
|
|
} else {
|
|
_transformed_text_yc = _transformed_shape_yc - _vy;
|
|
}
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, 0, _vertical_shift);
|
|
if (_body_pr.vert === nVertTTvert) {
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, -_content_width * 0.5, -content_height2 * 0.5);
|
|
global_MatrixTransformer.RotateRadAppend(_text_transform, -Math.PI * 1.5);
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, _content_width * 0.5, content_height2 * 0.5);
|
|
}
|
|
if (_body_pr.vert === nVertTTvert270) {
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, -_content_width * 0.5, -content_height2 * 0.5);
|
|
global_MatrixTransformer.RotateRadAppend(_text_transform, -Math.PI * 1.5);
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, _content_width * 0.5, content_height2 * 0.5);
|
|
}
|
|
global_MatrixTransformer.TranslateAppend(_text_transform, _transformed_text_xc - _content_width * 0.5, _transformed_text_yc - content_height2 * 0.5);
|
|
var body_pr = this.bodyPr;
|
|
var l_ins = typeof body_pr.lIns === "number" ? body_pr.lIns : 2.54;
|
|
var t_ins = typeof body_pr.tIns === "number" ? body_pr.tIns : 1.27;
|
|
var r_ins = typeof body_pr.rIns === "number" ? body_pr.rIns : 2.54;
|
|
var b_ins = typeof body_pr.bIns === "number" ? body_pr.bIns : 1.27;
|
|
this.clipRect = {
|
|
x: -l_ins,
|
|
y: -_vertical_shift - t_ins,
|
|
w: this.contentWidth + (r_ins + l_ins),
|
|
h: this.contentHeight + (b_ins + t_ins)
|
|
};
|
|
}
|
|
this.transformText = this.ownTransformText.CreateDublicate();
|
|
},
|
|
getStyles: function () {
|
|
return ExecuteNoHistory(function () {
|
|
if (this.lastStyleObject) {
|
|
return this.lastStyleObject;
|
|
}
|
|
var styles = new CStyles(false);
|
|
var style = new CStyle("dataLblStyle", null, null, null);
|
|
var text_pr = new CTextPr();
|
|
text_pr.FontSize = 10;
|
|
if (this.chart && isRealNumber(this.chart.style) && this.chart.style > 40) {
|
|
text_pr.Unifill = CreateUnfilFromRGB(255, 255, 255);
|
|
} else {
|
|
text_pr.Unifill = CreateUnfilFromRGB(0, 0, 0);
|
|
}
|
|
var para_pr = new CParaPr();
|
|
para_pr.Jc = align_Center;
|
|
para_pr.Spacing.Before = 0;
|
|
para_pr.Spacing.After = 0;
|
|
para_pr.Spacing.Line = 1;
|
|
para_pr.Spacing.LineRule = linerule_Auto;
|
|
style.ParaPr = para_pr;
|
|
text_pr.RFonts.Set_FromObject({
|
|
Ascii: {
|
|
Name: "+mn-lt",
|
|
Index: -1
|
|
},
|
|
EastAsia: {
|
|
Name: "+mn-ea",
|
|
Index: -1
|
|
},
|
|
HAnsi: {
|
|
Name: "+mn-lt",
|
|
Index: -1
|
|
},
|
|
CS: {
|
|
Name: "+mn-lt",
|
|
Index: -1
|
|
}
|
|
});
|
|
style.TextPr = text_pr;
|
|
var chart_text_pr;
|
|
if (this.chart && this.chart.txPr && this.chart.txPr.content && this.chart.txPr.content.Content[0] && this.chart.txPr.content.Content[0].Pr) {
|
|
style.ParaPr.Merge(this.chart.txPr.content.Content[0].Pr);
|
|
if (this.chart.txPr.content.Content[0].Pr.DefaultRunPr) {
|
|
chart_text_pr = this.chart.txPr.content.Content[0].Pr.DefaultRunPr;
|
|
style.TextPr.Merge(chart_text_pr);
|
|
}
|
|
}
|
|
if (this instanceof CTitle || this.parent instanceof CTitle) {
|
|
style.TextPr.Bold = true;
|
|
if (this.parent instanceof CChart || (this.parent && (this.parent.parent instanceof CChart))) {
|
|
if (chart_text_pr && typeof chart_text_pr.FontSize === "number") {
|
|
style.TextPr.FontSize = (chart_text_pr.FontSize * 1.2) >> 0;
|
|
} else {
|
|
style.TextPr.FontSize = 18;
|
|
}
|
|
}
|
|
}
|
|
if (this instanceof CalcLegendEntry && this.legend && this.legend.txPr && this.legend.txPr.content && this.legend.txPr.content.Content[0] && this.legend.txPr.content.Content[0].Pr) {
|
|
style.ParaPr.Merge(this.legend.txPr.content.Content[0].Pr);
|
|
if (this.legend.txPr.content.Content[0].Pr.DefaultRunPr) {
|
|
style.TextPr.Merge(this.legend.txPr.content.Content[0].Pr.DefaultRunPr);
|
|
}
|
|
}
|
|
if (! (this instanceof CTitle) && this.parent && this.parent.txPr && this.parent.txPr.content && this.parent.txPr.content.Content[0] && this.parent.txPr.content.Content[0].Pr) {
|
|
style.ParaPr.Merge(this.parent.txPr.content.Content[0].Pr);
|
|
if (this.parent.txPr.content.Content[0].Pr.DefaultRunPr) {
|
|
style.TextPr.Merge(this.parent.txPr.content.Content[0].Pr.DefaultRunPr);
|
|
}
|
|
}
|
|
if (this.txPr && this.txPr.content && this.txPr.content.Content[0] && this.txPr.content.Content[0].Pr) {
|
|
style.ParaPr.Merge(this.txPr.content.Content[0].Pr);
|
|
if (this.txPr.content.Content[0].Pr.DefaultRunPr) {
|
|
style.TextPr.Merge(this.txPr.content.Content[0].Pr.DefaultRunPr);
|
|
}
|
|
}
|
|
styles.Add(style);
|
|
if (! (this instanceof CTitle)) {
|
|
this.lastStyleObject = {
|
|
lastId: style.Id,
|
|
styles: styles
|
|
};
|
|
}
|
|
return {
|
|
lastId: style.Id,
|
|
styles: styles
|
|
};
|
|
},
|
|
this, []);
|
|
},
|
|
Get_Theme: function () {
|
|
return this.chart.Get_Theme();
|
|
},
|
|
Get_ColorMap: function () {
|
|
return this.chart.Get_ColorMap();
|
|
},
|
|
recalculateStyle: function () {
|
|
ExecuteNoHistory(function () {
|
|
this.compiledStyles = this.getStyles();
|
|
},
|
|
this, []);
|
|
},
|
|
Get_Styles: function (lvl) {
|
|
if (this.recalcInfo.recalcStyle) {
|
|
this.recalculateStyle();
|
|
this.recalcInfo.recalcStyle = false;
|
|
}
|
|
return this.compiledStyles;
|
|
},
|
|
checkNoLbl: function () {
|
|
if (this.tx && this.tx.rich) {
|
|
return false;
|
|
} else {
|
|
return ! (this.showSerName || this.showCatName || this.showVal || this.showPercent);
|
|
}
|
|
},
|
|
getSizes: function () {
|
|
var arr_x = [],
|
|
arr_y = [];
|
|
arr_x.push(this.ownTransform.TransformPointX());
|
|
},
|
|
getDefaultTextForTxBody: function () {
|
|
var compiled_string = "";
|
|
var separator = typeof this.separator === "string" ? this.separator + " " : "\n";
|
|
if (this.showSerName) {
|
|
compiled_string += this.series.getSeriesName();
|
|
}
|
|
if (this.showCatName) {
|
|
if (compiled_string.length > 0) {
|
|
compiled_string += separator;
|
|
}
|
|
compiled_string += this.series.getCatName(this.pt.idx);
|
|
}
|
|
if (this.showVal) {
|
|
if (compiled_string.length > 0) {
|
|
compiled_string += separator;
|
|
}
|
|
var num_format = oNumFormatCache.get(this.series.getFormatCode());
|
|
compiled_string += num_format.formatToChart(this.series.getValByIndex(this.pt.idx));
|
|
}
|
|
if (this.showPercent) {
|
|
if (compiled_string.length > 0) {
|
|
compiled_string += separator;
|
|
}
|
|
compiled_string += this.series.getValByIndex(this.pt.idx, true);
|
|
}
|
|
return compiled_string;
|
|
},
|
|
getMaxWidth: function (bodyPr) {
|
|
if (! (this.parent && (this.parent.axPos === AX_POS_L || this.parent.axPos === AX_POS_R))) {
|
|
switch (bodyPr.vert) {
|
|
case nVertTTeaVert:
|
|
case nVertTTmongolianVert:
|
|
case nVertTTvert:
|
|
case nVertTTwordArtVert:
|
|
case nVertTTwordArtVertRtl:
|
|
case nVertTTvert270:
|
|
return this.chart.extY / 2;
|
|
case nVertTThorz:
|
|
return this.chart.extX / 5;
|
|
}
|
|
return this.chart.extX / 5;
|
|
} else {
|
|
return 20000;
|
|
}
|
|
},
|
|
getBodyPr: function () {
|
|
var ret = new CBodyPr();
|
|
ret.setDefault();
|
|
if (this.tx && this.tx.rich) {
|
|
ret.merge(this.tx.rich.bodyPr);
|
|
} else {
|
|
if (this.txPr && this.txPr.bodyPr) {
|
|
ret.merge(this.txPr.bodyPr);
|
|
}
|
|
}
|
|
if (this.parent && isRealNumber(this.parent.axPos) && (this.parent.axPos === AX_POS_L || this.parent.axPos === AX_POS_R) && ((this.tx && this.tx.rich && (!this.tx.rich.bodyPr || !isRealNumber(this.tx.rich.bodyPr.vert))) || (!(this.tx && this.tx.rich) && (!this.txPr || !this.txPr.bodyPr || !isRealNumber(this.txPr.bodyPr.vert))))) {
|
|
ret.vert = nVertTTvert270;
|
|
}
|
|
if ((!this.txPr || !this.txPr.bodyPr || !isRealNumber(this.txPr.bodyPr.anchor))) {
|
|
ret.anchor = 1;
|
|
}
|
|
switch (ret.vert) {
|
|
case nVertTTeaVert:
|
|
case nVertTTmongolianVert:
|
|
case nVertTTvert:
|
|
case nVertTTwordArtVert:
|
|
case nVertTTwordArtVertRtl:
|
|
case nVertTTvert270:
|
|
ret.lIns = SCALE_INSET_COEFF;
|
|
ret.rIns = SCALE_INSET_COEFF;
|
|
ret.tIns = SCALE_INSET_COEFF * 0.5;
|
|
ret.bIns = SCALE_INSET_COEFF * 0.5;
|
|
break;
|
|
case nVertTThorz:
|
|
ret.lIns = SCALE_INSET_COEFF;
|
|
ret.rIns = SCALE_INSET_COEFF;
|
|
ret.tIns = SCALE_INSET_COEFF * 0.5;
|
|
ret.bIns = SCALE_INSET_COEFF * 0.5;
|
|
break;
|
|
}
|
|
return ret;
|
|
},
|
|
checkVert: function () {},
|
|
recalculateContent: function () {
|
|
if (this.txBody) {
|
|
var bodyPr = this.getBodyPr();
|
|
var max_box_width = this.getMaxWidth(bodyPr);
|
|
var max_content_width = max_box_width - 2 * SCALE_INSET_COEFF;
|
|
var content = this.txBody.content;
|
|
content.Reset(0, 0, max_content_width, 20000);
|
|
content.Recalculate_Page(0, true);
|
|
var pargs = content.Content;
|
|
var max_width = 0;
|
|
for (var i = 0; i < pargs.length; ++i) {
|
|
var par = pargs[i];
|
|
for (var j = 0; j < par.Lines.length; ++j) {
|
|
if (par.Lines[j].Ranges[0].W > max_width) {
|
|
max_width = par.Lines[j].Ranges[0].W;
|
|
}
|
|
}
|
|
}
|
|
max_width += 2;
|
|
content.Reset(0, 0, max_width, 20000);
|
|
content.Recalculate_Page(0, true);
|
|
switch (bodyPr.vert) {
|
|
case nVertTTeaVert:
|
|
case nVertTTmongolianVert:
|
|
case nVertTTvert:
|
|
case nVertTTwordArtVert:
|
|
case nVertTTwordArtVertRtl:
|
|
case nVertTTvert270:
|
|
this.extX = Math.min(content.Get_SummaryHeight() + 4.4 * SCALE_INSET_COEFF, max_box_width);
|
|
this.extY = max_width + 2 * SCALE_INSET_COEFF;
|
|
this.x = 0;
|
|
this.y = 0;
|
|
this.txBody.contentWidth = this.extY;
|
|
this.txBody.contentHeight = this.extX;
|
|
break;
|
|
default:
|
|
var _rot = isRealNumber(bodyPr.rot) ? bodyPr.rot * cToRad2 : 0;
|
|
var t = new CMatrix();
|
|
global_MatrixTransformer.RotateRadAppend(t, -_rot);
|
|
var w, h, x0, y0, x1, y1, x2, y2, x3, y3;
|
|
w = max_width;
|
|
h = this.txBody.content.Get_SummaryHeight();
|
|
x0 = 0;
|
|
y0 = 0;
|
|
x1 = t.TransformPointX(w, 0);
|
|
y1 = t.TransformPointY(w, 0);
|
|
x2 = t.TransformPointX(w, h);
|
|
y2 = t.TransformPointY(w, h);
|
|
x3 = t.TransformPointX(0, h);
|
|
y3 = t.TransformPointY(0, h);
|
|
this.extX = Math.max(x0, x1, x2, x3) - Math.min(x0, x1, x2, x3) + 1.25;
|
|
this.extY = Math.max(y0, y1, y2, y3) - Math.min(y0, y1, y2, y3) + SCALE_INSET_COEFF;
|
|
this.x = 0;
|
|
this.y = 0;
|
|
this.txBody.contentWidth = this.extX;
|
|
this.txBody.contentHeight = this.extY;
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
recalculateTxBody: function () {
|
|
if (this.tx && this.tx.rich) {
|
|
this.txBody = this.tx.rich;
|
|
this.txBody.parent = this;
|
|
} else {
|
|
this.txBody = CreateTextBodyFromString(this.getDefaultTextForTxBody(), this.chart.getDrawingDocument(), this);
|
|
}
|
|
},
|
|
initDefault: function () {
|
|
this.setDelete(false);
|
|
this.setDLblPos(DLBL_POS_IN_BASE);
|
|
this.setIdx(null);
|
|
this.setLayout(null);
|
|
this.setNumFmt(null);
|
|
this.setSeparator(null);
|
|
this.setShowBubbleSize(false);
|
|
this.setShowCatName(false);
|
|
this.setShowLegendKey(false);
|
|
this.setShowPercent(false);
|
|
this.setShowSerName(false);
|
|
this.setShowVal(false);
|
|
this.setSpPr(null);
|
|
this.setTx(null);
|
|
this.setTxPr(null);
|
|
},
|
|
merge: function (dLbl, noCopyTxBody) {
|
|
if (!dLbl) {
|
|
return;
|
|
}
|
|
if (dLbl.bDelete != null) {
|
|
this.setDelete(dLbl.bDelete);
|
|
}
|
|
if (dLbl.dLblPos != null) {
|
|
this.setDLblPos(dLbl.dLblPos);
|
|
}
|
|
if (dLbl.idx != null) {
|
|
this.setIdx(dLbl.idx);
|
|
}
|
|
if (dLbl.numFmt != null) {
|
|
this.setNumFmt(dLbl.numFmt);
|
|
}
|
|
if (dLbl.separator != null) {
|
|
this.setSeparator(dLbl.separator);
|
|
}
|
|
if (dLbl.showBubbleSize != null) {
|
|
this.setShowBubbleSize(dLbl.showBubbleSize);
|
|
}
|
|
if (dLbl.showCatName != null) {
|
|
this.setShowCatName(dLbl.showCatName);
|
|
}
|
|
if (dLbl.showLegendKey != null) {
|
|
this.setShowLegendKey(dLbl.showLegendKey);
|
|
}
|
|
if (dLbl.showPercent != null) {
|
|
this.setShowPercent(dLbl.showPercent);
|
|
}
|
|
if (dLbl.showSerName != null) {
|
|
this.setShowSerName(dLbl.showSerName);
|
|
}
|
|
if (dLbl.showVal != null) {
|
|
this.setShowVal(dLbl.showVal);
|
|
}
|
|
if (dLbl.spPr != null) {
|
|
if (this.spPr == null) {
|
|
this.setSpPr(new CSpPr());
|
|
}
|
|
if (dLbl.spPr.Fill) {
|
|
if (this.spPr.Fill == null) {
|
|
this.spPr.setFill(new CUniFill());
|
|
}
|
|
this.spPr.Fill.merge(dLbl.spPr.Fill);
|
|
}
|
|
if (dLbl.spPr.ln) {
|
|
if (this.spPr.ln == null) {
|
|
this.spPr.setLn(new CLn());
|
|
}
|
|
this.spPr.ln.merge(dLbl.spPr.ln);
|
|
}
|
|
}
|
|
if (dLbl.tx) {
|
|
if (this.tx == null) {
|
|
this.setTx(new CChartText());
|
|
}
|
|
this.tx.merge(dLbl.tx, noCopyTxBody);
|
|
}
|
|
if (dLbl.txPr) {
|
|
if (noCopyTxBody === true) {
|
|
this.setTxPr(dLbl.txPr);
|
|
} else {
|
|
this.setTxPr(dLbl.txPr.createDuplicate());
|
|
}
|
|
this.txPr.setParent(this);
|
|
}
|
|
},
|
|
draw: CShape.prototype.draw,
|
|
isEmptyPlaceholder: function () {
|
|
return false;
|
|
},
|
|
setPosition: function (x, y) {
|
|
this.x = x;
|
|
this.y = y;
|
|
if (this.layout && this.layout.manualLayout) {
|
|
if (typeof this.layout.manualLayout.x === "number") {
|
|
this.calcX = this.chart.extX * this.layout.x + this.x;
|
|
} else {
|
|
this.calcX = this.x;
|
|
}
|
|
if (typeof this.layout.manualLayout.y === "number") {
|
|
this.calcY = this.chart.extY * this.layout.y + this.y;
|
|
} else {
|
|
this.calcY = this.y;
|
|
}
|
|
} else {
|
|
this.calcX = this.x;
|
|
this.calcY = this.y;
|
|
}
|
|
this.localTransform.Reset();
|
|
global_MatrixTransformer.TranslateAppend(this.localTransform, this.calcX, this.calcY);
|
|
this.transform = this.localTransform.CreateDublicate();
|
|
this.invertTransform = global_MatrixTransformer.Invert(this.transform);
|
|
this.localTransformText = this.ownTransformText.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.localTransformText, this.calcX, this.calcY);
|
|
this.transformText = this.localTransformText.CreateDublicate();
|
|
this.invertTransformText = global_MatrixTransformer.Invert(this.transformText);
|
|
},
|
|
updateTransformMatrix: function () {
|
|
this.transform = this.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transform, this.posX, this.posY);
|
|
this.invertTransform = global_MatrixTransformer.Invert(this.transform);
|
|
if (this.localTransformText) {
|
|
this.transformText = this.localTransformText.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transformText, this.posX, this.posY);
|
|
this.invertTransformText = global_MatrixTransformer.Invert(this.transformText);
|
|
}
|
|
},
|
|
updatePosition: function (x, y) {
|
|
this.posX = x;
|
|
this.posY = y;
|
|
this.transform = this.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transform, x, y);
|
|
this.transformText = this.localTransformText.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transformText, x, y);
|
|
},
|
|
setPositionRelative: function (x, y) {
|
|
this.relPosX = x;
|
|
this.relPosY = y;
|
|
this.setPosition(x, y);
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Id);
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setDelete: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetDelete,
|
|
oldPr: this.bDelete,
|
|
newPr: pr
|
|
});
|
|
this.bDelete = pr;
|
|
},
|
|
setDLblPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetDLblPos,
|
|
oldPr: this.dLblPos,
|
|
newPr: pr
|
|
});
|
|
this.dLblPos = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setLayout: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetLayout,
|
|
oldPr: this.layout,
|
|
newPr: pr
|
|
});
|
|
this.layout = pr;
|
|
},
|
|
setNumFmt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetNumFmt,
|
|
oldPr: this.numFmt,
|
|
newPr: pr
|
|
});
|
|
this.numFmt = pr;
|
|
},
|
|
setSeparator: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetSeparator,
|
|
oldPr: this.separator,
|
|
newPr: pr
|
|
});
|
|
this.separator = pr;
|
|
},
|
|
setShowBubbleSize: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetShowBubbleSize,
|
|
oldPr: this.showBubbleSize,
|
|
newPr: pr
|
|
});
|
|
this.showBubbleSize = pr;
|
|
},
|
|
setShowCatName: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetShowCatName,
|
|
oldPr: this.showCatName,
|
|
newPr: pr
|
|
});
|
|
this.showCatName = pr;
|
|
},
|
|
setShowLegendKey: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetShowLegendKey,
|
|
oldPr: this.showLegendKey,
|
|
newPr: pr
|
|
});
|
|
this.showLegendKey = pr;
|
|
},
|
|
setShowPercent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetShowPercent,
|
|
oldPr: this.showPercent,
|
|
newPr: pr
|
|
});
|
|
this.showPercent = pr;
|
|
},
|
|
setShowSerName: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetShowSerName,
|
|
oldPr: this.showSerName,
|
|
newPr: pr
|
|
});
|
|
this.showSerName = pr;
|
|
},
|
|
setShowVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetShowVal,
|
|
oldPr: this.showVal,
|
|
newPr: pr
|
|
});
|
|
this.showVal = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetTx,
|
|
oldPr: this.tx,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbl_SetTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_DLbl_SetDelete:
|
|
this.bDelete = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetDLblPos:
|
|
this.dLblPos = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetLayout:
|
|
this.layout = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetNumFmt:
|
|
this.numFmt = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetSeparator:
|
|
this.separator = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowBubbleSize:
|
|
this.showBubbleSize = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowCatName:
|
|
this.showCatName = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowLegendKey:
|
|
this.showLegendKey = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowPercent:
|
|
this.showPercent = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowSerName:
|
|
this.showSerName = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowVal:
|
|
this.showVal = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetTx:
|
|
this.tx = data.oldPr;
|
|
break;
|
|
case historyitem_DLbl_SetTxPr:
|
|
this.txPr = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_DLbl_SetDelete:
|
|
this.bDelete = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetDLblPos:
|
|
this.dLblPos = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetLayout:
|
|
this.layout = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetNumFmt:
|
|
this.numFmt = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetSeparator:
|
|
this.separator = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowBubbleSize:
|
|
this.showBubbleSize = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowCatName:
|
|
this.showCatName = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowLegendKey:
|
|
this.showLegendKey = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowPercent:
|
|
this.showPercent = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowSerName:
|
|
this.showSerName = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetShowVal:
|
|
this.showVal = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetTx:
|
|
this.tx = data.newPr;
|
|
break;
|
|
case historyitem_DLbl_SetTxPr:
|
|
this.txPr = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
switch (data.Type) {
|
|
case historyitem_DLbl_SetDLblPos:
|
|
case historyitem_DLbl_SetIdx:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetLayout:
|
|
case historyitem_DLbl_SetSpPr:
|
|
case historyitem_DLbl_SetTx:
|
|
case historyitem_DLbl_SetTxPr:
|
|
case historyitem_DLbl_SetNumFmt:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetSeparator:
|
|
w.WriteBool(typeof data.newPr === "string");
|
|
if (typeof data.newPr === "string") {
|
|
w.WriteString2(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetDelete:
|
|
case historyitem_DLbl_SetShowBubbleSize:
|
|
case historyitem_DLbl_SetShowCatName:
|
|
case historyitem_DLbl_SetShowLegendKey:
|
|
case historyitem_DLbl_SetShowPercent:
|
|
case historyitem_DLbl_SetShowSerName:
|
|
case historyitem_DLbl_SetShowVal:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_DLbl_SetDelete:
|
|
if (r.GetBool()) {
|
|
this.bDelete = r.GetBool();
|
|
} else {
|
|
this.bDelete = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetDLblPos:
|
|
if (r.GetBool()) {
|
|
this.dLblPos = r.GetLong();
|
|
} else {
|
|
this.dLblPos = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetIdx:
|
|
if (r.GetBool()) {
|
|
this.idx = r.GetLong();
|
|
} else {
|
|
this.idx = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetLayout:
|
|
if (r.GetBool()) {
|
|
this.layout = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.layout = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetNumFmt:
|
|
if (r.GetBool()) {
|
|
this.numFmt = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.numFmt = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetSeparator:
|
|
if (r.GetBool()) {
|
|
this.separator = r.GetString2();
|
|
} else {
|
|
this.separator = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetShowBubbleSize:
|
|
if (r.GetBool()) {
|
|
this.showBubbleSize = r.GetBool();
|
|
} else {
|
|
this.showBubbleSize = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetShowCatName:
|
|
if (r.GetBool()) {
|
|
this.showCatName = r.GetBool();
|
|
} else {
|
|
this.showCatName = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetShowLegendKey:
|
|
if (r.GetBool()) {
|
|
this.showLegendKey = r.GetBool();
|
|
} else {
|
|
this.showLegendKey = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetShowPercent:
|
|
if (r.GetBool()) {
|
|
this.showPercent = r.GetBool();
|
|
} else {
|
|
this.showPercent = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetShowSerName:
|
|
if (r.GetBool()) {
|
|
this.showSerName = r.GetBool();
|
|
} else {
|
|
this.showSerName = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetShowVal:
|
|
if (r.GetBool()) {
|
|
this.showVal = r.GetBool();
|
|
} else {
|
|
this.showVal = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetSpPr:
|
|
if (r.GetBool()) {
|
|
this.spPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.spPr = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetTx:
|
|
if (r.GetBool()) {
|
|
this.tx = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.tx = null;
|
|
}
|
|
break;
|
|
case historyitem_DLbl_SetTxPr:
|
|
if (r.GetBool()) {
|
|
this.txPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.txPr = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CPlotArea() {
|
|
this.charts = [];
|
|
this.dTable = null;
|
|
this.layout = null;
|
|
this.serAx = null;
|
|
this.spPr = null;
|
|
this.axId = [];
|
|
this.valAx = null;
|
|
this.catAx = null;
|
|
this.dateAx = null;
|
|
this.chart = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CPlotArea.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
break;
|
|
case historyitem_PlotArea_RemoveAxis:
|
|
break;
|
|
case historyitem_PlotArea_RemoveChart:
|
|
break;
|
|
case historyitem_PlotArea_AddChart:
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_PlotArea_SetCatAx:
|
|
break;
|
|
case historyitem_PlotArea_SetDateAx:
|
|
break;
|
|
case historyitem_PlotArea_SetDTable:
|
|
break;
|
|
case historyitem_PlotArea_SetLayout:
|
|
break;
|
|
case historyitem_PlotArea_SetSerAx:
|
|
break;
|
|
case historyitem_PlotArea_SetSpPr:
|
|
break;
|
|
case historyitem_PlotArea_SetValAx:
|
|
break;
|
|
case historyitem_PlotArea_AddAxis:
|
|
break;
|
|
}
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_PlotArea;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CPlotArea(),
|
|
i,
|
|
j,
|
|
k;
|
|
if (this.dTable) {
|
|
c.setDTable(this.dTable.createDuplicate());
|
|
}
|
|
if (this.layout) {
|
|
c.setLayout(this.layout.createDuplicate());
|
|
}
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
var len = this.axId.length;
|
|
for (i = 0; i < len; i++) {
|
|
var oAxis = this.axId[i].createDuplicate();
|
|
oAxis.setAxId(++GLOBAL_AX_ID_COUNTER);
|
|
c.addAxis(oAxis);
|
|
}
|
|
var cur_chart, cur_axis;
|
|
for (i = 0; i < this.charts.length; ++i) {
|
|
cur_chart = this.charts[i];
|
|
c.addChart(cur_chart.createDuplicate(), c.charts.length);
|
|
if (Array.isArray(cur_chart.axId)) {
|
|
for (j = 0; j < cur_chart.axId.length; ++j) {
|
|
cur_axis = cur_chart.axId[j];
|
|
for (k = 0; k < this.axId.length; ++k) {
|
|
if (cur_axis === this.axId[k]) {
|
|
c.charts[i].addAxId(c.axId[k]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for (i = 0; i < this.axId.length; ++i) {
|
|
cur_axis = this.axId[i];
|
|
for (j = 0; j < this.axId.length; ++j) {
|
|
if (cur_axis.crossAx === this.axId[j]) {
|
|
c.axId[i].setCrossAx(c.axId[j]);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return c;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
addAxis: function (axis) {
|
|
if (!axis) {
|
|
return;
|
|
}
|
|
var i;
|
|
for (i = 0; i < this.axId.length; ++i) {
|
|
if (this.axId[i] === axis) {
|
|
return;
|
|
}
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_AddAxis,
|
|
newPr: axis
|
|
});
|
|
this.axId.push(axis);
|
|
axis.setParent(this);
|
|
if (axis instanceof CCatAx) {
|
|
this.catAx = axis;
|
|
}
|
|
if (axis instanceof CValAx) {
|
|
this.valAx = axis;
|
|
}
|
|
},
|
|
addChart: function (pr, idx) {
|
|
var pos;
|
|
if (isRealNumber(idx)) {
|
|
pos = idx;
|
|
} else {
|
|
pos = this.charts.length;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_AddChart,
|
|
newPr: pr,
|
|
pos: pos
|
|
});
|
|
this.charts.splice(pos, 0, pr);
|
|
pr.setParent(this);
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
removeChartByPos: function (pos) {
|
|
if (this.charts[pos]) {
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_RemoveChart,
|
|
pos: pos,
|
|
newPr: this.charts[pos]
|
|
});
|
|
var chart = this.charts.splice(pos, 1)[0];
|
|
if (Array.isArray(chart.axId)) {
|
|
var chart_axis = chart.axId;
|
|
for (var i = 0; i < chart_axis.length; ++i) {
|
|
var axis = chart_axis[i];
|
|
for (var j = 0; j < this.charts.length; ++j) {
|
|
var other_chart = this.charts[j];
|
|
if (Array.isArray(other_chart.axId)) {
|
|
for (var k = 0; k < other_chart.axId.length; ++k) {
|
|
if (other_chart.axId[k] === axis) {
|
|
break;
|
|
}
|
|
}
|
|
if (k < other_chart.axId.length) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (j === this.charts.length) {
|
|
this.removeAxis(axis);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
removeCharts: function (startPos, endPos) {
|
|
for (var i = endPos; i >= startPos; --i) {
|
|
this.removeChartByPos(i);
|
|
}
|
|
},
|
|
removeAxis: function (axis) {
|
|
for (var i = this.axId.length - 1; i > -1; --i) {
|
|
if (this.axId[i] === axis) {
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_RemoveAxis,
|
|
newPr: axis,
|
|
pos: i
|
|
});
|
|
this.axId.splice(i, 1);
|
|
}
|
|
}
|
|
},
|
|
setCatAx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_SetCatAx,
|
|
oldPr: this.catAx,
|
|
newPr: pr
|
|
});
|
|
this.catAx = pr;
|
|
},
|
|
setDateAx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_SetDateAx,
|
|
oldPr: this.dateAx,
|
|
newPr: pr
|
|
});
|
|
this.dateAx = pr;
|
|
},
|
|
setDTable: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_SetDTable,
|
|
oldPr: this.dTable,
|
|
newPr: pr
|
|
});
|
|
this.dTable = pr;
|
|
},
|
|
setLayout: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_SetLayout,
|
|
oldPr: this.layout,
|
|
newPr: pr
|
|
});
|
|
this.layout = pr;
|
|
},
|
|
setSerAx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_SetSerAx,
|
|
oldPr: this.serAx,
|
|
newPr: pr
|
|
});
|
|
this.serAx = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
if (pr) {
|
|
pr.setParent(this);
|
|
}
|
|
},
|
|
setValAx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PlotArea_SetValAx,
|
|
oldPr: this.valAx,
|
|
newPr: pr
|
|
});
|
|
this.valAx = pr;
|
|
},
|
|
getHorizontalAxis: function () {
|
|
var axis_by_types = this.getAxisByTypes();
|
|
for (var i = 0; i < axis_by_types.valAx.length; ++i) {
|
|
if (axis_by_types.valAx[i].axPos === AX_POS_B || axis_by_types.valAx[i].axPos === AX_POS_T) {
|
|
return axis_by_types.valAx[i];
|
|
}
|
|
}
|
|
for (var i = 0; i < axis_by_types.valAx.length; ++i) {
|
|
if (axis_by_types.catAx[i].axPos === AX_POS_B || axis_by_types.catAx[i].axPos === AX_POS_T) {
|
|
return axis_by_types.catAx[i];
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
getVerticalAxis: function () {
|
|
var axis_by_types = this.getAxisByTypes();
|
|
for (var i = 0; i < axis_by_types.valAx.length; ++i) {
|
|
if (axis_by_types.valAx[i].axPos === AX_POS_L || axis_by_types.valAx[i].axPos === AX_POS_R) {
|
|
return axis_by_types.valAx[i];
|
|
}
|
|
}
|
|
for (var i = 0; i < axis_by_types.valAx.length; ++i) {
|
|
if (axis_by_types.catAx[i].axPos === AX_POS_L || axis_by_types.catAx[i].axPos === AX_POS_R) {
|
|
return axis_by_types.catAx[i];
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
getAxisByTypes: function () {
|
|
var ret = {
|
|
valAx: [],
|
|
catAx: [],
|
|
dateAx: []
|
|
};
|
|
for (var i = 0; i < this.axId.length; ++i) {
|
|
var axis = this.axId[i];
|
|
switch (axis.getObjectType()) {
|
|
case historyitem_type_CatAx:
|
|
case historyitem_type_DateAx:
|
|
ret.catAx.push(axis);
|
|
break;
|
|
case historyitem_type_ValAx:
|
|
ret.valAx.push(axis);
|
|
break;
|
|
}
|
|
}
|
|
return ret;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_PlotArea_RemoveAxis:
|
|
this.axId.splice(data.pos, 0, data.newPr);
|
|
break;
|
|
case historyitem_PlotArea_RemoveChart:
|
|
this.charts.splice(data.pos, 0, data.newPr);
|
|
break;
|
|
case historyitem_PlotArea_AddChart:
|
|
for (var i = this.charts.length - 1; i > -1; --i) {
|
|
if (this.charts[i] === data.newPr) {
|
|
this.charts.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_PlotArea_SetCatAx:
|
|
this.catAx = data.oldPr;
|
|
break;
|
|
case historyitem_PlotArea_SetDateAx:
|
|
this.dateAx = data.oldPr;
|
|
break;
|
|
case historyitem_PlotArea_SetDTable:
|
|
this.dTable = data.oldPr;
|
|
break;
|
|
case historyitem_PlotArea_SetLayout:
|
|
this.layout = data.oldPr;
|
|
break;
|
|
case historyitem_PlotArea_SetSerAx:
|
|
this.serAx = data.oldPr;
|
|
break;
|
|
case historyitem_PlotArea_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_PlotArea_SetValAx:
|
|
this.valAx = data.oldPr;
|
|
break;
|
|
case historyitem_PlotArea_AddAxis:
|
|
for (var i = this.axId.length; i > -1; --i) {
|
|
if (this.axId[i] === data.newPr) {
|
|
this.axId.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_PlotArea_RemoveAxis:
|
|
this.axId.splice(data.pos, 1);
|
|
break;
|
|
case historyitem_PlotArea_RemoveChart:
|
|
this.charts.splice(data.pos, 1);
|
|
break;
|
|
case historyitem_PlotArea_AddChart:
|
|
this.charts.splice(data.pos, 0, data.newPr);
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_PlotArea_SetCatAx:
|
|
this.catAx = data.newPr;
|
|
break;
|
|
case historyitem_PlotArea_SetDateAx:
|
|
this.dateAx = data.newPr;
|
|
break;
|
|
case historyitem_PlotArea_SetDTable:
|
|
this.dTable = data.newPr;
|
|
break;
|
|
case historyitem_PlotArea_SetLayout:
|
|
this.layout = data.newPr;
|
|
break;
|
|
case historyitem_PlotArea_SetSerAx:
|
|
this.serAx = data.newPr;
|
|
break;
|
|
case historyitem_PlotArea_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_PlotArea_SetValAx:
|
|
this.valAx = data.newPr;
|
|
break;
|
|
case historyitem_PlotArea_AddAxis:
|
|
this.axId.push(data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_PlotArea_SetCatAx:
|
|
case historyitem_PlotArea_SetDateAx:
|
|
case historyitem_PlotArea_SetDTable:
|
|
case historyitem_PlotArea_SetLayout:
|
|
case historyitem_PlotArea_SetSerAx:
|
|
case historyitem_PlotArea_SetSpPr:
|
|
case historyitem_PlotArea_SetValAx:
|
|
case historyitem_PlotArea_AddAxis:
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_PlotArea_AddChart:
|
|
writeObject(w, data.newPr);
|
|
writeLong(w, data.pos);
|
|
break;
|
|
case historyitem_PlotArea_RemoveChart:
|
|
case historyitem_PlotArea_RemoveAxis:
|
|
writeLong(w, data.pos);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_PlotArea_AddChart:
|
|
var chart = readObject(r);
|
|
var pos = readLong(r);
|
|
this.charts.splice(pos, 0, chart);
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_PlotArea_SetCatAx:
|
|
this.catAx = readObject(r);
|
|
break;
|
|
case historyitem_PlotArea_SetDateAx:
|
|
this.dateAx = readObject(r);
|
|
break;
|
|
case historyitem_PlotArea_SetDTable:
|
|
this.dTable = readObject(r);
|
|
break;
|
|
case historyitem_PlotArea_SetLayout:
|
|
this.layout = readObject(r);
|
|
break;
|
|
case historyitem_PlotArea_SetSerAx:
|
|
this.serAx = readObject(r);
|
|
break;
|
|
case historyitem_PlotArea_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_PlotArea_SetValAx:
|
|
this.valAx = readObject(r);
|
|
break;
|
|
case historyitem_PlotArea_AddAxis:
|
|
var axis = readObject(r);
|
|
this.axId.push(axis);
|
|
break;
|
|
case historyitem_PlotArea_RemoveChart:
|
|
var pos = readLong(r);
|
|
this.charts.splice(pos, 1);
|
|
break;
|
|
case historyitem_PlotArea_RemoveAxis:
|
|
var pos = readLong(r);
|
|
this.axId.splice(pos, 1);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CBarChart() {
|
|
this.axId = [];
|
|
this.barDir = null;
|
|
this.dLbls = null;
|
|
this.gapWidth = null;
|
|
this.grouping = null;
|
|
this.overlap = null;
|
|
this.series = [];
|
|
this.serLines = null;
|
|
this.varyColors = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CBarChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
getSeriesConstructor: function () {
|
|
return new CBarSeries();
|
|
},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CBarChart();
|
|
c.setBarDir(this.barDir);
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
c.setGapWidth(this.gapWidth);
|
|
c.setGrouping(this.grouping);
|
|
c.setOverlap(this.overlap);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
if (this.serLines) {
|
|
c.setSerLines(this.serLines.createDuplicate());
|
|
}
|
|
c.setVaryColors(this.varyColors);
|
|
return c;
|
|
},
|
|
documentCreateFontMap: function (allFonts) {
|
|
this.dLbls && this.dLbls.documentCreateFontMap(allFonts);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
this.series[i] && this.series[i].documentCreateFontMap(allFonts);
|
|
}
|
|
},
|
|
removeDataLabels: function () {
|
|
var i;
|
|
for (i = 0; i < this.series.length; ++i) {
|
|
if (typeof this.series[i].setDLbls === "function") {
|
|
this.series[i].setDLbls(null);
|
|
}
|
|
}
|
|
},
|
|
getAllRasterImages: function (images) {
|
|
this.dLbls && this.dLbls.getAllRasterImages(images);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
this.series[i].getAllRasterImages(images);
|
|
}
|
|
},
|
|
checkSpPrRasterImages: function (images) {
|
|
this.dLbls && this.dLbls.checkSpPrRasterImages(images);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
this.series[i].checkSpPrRasterImages(images);
|
|
}
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_BarChart;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getAxisByTypes: CPlotArea.prototype.getAxisByTypes,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setFromOtherChart: function (c) {
|
|
var i;
|
|
if (isRealNumber(c.barDir)) {
|
|
this.setBarDir(c.barDir);
|
|
}
|
|
if (c.dLbls) {
|
|
this.setDLbls(c.dLbls);
|
|
}
|
|
if (isRealNumber(c.gapWidth)) {
|
|
this.setGapWidth(c.gapWidth);
|
|
}
|
|
if (isRealNumber(c.grouping)) {
|
|
this.setGrouping(c.grouping);
|
|
}
|
|
if (isRealNumber(c.overlap)) {
|
|
this.setOverlap(c.overlap);
|
|
}
|
|
if (Array.isArray(c.series)) {
|
|
for (i = 0; i < c.series.length; ++i) {
|
|
var ser = new CBarSeries();
|
|
ser.setFromOtherSeries(c.series[i]);
|
|
this.addSer(ser);
|
|
}
|
|
}
|
|
if (isRealBool(c.varyColors)) {
|
|
this.setVaryColors(c.varyColors);
|
|
}
|
|
},
|
|
addAxId: function (pr) {
|
|
if (!pr) {
|
|
return;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_BarChart_AddAxId,
|
|
pr: pr
|
|
});
|
|
this.axId.push(pr);
|
|
},
|
|
setBarDir: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarChart_SetBarDir,
|
|
oldPr: this.barDir,
|
|
newPr: pr
|
|
});
|
|
this.barDir = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setGapWidth: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarChart_SetGapWidth,
|
|
oldPr: this.gapWidth,
|
|
newPr: pr
|
|
});
|
|
this.gapWidth = pr;
|
|
},
|
|
setGrouping: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarChart_SetGrouping,
|
|
oldPr: this.grouping,
|
|
newPr: pr
|
|
});
|
|
this.grouping = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setOverlap: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarChart_SetOverlap,
|
|
oldPr: this.overlap,
|
|
newPr: pr
|
|
});
|
|
this.overlap = pr;
|
|
},
|
|
addSer: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarChart_AddSer,
|
|
pr: pr
|
|
});
|
|
this.series.push(pr);
|
|
pr.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setSerLines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarChart_SetSerLines,
|
|
oldPr: this.serLines,
|
|
newPr: pr
|
|
});
|
|
this.serLines = pr;
|
|
},
|
|
setVaryColors: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarChart_SetVaryColors,
|
|
oldPr: this.varyColors,
|
|
newPr: pr
|
|
});
|
|
this.varyColors = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_BarChart_AddAxId:
|
|
for (var i = this.axId.length; i > -1; --i) {
|
|
if (this.axId[i] === data.pr) {
|
|
this.axId.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetBarDir:
|
|
this.barDir = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetGapWidth:
|
|
this.gapWidth = data.oldPr;
|
|
break;
|
|
case historyitem_BarChart_SetGrouping:
|
|
this.grouping = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetOverlap:
|
|
this.overlap = data.oldPr;
|
|
break;
|
|
case historyitem_BarChart_AddSer:
|
|
for (var i = this.series.length; i > -1; --i) {
|
|
if (this.series[i] === data.pr) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetSerLines:
|
|
this.serLines = data.oldPr;
|
|
break;
|
|
case historyitem_BarChart_SetVaryColors:
|
|
this.varyColors = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_BarChart_AddAxId:
|
|
this.axId.push(data.pr);
|
|
break;
|
|
case historyitem_BarChart_SetBarDir:
|
|
this.barDir = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetGapWidth:
|
|
this.gapWidth = data.newPr;
|
|
break;
|
|
case historyitem_BarChart_SetGrouping:
|
|
this.grouping = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetOverlap:
|
|
this.overlap = data.newPr;
|
|
break;
|
|
case historyitem_BarChart_AddSer:
|
|
this.series.push(data.pr);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetSerLines:
|
|
this.serLines = data.newPr;
|
|
break;
|
|
case historyitem_BarChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_BarChart_AddAxId:
|
|
case historyitem_BarChart_AddSer:
|
|
writeObject(w, data.pr);
|
|
break;
|
|
case historyitem_BarChart_SetBarDir:
|
|
case historyitem_BarChart_SetGapWidth:
|
|
case historyitem_BarChart_SetGrouping:
|
|
case historyitem_BarChart_SetOverlap:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_BarChart_SetDLbls:
|
|
case historyitem_BarChart_SetSerLines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_BarChart_SetVaryColors:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_BarChart_AddAxId:
|
|
var ax = readObject(r);
|
|
if (isRealObject(ax)) {
|
|
this.axId.push(ax);
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetBarDir:
|
|
this.barDir = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetGapWidth:
|
|
this.gapWidth = readLong(r);
|
|
break;
|
|
case historyitem_BarChart_SetGrouping:
|
|
this.grouping = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetOverlap:
|
|
this.overlap = readLong(r);
|
|
break;
|
|
case historyitem_BarChart_AddSer:
|
|
var ser = readObject(r);
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_BarChart_SetSerLines:
|
|
this.serLines = readObject(r);
|
|
break;
|
|
case historyitem_BarChart_SetVaryColors:
|
|
this.varyColors = readBool(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CAreaChart() {
|
|
this.axId = [];
|
|
this.dLbls = null;
|
|
this.dropLines = null;
|
|
this.grouping = null;
|
|
this.series = [];
|
|
this.varyColors = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CAreaChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
getSeriesConstructor: function () {
|
|
return new CAreaSeries();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CAreaChart();
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
if (this.dropLines) {
|
|
c.setDropLines(this.dropLines.createDuplicate());
|
|
}
|
|
c.setGrouping(this.grouping);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
c.setVaryColors(this.varyColors);
|
|
return c;
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_AreaChart;
|
|
},
|
|
getAllRasterImages: CBarChart.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CBarChart.prototype.checkSpPrRasterImages,
|
|
removeDataLabels: CBarChart.prototype.removeDataLabels,
|
|
getAxisByTypes: CPlotArea.prototype.getAxisByTypes,
|
|
setFromOtherChart: function (c) {
|
|
var i;
|
|
if (c.dLbls) {
|
|
this.setDLbls(c.dLbls);
|
|
}
|
|
if (c.dropLines) {
|
|
this.setDropLines(c.dropLines);
|
|
}
|
|
if (isRealNumber(c.grouping)) {
|
|
this.setGrouping(c.grouping);
|
|
}
|
|
if (Array.isArray(c.series)) {
|
|
for (i = 0; i < c.series.length; ++i) {
|
|
var ser = new CAreaSeries();
|
|
ser.setFromOtherSeries(c.series[i]);
|
|
this.addSer(ser);
|
|
}
|
|
}
|
|
if (isRealBool(c.varyColors)) {
|
|
this.setVaryColors(c.varyColors);
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
addAxId: function (pr) {
|
|
if (!pr) {
|
|
return;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_AreaChart_AddAxId,
|
|
newPr: pr
|
|
});
|
|
this.axId.push(pr);
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.dLbls) {
|
|
this.dLbls.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setDropLines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaChart_SetDropLines,
|
|
oldPr: this.dropLines,
|
|
newPr: pr
|
|
});
|
|
this.dropLines = pr;
|
|
},
|
|
setGrouping: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaChart_SetGrouping,
|
|
oldPr: this.grouping,
|
|
newPr: pr
|
|
});
|
|
this.grouping = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaChart_AddSer,
|
|
ser: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setVaryColors: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaChart_SetVaryColors,
|
|
oldPr: this.varyColors,
|
|
newPr: pr
|
|
});
|
|
this.varyColors = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_AreaChart_AddAxId:
|
|
for (var i = this.axId.length - 1; i > -1; --i) {
|
|
if (this.axId[i] === data.newPr) {
|
|
this.axId.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_AreaChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_AreaChart_SetDropLines:
|
|
this.dropLines = data.oldPr;
|
|
break;
|
|
case historyitem_AreaChart_SetGrouping:
|
|
this.grouping = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_AreaChart_SetVaryColors:
|
|
this.varyColors = data.oldPr;
|
|
break;
|
|
case historyitem_AreaChart_AddSer:
|
|
for (var i = this.series.length - 1; i > -1; --i) {
|
|
if (this.series[i] === data.ser) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_AreaChart_AddAxId:
|
|
this.axId.push(data.newPr);
|
|
break;
|
|
case historyitem_AreaChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_AreaChart_SetDropLines:
|
|
this.dropLines = data.newPr;
|
|
break;
|
|
case historyitem_AreaChart_SetGrouping:
|
|
this.grouping = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_AreaChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
break;
|
|
case historyitem_AreaChart_AddSer:
|
|
if (isRealObject(data.ser)) {
|
|
this.series.push(data.ser);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_AreaChart_AddAxId:
|
|
case historyitem_AreaChart_SetDLbls:
|
|
case historyitem_AreaChart_SetDropLines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_AreaChart_SetGrouping:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_AreaChart_SetVaryColors:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_AreaChart_AddSer:
|
|
writeObject(w, data.ser);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_AreaChart_AddAxId:
|
|
var ax = readObject(r);
|
|
if (isRealObject(ax)) {
|
|
this.axId.push(ax);
|
|
}
|
|
break;
|
|
case historyitem_AreaChart_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_AreaChart_SetDropLines:
|
|
this.dropLines = readObject(r);
|
|
break;
|
|
case historyitem_AreaChart_SetGrouping:
|
|
this.grouping = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_AreaChart_SetVaryColors:
|
|
this.varyColors = readBool(r);
|
|
break;
|
|
case historyitem_AreaChart_AddSer:
|
|
var ser = readObject(r);
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CAreaSeries() {
|
|
this.cat = null;
|
|
this.dLbls = null;
|
|
this.dPt = [];
|
|
this.errBars = null;
|
|
this.idx = null;
|
|
this.order = null;
|
|
this.pictureOptions = null;
|
|
this.spPr = null;
|
|
this.trendline = null;
|
|
this.parent = null;
|
|
this.tx = null;
|
|
this.val = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CAreaSeries.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CAreaSeries();
|
|
if (this.cat) {
|
|
c.setCat(this.cat.createDuplicate());
|
|
}
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
for (var i = 0; i < this.dPt.length; ++i) {
|
|
c.addDPt(this.dPt[i].createDuplicate());
|
|
}
|
|
if (this.errBars) {
|
|
c.setErrBars(this.errBars.createDuplicate());
|
|
}
|
|
c.setIdx(this.idx);
|
|
c.setOrder(this.order);
|
|
if (this.pictureOptions) {
|
|
c.setPictureOptions(this.pictureOptions.createDuplicate());
|
|
}
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.trendline) {
|
|
c.setTrendline(this.trendline.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.val) {
|
|
c.setVal(this.val.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
documentCreateFontMap: function (allFonts) {
|
|
this.dLbls && this.dLbls.documentCreateFontMap(allFonts);
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_AreaSeries;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
getAllRasterImages: function (images) {
|
|
this.spPr && this.spPr.checkBlipFillRasterImage(images);
|
|
this.dLbls && this.dLbls.getAllRasterImages(images);
|
|
for (var i = 0; i < this.dPt.length; ++i) {
|
|
this.dPt[i].spPr && this.dPt[i].spPr.checkBlipFillRasterImage(images);
|
|
this.dPt[i].marker && this.dPt[i].marker.spPr && this.dPt[i].marker.spPr.checkBlipFillRasterImage(images);
|
|
}
|
|
},
|
|
checkSpPrRasterImages: function (images) {
|
|
checkSpPrRasterImages(this.spPr);
|
|
checkSpPrRasterImages(this.dLbls);
|
|
for (var i = 0; i < this.dPt.length; ++i) {
|
|
checkSpPrRasterImages(this.dPt[i].spPr);
|
|
this.dPt[i].marker && checkSpPrRasterImages(this.dPt[i].marker.spPr);
|
|
}
|
|
},
|
|
setFromOtherSeries: function (o) {
|
|
if (o.cat) {
|
|
this.setCat(o.cat);
|
|
}
|
|
if (o.dLbls) {
|
|
this.setDLbls(o.dLbls);
|
|
}
|
|
if (o.dPt) {
|
|
for (var i = 0; i < o.dPt.length; ++i) {
|
|
this.addDPt(o.dPt[i]);
|
|
}
|
|
}
|
|
if (o.errBars) {
|
|
this.setErrBars(o.errBars);
|
|
}
|
|
if (isRealNumber(o.idx)) {
|
|
this.setIdx(o.idx);
|
|
}
|
|
if (isRealNumber(o.order)) {
|
|
this.setOrder(o.order);
|
|
}
|
|
if (o.pictureOptions) {
|
|
this.setPictureOptions(o.pictureOptions);
|
|
}
|
|
if (o.spPr) {
|
|
this.setSpPr(o.spPr);
|
|
}
|
|
if (o.trendline) {
|
|
this.setTrendline(o.trendline);
|
|
}
|
|
if (o.tx) {
|
|
this.setTx(o.tx);
|
|
}
|
|
if (o.val) {
|
|
this.setVal(o.val);
|
|
}
|
|
if (o.xVal) {
|
|
this.setCat(new CCat());
|
|
this.cat.setFromOtherObject(o.xVal);
|
|
}
|
|
if (o.yVal) {
|
|
this.setVal(new CYVal());
|
|
this.val.setFromOtherObject(o.yVal);
|
|
}
|
|
},
|
|
getSeriesName: function () {
|
|
if (this.tx) {
|
|
if (typeof this.tx.val === "string") {
|
|
return this.tx.val;
|
|
}
|
|
if (this.tx.strRef && this.tx.strRef.strCache && this.tx.strRef.strCache.pt.length > 0 && this.tx.strRef.strCache.pt[0] && typeof this.tx.strRef.strCache.pt[0].val === "string") {
|
|
return this.tx.strRef.strCache.pt[0].val;
|
|
}
|
|
}
|
|
return getChartTranslateManager().asc_getSeries() + " " + (this.idx + 1);
|
|
},
|
|
getCatName: function (idx) {
|
|
var pts;
|
|
var cat;
|
|
if (this.cat) {
|
|
cat = this.cat;
|
|
} else {
|
|
if (this.xVal) {
|
|
cat = this.xVal;
|
|
}
|
|
}
|
|
if (cat) {
|
|
if (cat && cat.strRef && cat.strRef.strCache) {
|
|
pts = cat.strRef.strCache.pt;
|
|
} else {
|
|
if (cat.numRef && cat.numRef.numCache) {
|
|
pts = cat.numRef.numCache.pts;
|
|
}
|
|
}
|
|
if (Array.isArray(pts)) {
|
|
for (var i = 0; i < pts.length; ++i) {
|
|
if (pts[i].idx === idx) {
|
|
return pts[i].val + "";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return idx + "";
|
|
},
|
|
getFormatCode: function () {
|
|
var pts;
|
|
var val;
|
|
if (this.val) {
|
|
val = this.val;
|
|
} else {
|
|
if (this.yVal) {
|
|
val = this.yVal;
|
|
}
|
|
}
|
|
if (val) {
|
|
if (val && val.strRef && val.strRef.strCache && val.strRef.strCache.formatCode) {
|
|
return val.strRef.strCache.formatCode;
|
|
} else {
|
|
if (val.strLit && val.strLit.formatCode) {
|
|
return val.strLit.formatCode;
|
|
} else {
|
|
if (val.numRef && val.numRef.numCache && val.numRef.numCache.formatCode) {
|
|
return val.numRef.numCache.formatCode;
|
|
} else {
|
|
if (val.numLit && val.numLit.formatCode) {
|
|
return val.numLit.formatCode;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return "General";
|
|
},
|
|
getValByIndex: function (idx, bPercent) {
|
|
var pts;
|
|
var val;
|
|
if (this.val) {
|
|
val = this.val;
|
|
} else {
|
|
if (this.yVal) {
|
|
val = this.yVal;
|
|
}
|
|
}
|
|
if (val) {
|
|
if (val && val.strRef && val.strRef.strCache) {
|
|
pts = val.strRef.strCache.pt;
|
|
} else {
|
|
if (val.strLit) {
|
|
pts = val.strLit.pts;
|
|
} else {
|
|
if (val.numRef && val.numRef.numCache) {
|
|
pts = val.numRef.numCache.pts;
|
|
} else {
|
|
if (val.numLit) {
|
|
pts = val.numLit.pts;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (Array.isArray(pts)) {
|
|
var i;
|
|
if (! (bPercent === true)) {
|
|
for (i = 0; i < pts.length; ++i) {
|
|
if (pts[i].idx === idx) {
|
|
return pts[i].val + "";
|
|
}
|
|
}
|
|
} else {
|
|
var summ = 0,
|
|
value;
|
|
for (i = 0; i < pts.length; ++i) {
|
|
if (isRealNumber(pts[i].val)) {
|
|
summ += pts[i].val;
|
|
}
|
|
if (pts[i].idx === idx) {
|
|
value = pts[i].val;
|
|
}
|
|
}
|
|
if (summ > 0 && isRealNumber(value)) {
|
|
return Math.round(100 * (value / summ)) + "%";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return "";
|
|
},
|
|
setCat: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetCat,
|
|
oldPr: this.cat,
|
|
newPr: pr
|
|
});
|
|
this.cat = pr;
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
},
|
|
addDPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetDPt,
|
|
newPr: pr
|
|
});
|
|
this.dPt.push(pr);
|
|
},
|
|
removeDPt: function (idx) {
|
|
if (this.dPt[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonSeries_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.dPt[idx]
|
|
});
|
|
this.dPt.splice(idx, 1);
|
|
}
|
|
},
|
|
setErrBars: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetErrBars,
|
|
oldPr: this.errBars,
|
|
newPr: pr
|
|
});
|
|
this.errBars = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setOrder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetOrder,
|
|
oldPr: this.order,
|
|
newPr: pr
|
|
});
|
|
this.order = pr;
|
|
},
|
|
setPictureOptions: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetPictureOptions,
|
|
oldPr: this.pictureOptions,
|
|
newPr: pr
|
|
});
|
|
this.pictureOptions = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTrendline: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetTrendline,
|
|
oldPr: this.trendline,
|
|
newPr: pr
|
|
});
|
|
this.trendline = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetTx,
|
|
oldPr: this.trendline,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_AreaSeries_SetVal,
|
|
oldPr: this.trendline,
|
|
newPr: pr
|
|
});
|
|
this.val = pr;
|
|
if (this.val && this.val.setParent) {
|
|
this.val.setParent(this);
|
|
}
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 0, data.pt);
|
|
break;
|
|
case historyitem_AreaSeries_SetCat:
|
|
this.cat = data.oldPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetDPt:
|
|
findPrAndRemove(this.dPt, data.newPr);
|
|
break;
|
|
case historyitem_AreaSeries_SetErrBars:
|
|
this.errBars = data.oldPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetOrder:
|
|
this.order = data.oldPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetPictureOptions:
|
|
this.pictureOptions = data.oldPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetTrendline:
|
|
this.trendline = data.oldPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetTx:
|
|
this.tx = data.oldPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 1);
|
|
break;
|
|
case historyitem_AreaSeries_SetCat:
|
|
this.cat = data.newPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetDPt:
|
|
this.dPt.push(data.newPr);
|
|
break;
|
|
case historyitem_AreaSeries_SetErrBars:
|
|
this.errBars = data.newPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetOrder:
|
|
this.order = data.newPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetPictureOptions:
|
|
this.pictureOptions = data.newPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetTrendline:
|
|
this.trendline = data.newPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetTx:
|
|
this.tx = data.newPr;
|
|
break;
|
|
case historyitem_AreaSeries_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_AreaSeries_SetCat:
|
|
case historyitem_AreaSeries_SetDLbls:
|
|
case historyitem_AreaSeries_SetDPt:
|
|
case historyitem_AreaSeries_SetErrBars:
|
|
case historyitem_AreaSeries_SetPictureOptions:
|
|
case historyitem_AreaSeries_SetSpPr:
|
|
case historyitem_AreaSeries_SetTrendline:
|
|
case historyitem_AreaSeries_SetTx:
|
|
case historyitem_AreaSeries_SetVal:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_AreaSeries_SetIdx:
|
|
case historyitem_AreaSeries_SetOrder:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
writeLong(w, data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_AreaSeries_SetCat:
|
|
this.cat = readObject(r);
|
|
break;
|
|
case historyitem_AreaSeries_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
break;
|
|
case historyitem_AreaSeries_SetDPt:
|
|
this.dPt.push(readObject(r));
|
|
break;
|
|
case historyitem_AreaSeries_SetErrBars:
|
|
this.errBars = readObject(r);
|
|
break;
|
|
case historyitem_AreaSeries_SetIdx:
|
|
this.idx = readLong(r);
|
|
break;
|
|
case historyitem_AreaSeries_SetOrder:
|
|
this.order = readLong(r);
|
|
break;
|
|
case historyitem_AreaSeries_SetPictureOptions:
|
|
this.pictureOptions = readObject(r);
|
|
break;
|
|
case historyitem_AreaSeries_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_AreaSeries_SetTrendline:
|
|
this.trendline = readObject(r);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
var pos = readLong(r);
|
|
if (isRealNumber(pos)) {
|
|
this.dPt.splice(pos, 1);
|
|
}
|
|
break;
|
|
case historyitem_AreaSeries_SetTx:
|
|
this.tx = readObject(r);
|
|
break;
|
|
case historyitem_AreaSeries_SetVal:
|
|
this.val = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var TYPE_AXIS_CAT = 0;
|
|
var TYPE_AXIS_DATE = 1;
|
|
var TYPE_AXIS_SER = 2;
|
|
var TYPE_AXIS_VAL = 3;
|
|
var AX_POS_L = 0;
|
|
var AX_POS_T = 1;
|
|
var AX_POS_R = 2;
|
|
var AX_POS_B = 3;
|
|
var CROSSES_AUTO_ZERO = 0;
|
|
var CROSSES_MAX = 1;
|
|
var CROSSES_MIN = 2;
|
|
var LBL_ALG_CTR = 0;
|
|
var LBL_ALG_L = 1;
|
|
var LBL_ALG_R = 2;
|
|
var TICK_MARK_CROSS = 0;
|
|
var TICK_MARK_IN = 1;
|
|
var TICK_MARK_NONE = 2;
|
|
var TICK_MARK_OUT = 3;
|
|
var TICK_LABEL_POSITION_HIGH = 0;
|
|
var TICK_LABEL_POSITION_LOW = 1;
|
|
var TICK_LABEL_POSITION_NEXT_TO = 2;
|
|
var TICK_LABEL_POSITION_NONE = 3;
|
|
var TIME_UNIT_DAYS = 0;
|
|
var TIME_UNIT_MONTHS = 1;
|
|
var TIME_UNIT_YEARS = 2;
|
|
var CROSS_BETWEEN_BETWEEN = 0;
|
|
var CROSS_BETWEEN_MID_CAT = 1;
|
|
function CCatAx() {
|
|
this.auto = null;
|
|
this.axId = null;
|
|
this.axPos = null;
|
|
this.crossAx = null;
|
|
this.crosses = null;
|
|
this.crossesAt = null;
|
|
this.bDelete = null;
|
|
this.extLst = null;
|
|
this.lblAlgn = null;
|
|
this.lblOffset = null;
|
|
this.majorGridlines = null;
|
|
this.majorTickMark = null;
|
|
this.minorGridlines = null;
|
|
this.minorTickMark = null;
|
|
this.noMultiLvlLbl = null;
|
|
this.numFmt = null;
|
|
this.scaling = null;
|
|
this.spPr = null;
|
|
this.tickLblPos = null;
|
|
this.tickLblSkip = null;
|
|
this.tickMarkSkip = null;
|
|
this.title = null;
|
|
this.txPr = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CCatAx.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
this.parent.parent.parent.addToRecalculate();
|
|
}
|
|
},
|
|
Refresh_RecalcData2: function (pageIndex, object) {
|
|
this.parent && this.parent.parent && this.parent.parent.Refresh_RecalcData2(pageIndex, object);
|
|
},
|
|
getDrawingDocument: function () {
|
|
return this.parent && this.parent.parent && this.parent.parent.getDrawingDocument && this.parent.parent.getDrawingDocument();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CCatAx();
|
|
c.setAuto(this.auto);
|
|
c.setAxPos(this.axPos);
|
|
c.setCrosses(this.crosses);
|
|
c.setCrossesAt(this.crossesAt);
|
|
c.setDelete(this.bDelete);
|
|
c.setLblAlgn(this.lblAlgn);
|
|
c.setLblOffset(this.lblOffset);
|
|
if (this.majorGridlines) {
|
|
c.setMajorGridlines(this.majorGridlines.createDuplicate());
|
|
}
|
|
c.setMajorTickMark(this.majorTickMark);
|
|
if (this.minorGridlines) {
|
|
c.setMinorGridlines(this.minorGridlines.createDuplicate());
|
|
}
|
|
c.setMinorTickMark(this.minorTickMark);
|
|
c.setNoMultiLvlLbl(this.noMultiLvlLbl);
|
|
if (this.numFmt) {
|
|
c.setNumFmt(this.numFmt.createDuplicate());
|
|
}
|
|
if (this.scaling) {
|
|
c.setScaling(this.scaling.createDuplicate());
|
|
}
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
c.setTickLblPos(this.tickLblPos);
|
|
c.setTickLblSkip(this.tickLblSkip);
|
|
c.setTickMarkSkip(this.tickMarkSkip);
|
|
if (this.title) {
|
|
c.setTitle(this.title.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getMenuProps: function () {
|
|
var ret = new asc_CatAxisSettings();
|
|
if (isRealNumber(this.tickMarkSkip)) {
|
|
ret.putIntervalBetweenTick(this.tickMarkSkip);
|
|
} else {
|
|
ret.putIntervalBetweenTick(1);
|
|
}
|
|
if (!isRealNumber(this.tickLblSkip)) {
|
|
ret.putIntervalBetweenLabelsRule(c_oAscBetweenLabelsRule.auto);
|
|
} else {
|
|
ret.putIntervalBetweenLabelsRule(c_oAscBetweenLabelsRule.manual);
|
|
ret.putIntervalBetweenLabels(this.tickLblSkip);
|
|
}
|
|
var scaling = this.scaling;
|
|
if (!scaling || scaling.orientation !== ORIENTATION_MAX_MIN) {
|
|
ret.putInvertCatOrder(false);
|
|
} else {
|
|
ret.putInvertCatOrder(true);
|
|
}
|
|
var crossAx = this.crossAx;
|
|
if (crossAx) {
|
|
if (isRealNumber(crossAx.crossesAt)) {
|
|
ret.putCrossesRule(c_oAscCrossesRule.value);
|
|
ret.putCrosses(crossAx.crossesAt);
|
|
} else {
|
|
if (crossAx.crosses === CROSSES_MAX) {
|
|
ret.putCrossesRule(c_oAscCrossesRule.maxValue);
|
|
} else {
|
|
if (crossAx.crosses === CROSSES_MIN) {
|
|
ret.putCrossesRule(c_oAscCrossesRule.minValue);
|
|
} else {
|
|
ret.putCrossesRule(c_oAscCrossesRule.auto);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (isRealNumber(this.lblOffset)) {
|
|
ret.putLabelsAxisDistance(this.lblOffset);
|
|
} else {
|
|
ret.putLabelsAxisDistance(100);
|
|
}
|
|
if (this.crossAx) {
|
|
ret.putLabelsPosition(this.crossAx.crossBetween === CROSS_BETWEEN_MID_CAT ? c_oAscLabelsPosition.byDivisions : c_oAscLabelsPosition.betweenDivisions);
|
|
} else {
|
|
ret.putLabelsPosition(c_oAscLabelsPosition.betweenDivisions);
|
|
}
|
|
if (isRealNumber(this.tickLblPos) && isRealNumber(REV_MENU_SETTINGS_LABELS_POS[this.tickLblPos])) {
|
|
ret.putTickLabelsPos(REV_MENU_SETTINGS_LABELS_POS[this.tickLblPos]);
|
|
} else {
|
|
ret.putTickLabelsPos(c_oAscTickLabelsPos.TICK_LABEL_POSITION_NEXT_TO);
|
|
}
|
|
if (isRealNumber(this.majorTickMark) && isRealNumber(REV_MENU_SETTINGS_TICK_MARK[this.majorTickMark])) {
|
|
ret.putMajorTickMark(REV_MENU_SETTINGS_TICK_MARK[this.majorTickMark]);
|
|
} else {
|
|
ret.putMajorTickMark(c_oAscTickMark.TICK_MARK_NONE);
|
|
}
|
|
if (isRealNumber(this.minorTickMark) && isRealNumber(REV_MENU_SETTINGS_TICK_MARK[this.minorTickMark])) {
|
|
ret.putMinorTickMark(REV_MENU_SETTINGS_TICK_MARK[this.minorTickMark]);
|
|
} else {
|
|
ret.putMinorTickMark(c_oAscTickMark.TICK_MARK_NONE);
|
|
}
|
|
return ret;
|
|
},
|
|
setMenuProps: function (props) {
|
|
if (! (isRealObject(props) && typeof props.getAxisType === "function" && (props.getAxisType() === c_oAscAxisType.cat || props.getAxisType() === c_oAscAxisType.date))) {
|
|
return;
|
|
}
|
|
var intervalBetweenTick = props.getIntervalBetweenTick();
|
|
var intervalBetweenLabelsRule = props.getIntervalBetweenLabelsRule();
|
|
var intervalBetweenLabels = props.getIntervalBetweenLabels();
|
|
var invertCatOrder = props.getInvertCatOrder();
|
|
var labelsAxisDistance = props.getLabelsAxisDistance();
|
|
var axisType = props.getAxisType();
|
|
var majorTickMark = props.getMajorTickMark();
|
|
var minorTickMark = props.getMinorTickMark();
|
|
var tickLabelsPos = props.getTickLabelsPos();
|
|
var crossesRule = props.getCrossesRule();
|
|
var crosses = props.getCrosses();
|
|
var labelsPosition = props.getLabelsPosition();
|
|
var bChanged = false;
|
|
if (isRealNumber(intervalBetweenTick) && this.tickMarkSkip !== intervalBetweenTick && this.setTickMarkSkip) {
|
|
this.setTickMarkSkip(intervalBetweenTick);
|
|
bChanged = true;
|
|
}
|
|
if (isRealNumber(intervalBetweenLabelsRule) && this.setTickLblSkip) {
|
|
if (intervalBetweenLabelsRule === c_oAscBetweenLabelsRule.auto) {
|
|
if (isRealNumber(this.tickLblSkip)) {
|
|
this.setTickLblSkip(null);
|
|
bChanged = true;
|
|
}
|
|
} else {
|
|
if (intervalBetweenLabelsRule === c_oAscBetweenLabelsRule.manual && isRealNumber(intervalBetweenLabels) && this.tickLblSkip !== intervalBetweenLabels) {
|
|
this.setTickLblSkip(intervalBetweenLabels);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
if (!this.scaling) {
|
|
this.setScaling(new CScaling());
|
|
}
|
|
var scaling = this.scaling;
|
|
if (isRealBool(invertCatOrder)) {
|
|
var new_orientation = invertCatOrder ? ORIENTATION_MAX_MIN : ORIENTATION_MIN_MAX;
|
|
if (scaling.orientation !== new_orientation) {
|
|
scaling.setOrientation(invertCatOrder ? ORIENTATION_MAX_MIN : ORIENTATION_MIN_MAX);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
if (isRealNumber(labelsAxisDistance) && this.lblOffset !== labelsAxisDistance) {
|
|
this.setLblOffset(labelsAxisDistance);
|
|
bChanged = true;
|
|
}
|
|
if (isRealNumber(axisType)) {}
|
|
if (isRealNumber(majorTickMark) && isRealNumber(MENU_SETTINGS_TICK_MARK[majorTickMark]) && this.majorTickMark !== MENU_SETTINGS_TICK_MARK[majorTickMark]) {
|
|
this.setMajorTickMark(MENU_SETTINGS_TICK_MARK[majorTickMark]);
|
|
bChanged = true;
|
|
}
|
|
if (isRealNumber(minorTickMark) && isRealNumber(MENU_SETTINGS_TICK_MARK[minorTickMark]) && this.minorTickMark !== MENU_SETTINGS_TICK_MARK[minorTickMark]) {
|
|
this.setMinorTickMark(MENU_SETTINGS_TICK_MARK[minorTickMark]);
|
|
bChanged = true;
|
|
}
|
|
if (isRealNumber(tickLabelsPos) && isRealNumber(MENU_SETTINGS_LABELS_POS[tickLabelsPos]) && this.tickLblPos !== MENU_SETTINGS_LABELS_POS[tickLabelsPos]) {
|
|
this.setTickLblPos(MENU_SETTINGS_LABELS_POS[tickLabelsPos]);
|
|
bChanged = true;
|
|
}
|
|
if (isRealNumber(crossesRule) && isRealObject(this.crossAx)) {
|
|
if (crossesRule === c_oAscCrossesRule.auto) {
|
|
if (this.crossAx.crossesAt !== null) {
|
|
this.crossAx.setCrossesAt(null);
|
|
bChanged = true;
|
|
}
|
|
if (this.crossAx.crosses !== CROSSES_AUTO_ZERO) {
|
|
this.crossAx.setCrosses(CROSSES_AUTO_ZERO);
|
|
bChanged = true;
|
|
}
|
|
} else {
|
|
if (crossesRule === c_oAscCrossesRule.value) {
|
|
if (isRealNumber(crosses)) {
|
|
if (this.crossAx.crossesAt !== crosses) {
|
|
this.crossAx.setCrossesAt(crosses);
|
|
bChanged = true;
|
|
}
|
|
if (this.crossAx !== null) {
|
|
this.crossAx.setCrosses(null);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
} else {
|
|
if (crossesRule === c_oAscCrossesRule.maxValue) {
|
|
if (this.crossAx.crossesAt !== null) {
|
|
this.crossAx.setCrossesAt(null);
|
|
bChanged = true;
|
|
}
|
|
if (this.crossAx.crosses !== CROSSES_MAX) {
|
|
this.crossAx.setCrosses(CROSSES_MAX);
|
|
bChanged = true;
|
|
}
|
|
} else {
|
|
if (crossesRule === c_oAscCrossesRule.minValue) {
|
|
if (this.crossAx.crossesAt !== null) {
|
|
this.crossAx.setCrossesAt(null);
|
|
bChanged = true;
|
|
}
|
|
if (this.crossAx.crosses !== CROSSES_MIN) {
|
|
this.crossAx.setCrosses(CROSSES_MIN);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (isRealNumber(labelsPosition) && isRealObject(this.crossAx) && this.crossAx.setCrossBetween) {
|
|
var new_lbl_position = labelsPosition === c_oAscLabelsPosition.byDivisions ? CROSS_BETWEEN_MID_CAT : CROSS_BETWEEN_BETWEEN;
|
|
if (this.crossAx.crossBetween !== new_lbl_position) {
|
|
this.crossAx.setCrossBetween(new_lbl_position);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
if (bChanged) {
|
|
if (this.bDelete === true) {
|
|
this.setDelete(false);
|
|
}
|
|
}
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_CatAx;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
setAuto: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetAuto,
|
|
oldPr: this.auto,
|
|
newPr: pr
|
|
});
|
|
this.auto = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setAxId: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetAxId,
|
|
oldPr: this.axId,
|
|
newPr: pr
|
|
});
|
|
this.axId = pr;
|
|
},
|
|
setAxPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetAxPos,
|
|
oldPr: this.axPos,
|
|
newPr: pr
|
|
});
|
|
this.axPos = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrossAx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetCrossAx,
|
|
oldPr: this.crossAx,
|
|
newPr: pr
|
|
});
|
|
this.crossAx = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrosses: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetCrosses,
|
|
oldPr: this.crosses,
|
|
newPr: pr
|
|
});
|
|
this.crosses = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrossesAt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetCrossesAt,
|
|
oldPr: this.crossesAt,
|
|
newPr: pr
|
|
});
|
|
this.crossesAt = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setDelete: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetDelete,
|
|
oldPr: this.bDelete,
|
|
newPr: pr
|
|
});
|
|
this.bDelete = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setExtLst: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetExtLst,
|
|
oldPr: this.extLst,
|
|
newPr: pr
|
|
});
|
|
this.extLst = pr;
|
|
},
|
|
setLblAlgn: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetLblAlgn,
|
|
oldPr: this.lblAlgn,
|
|
newPr: pr
|
|
});
|
|
this.lblAlgn = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setLblOffset: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetLblOffset,
|
|
oldPr: this.lblOffset,
|
|
newPr: pr
|
|
});
|
|
this.lblOffset = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMajorGridlines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetMajorGridlines,
|
|
oldPr: this.majorGridlines,
|
|
newPr: pr
|
|
});
|
|
this.majorGridlines = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
},
|
|
setMajorTickMark: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetMajorTickMark,
|
|
oldPr: this.majorTickMark,
|
|
newPr: pr
|
|
});
|
|
this.majorTickMark = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMinorGridlines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetMinorGridlines,
|
|
oldPr: this.minorGridlines,
|
|
newPr: pr
|
|
});
|
|
this.minorGridlines = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
},
|
|
setMinorTickMark: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetMinorTickMark,
|
|
oldPr: this.minorTickMark,
|
|
newPr: pr
|
|
});
|
|
this.minorTickMark = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setNoMultiLvlLbl: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetNoMultiLvlLbl,
|
|
oldPr: this.noMultiLvlLbl,
|
|
newPr: pr
|
|
});
|
|
this.noMultiLvlLbl = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setNumFmt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetNumFmt,
|
|
oldPr: this.numFmt,
|
|
newPr: pr
|
|
});
|
|
this.numFmt = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setScaling: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetScaling,
|
|
oldPr: this.scaling,
|
|
newPr: pr
|
|
});
|
|
this.scaling = pr;
|
|
if (this.scaling) {
|
|
this.scaling.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTickLblPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetTickLblPos,
|
|
oldPr: this.tickLblPos,
|
|
newPr: pr
|
|
});
|
|
this.tickLblPos = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTickLblSkip: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetTickLblSkip,
|
|
oldPr: this.tickLblSkip,
|
|
newPr: pr
|
|
});
|
|
this.tickLblSkip = pr;
|
|
},
|
|
setTickMarkSkip: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetTickMarkSkip,
|
|
oldPr: this.tickMarkSkip,
|
|
newPr: pr
|
|
});
|
|
this.tickMarkSkip = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTitle: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetTitle,
|
|
oldPr: this.title,
|
|
newPr: pr
|
|
});
|
|
this.title = pr;
|
|
if (pr) {
|
|
pr.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
getParentObjects: function () {
|
|
return this.parent && this.parent.getParentObjects();
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CatAxSetTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
if (this.txPr) {
|
|
this.txPr.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CatAxSetAuto:
|
|
this.auto = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetAxId:
|
|
this.axId = data.oldPr;
|
|
break;
|
|
case historyitem_CatAxSetAxPos:
|
|
this.axPos = data.oldPr;
|
|
break;
|
|
case historyitem_CatAxSetCrossAx:
|
|
this.crossAx = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetCrosses:
|
|
this.crosses = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetCrossesAt:
|
|
this.crossesAt = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetDelete:
|
|
this.bDelete = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetExtLst:
|
|
this.extLst = data.oldPr;
|
|
break;
|
|
case historyitem_CatAxSetLblAlgn:
|
|
this.lblAlgn = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetLblOffset:
|
|
this.lblOffset = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMajorGridlines:
|
|
this.majorGridlines = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMajorTickMark:
|
|
this.majorTickMark = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMinorGridlines:
|
|
this.minorGridlines = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMinorTickMark:
|
|
this.minorTickMark = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetNoMultiLvlLbl:
|
|
this.noMultiLvlLbl = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetNumFmt:
|
|
this.numFmt = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetScaling:
|
|
this.scaling = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetSpPr:
|
|
this.spPr = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTickLblPos:
|
|
this.tickLblPos = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTickLblSkip:
|
|
this.tickLblSkip = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTickMarkSkip:
|
|
this.tickMarkSkip = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTitle:
|
|
this.title = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTxPr:
|
|
this.txPr = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CatAxSetAuto:
|
|
this.auto = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetAxId:
|
|
this.axId = data.newPr;
|
|
break;
|
|
case historyitem_CatAxSetAxPos:
|
|
this.axPos = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetCrossAx:
|
|
this.crossAx = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetCrosses:
|
|
this.crosses = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetCrossesAt:
|
|
this.crossesAt = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetDelete:
|
|
this.bDelete = data.newPr;
|
|
break;
|
|
case historyitem_CatAxSetExtLst:
|
|
this.extLst = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetLblAlgn:
|
|
this.lblAlgn = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetLblOffset:
|
|
this.lblOffset = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMajorGridlines:
|
|
this.majorGridlines = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMajorTickMark:
|
|
this.majorTickMark = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMinorGridlines:
|
|
this.minorGridlines = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMinorTickMark:
|
|
this.minorTickMark = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetNoMultiLvlLbl:
|
|
this.noMultiLvlLbl = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetNumFmt:
|
|
this.numFmt = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetScaling:
|
|
this.scaling = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetSpPr:
|
|
this.spPr = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTickLblPos:
|
|
this.tickLblPos = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTickLblSkip:
|
|
this.tickLblSkip = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTickMarkSkip:
|
|
this.tickMarkSkip = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTitle:
|
|
this.title = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTxPr:
|
|
this.txPr = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetAuto:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetAxId:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetAxPos:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetCrossAx:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetCrosses:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetCrossesAt:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetDelete:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetLblAlgn:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetLblOffset:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetMajorGridlines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetMajorTickMark:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetMinorGridlines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetMinorTickMark:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetNoMultiLvlLbl:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetNumFmt:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetScaling:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetSpPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetTickLblPos:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetTickLblSkip:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetTickMarkSkip:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetTitle:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CatAxSetTxPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CatAxSetAuto:
|
|
this.auto = readBool(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetAxId:
|
|
this.axId = readLong(r);
|
|
break;
|
|
case historyitem_CatAxSetAxPos:
|
|
this.axPos = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetCrossAx:
|
|
this.crossAx = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetCrosses:
|
|
this.crosses = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetCrossesAt:
|
|
this.crossesAt = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetDelete:
|
|
this.bDelete = readBool(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetLblAlgn:
|
|
this.lblAlgn = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetLblOffset:
|
|
this.lblOffset = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMajorGridlines:
|
|
this.majorGridlines = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMajorTickMark:
|
|
this.majorTickMark = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMinorGridlines:
|
|
this.minorGridlines = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetMinorTickMark:
|
|
this.minorTickMark = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetNoMultiLvlLbl:
|
|
this.noMultiLvlLbl = readBool(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetNumFmt:
|
|
this.numFmt = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetScaling:
|
|
this.scaling = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetSpPr:
|
|
this.spPr = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTickLblPos:
|
|
this.tickLblPos = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTickLblSkip:
|
|
this.tickLblSkip = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTickMarkSkip:
|
|
this.tickMarkSkip = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTitle:
|
|
this.title = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_CatAxSetTxPr:
|
|
this.txPr = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CDateAx() {
|
|
this.auto = null;
|
|
this.axId = null;
|
|
this.axPos = null;
|
|
this.baseTimeUnit = null;
|
|
this.crossAx = null;
|
|
this.crosses = null;
|
|
this.crossesAt = null;
|
|
this.bDelete = null;
|
|
this.extLst = null;
|
|
this.lblOffset = null;
|
|
this.majorGridlines = null;
|
|
this.majorTickMark = null;
|
|
this.majorTimeUnit = null;
|
|
this.majorUnit = null;
|
|
this.minorGridlines = null;
|
|
this.minorTickMark = null;
|
|
this.minorTimeUnit = null;
|
|
this.minorUnit = null;
|
|
this.numFmt = null;
|
|
this.scaling = null;
|
|
this.spPr = null;
|
|
this.tickLblPos = null;
|
|
this.title = null;
|
|
this.txPr = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CDateAx.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_DateAx;
|
|
},
|
|
Refresh_RecalcData2: function (pageIndex, object) {
|
|
this.parent && this.parent.parent && this.parent.parent.Refresh_RecalcData2(pageIndex, object);
|
|
},
|
|
getDrawingDocument: function () {
|
|
return this.parent && this.parent.parent && this.parent.parent.getDrawingDocument && this.parent.parent.getDrawingDocument();
|
|
},
|
|
Refresh_RecalcData: function (pageIndex, object) {
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
this.parent.parent.parent.addToRecalculate();
|
|
}
|
|
},
|
|
getMenuProps: CCatAx.prototype.getMenuProps,
|
|
setMenuProps: CCatAx.prototype.setMenuProps,
|
|
createDuplicate: function () {
|
|
var c = new CDateAx();
|
|
c.setAuto(this.auto);
|
|
c.setAxPos(this.axPos);
|
|
c.setBaseTimeUnit(this.baseTimeUnit);
|
|
c.setCrosses(this.crosses);
|
|
c.setCrossesAt(this.crossesAt);
|
|
c.setDelete(this.bDelete);
|
|
c.setLblOffset(this.lblOffset);
|
|
if (this.majorGridlines) {
|
|
c.setMajorGridlines(this.majorGridlines.createDuplicate());
|
|
}
|
|
c.setMajorTickMark(this.majorTickMark);
|
|
c.setMajorTimeUnit(this.majorTimeUnit);
|
|
if (this.minorGridlines) {
|
|
c.setMinorGridlines(this.minorGridlines.createDuplicate());
|
|
}
|
|
c.setMinorTickMark(this.minorTickMark);
|
|
c.setMinorTimeUnit(this.minorTimeUnit);
|
|
if (this.numFmt) {
|
|
c.setNumFmt(this.numFmt.createDuplicate());
|
|
}
|
|
if (this.scaling) {
|
|
c.setScaling(this.scaling.createDuplicate());
|
|
}
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
c.setTickLblPos(this.tickLblPos);
|
|
if (this.title) {
|
|
c.setTitle(this.title.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
setAuto: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxAuto,
|
|
oldPr: this.auto,
|
|
newPr: pr
|
|
});
|
|
this.auto = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setAxId: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxAxId,
|
|
oldPr: this.axId,
|
|
newPr: pr
|
|
});
|
|
this.axId = pr;
|
|
},
|
|
setAxPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxAxPos,
|
|
oldPr: this.axPos,
|
|
newPr: pr
|
|
});
|
|
this.axPos = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setBaseTimeUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxBaseTimeUnit,
|
|
oldPr: this.baseTimeUnit,
|
|
newPr: pr
|
|
});
|
|
this.baseTimeUnit = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrossAx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxCrossAx,
|
|
oldPr: this.crossAx,
|
|
newPr: pr
|
|
});
|
|
this.crossAx = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrosses: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxCrosses,
|
|
oldPr: this.crosses,
|
|
newPr: pr
|
|
});
|
|
this.crosses = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrossesAt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxCrossesAt,
|
|
oldPr: this.crossesAt,
|
|
newPr: pr
|
|
});
|
|
this.crossesAt = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setDelete: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxDelete,
|
|
oldPr: this.bDelete,
|
|
newPr: pr
|
|
});
|
|
this.bDelete = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setLblOffset: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxLblOffset,
|
|
oldPr: this.lblOffset,
|
|
newPr: pr
|
|
});
|
|
this.lblOffset = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMajorGridlines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxMajorGridlines,
|
|
oldPr: this.majorGridlines,
|
|
newPr: pr
|
|
});
|
|
this.majorGridlines = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
},
|
|
setMajorTickMark: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxMajorTickMark,
|
|
oldPr: this.majorTickMark,
|
|
newPr: pr
|
|
});
|
|
this.majorTickMark = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMajorTimeUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxMajorTimeUnit,
|
|
oldPr: this.majorTimeUnit,
|
|
newPr: pr
|
|
});
|
|
this.majorTimeUnit = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMajorUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxMajorUnit,
|
|
oldPr: this.majorUnit,
|
|
newPr: pr
|
|
});
|
|
this.majorUnit = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMinorGridlines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxMajorGridlines,
|
|
oldPr: this.majorGridlines,
|
|
newPr: pr
|
|
});
|
|
this.majorGridlines = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
},
|
|
setMinorTickMark: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxMinorTickMark,
|
|
oldPr: this.minorTickMark,
|
|
newPr: pr
|
|
});
|
|
this.minorTickMark = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMinorTimeUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxMinorTimeUnit,
|
|
oldPr: this.minorTimeUnit,
|
|
newPr: pr
|
|
});
|
|
this.minorTimeUnit = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMinorUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxMinorUnit,
|
|
oldPr: this.minorUnit,
|
|
newPr: pr
|
|
});
|
|
this.minorUnit = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setNumFmt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxNumFmt,
|
|
oldPr: this.numFmt,
|
|
newPr: pr
|
|
});
|
|
this.numFmt = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setScaling: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxScaling,
|
|
oldPr: this.scaling,
|
|
newPr: pr
|
|
});
|
|
this.scaling = pr;
|
|
if (this.scaling) {
|
|
this.scaling.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTickLblPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxTickLblPos,
|
|
oldPr: this.tickLblPos,
|
|
newPr: pr
|
|
});
|
|
this.tickLblPos = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTitle: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxTitle,
|
|
oldPr: this.title,
|
|
newPr: pr
|
|
});
|
|
this.title = pr;
|
|
if (pr) {
|
|
pr.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
getParentObjects: function () {
|
|
return this.parent && this.parent.getParentObjects();
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DateAxTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
if (this.txPr) {
|
|
this.txPr.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinar2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_DateAxAuto:
|
|
this.auto = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxAxId:
|
|
this.axId = data.oldPr;
|
|
break;
|
|
case historyitem_DateAxAxPos:
|
|
this.axPos = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxBaseTimeUnit:
|
|
this.baseTimeUnit = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxCrossAx:
|
|
this.crossAx = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxCrosses:
|
|
this.crosses = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxCrossesAt:
|
|
this.crossesAt = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxDelete:
|
|
this.bDelete = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxLblOffset:
|
|
this.lblOffset = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorGridlines:
|
|
this.majorGridlines = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorTickMark:
|
|
this.majorTickMark = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorTimeUnit:
|
|
this.majorTimeUnit = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorUnit:
|
|
this.majorUnit = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorGridlines:
|
|
this.minorGridlines = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorTickMark:
|
|
this.minorTickMark = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorTimeUnit:
|
|
this.minorTimeUnit = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorUnit:
|
|
this.minorUnit = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxNumFmt:
|
|
this.numFmt = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxScaling:
|
|
this.scaling = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxSpPr:
|
|
this.spPr = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxTickLblPos:
|
|
this.tickLblPos = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxTitle:
|
|
this.title = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxTxPr:
|
|
this.txPr = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_DateAxAuto:
|
|
this.auto = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxAxId:
|
|
this.axId = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxAxPos:
|
|
this.axPos = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxBaseTimeUnit:
|
|
this.baseTimeUnit = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxCrossAx:
|
|
this.crossAx = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxCrosses:
|
|
this.crosses = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxCrossesAt:
|
|
this.crossesAt = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxDelete:
|
|
this.bDelete = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxLblOffset:
|
|
this.lblOffset = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorGridlines:
|
|
this.majorGridlines = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorTickMark:
|
|
this.majorTickMark = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorTimeUnit:
|
|
this.majorTimeUnit = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorUnit:
|
|
this.majorUnit = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorGridlines:
|
|
this.minorGridlines = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorTickMark:
|
|
this.minorTickMark = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorTimeUnit:
|
|
this.minorTimeUnit = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorUnit:
|
|
this.minorUnit = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxNumFmt:
|
|
this.numFmt = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxScaling:
|
|
this.scaling = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxSpPr:
|
|
this.spPr = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxTickLblPos:
|
|
this.tickLblPos = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxTitle:
|
|
this.title = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxTxPr:
|
|
this.txPr = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxAuto:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxAxId:
|
|
writeString(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxAxPos:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxBaseTimeUnit:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxCrossAx:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxCrosses:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxCrossesAt:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxDelete:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxLblOffset:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxMajorGridlines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxMajorTickMark:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxMajorTimeUnit:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxMajorUnit:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxMinorGridlines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxMinorTickMark:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxMinorTimeUnit:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxMinorUnit:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxNumFmt:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxScaling:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxSpPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxTickLblPos:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxTitle:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DateAxTxPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_DateAxAuto:
|
|
this.auto = readBool(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxAxId:
|
|
this.axId = readString(r);
|
|
break;
|
|
case historyitem_DateAxAxPos:
|
|
this.axPos = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxBaseTimeUnit:
|
|
this.baseTimeUnit = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxCrossAx:
|
|
this.crossAx = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxCrosses:
|
|
this.crosses = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxCrossesAt:
|
|
this.crossesAt = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxDelete:
|
|
this.bDelete = readBool(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxLblOffset:
|
|
this.lblOffset = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorGridlines:
|
|
this.majorGridlines = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorTickMark:
|
|
this.majorTickMark = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorTimeUnit:
|
|
this.majorTimeUnit = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMajorUnit:
|
|
this.majorUnit = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorGridlines:
|
|
this.minorGridlines = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorTickMark:
|
|
this.minorTickMark = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorTimeUnit:
|
|
this.minorTimeUnit = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxMinorUnit:
|
|
this.minorUnit = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxNumFmt:
|
|
this.numFmt = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxScaling:
|
|
this.scaling = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxSpPr:
|
|
this.spPr = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxTickLblPos:
|
|
this.tickLblPos = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxTitle:
|
|
this.title = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DateAxTxPr:
|
|
this.txPr = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CSerAx() {
|
|
this.axId = null;
|
|
this.axPos = null;
|
|
this.crossAx = null;
|
|
this.crosses = null;
|
|
this.crossesAt = null;
|
|
this.bDelete = null;
|
|
this.extLst = null;
|
|
this.majorGridlines = null;
|
|
this.majorTickMark = null;
|
|
this.minorGridlines = null;
|
|
this.minorTickMark = null;
|
|
this.numFmt = null;
|
|
this.scaling = null;
|
|
this.spPr = null;
|
|
this.tickLblPos = null;
|
|
this.tickLblSkip = null;
|
|
this.tickMarkSkip = null;
|
|
this.title = null;
|
|
this.txPr = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CSerAx.prototype = {
|
|
getObjectType: function () {
|
|
return historyitem_type_SerAx;
|
|
},
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData2: function (pageIndex, object) {
|
|
this.parent && this.parent.parent && this.parent.parent.Refresh_RecalcData2(pageIndex, object);
|
|
},
|
|
getDrawingDocument: function () {
|
|
return this.parent && this.parent.parent && this.parent.parent.getDrawingDocument && this.parent.parent.getDrawingDocument();
|
|
},
|
|
Refresh_RecalcData: function (pageIndex, object) {
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
this.parent.parent.parent.addToRecalculate();
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CSerAx();
|
|
c.setAxPos(this.axPos);
|
|
c.setCrosses(this.crosses);
|
|
c.setCrossesAt(this.crossesAt);
|
|
c.setDelete(this.bDelete);
|
|
if (this.majorGridlines) {
|
|
c.setMajorGridlines(this.majorGridlines.createDuplicate());
|
|
}
|
|
c.setMajorTickMark(this.majorTickMark);
|
|
if (this.minorGridlines) {
|
|
c.setMajorGridlines(this.minorGridlines.createDuplicate());
|
|
}
|
|
c.setMajorTickMark(this.minorTickMark);
|
|
if (this.numFmt) {
|
|
c.setNumFmt(this.numFmt.createDuplicate());
|
|
}
|
|
if (this.scaling) {
|
|
c.setScaling(this.scaling.createDuplicate());
|
|
}
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
c.setTickLblPos(this.tickLblPos);
|
|
c.setTickLblSkip(this.tickLblSkip);
|
|
c.setTickMarkSkip(this.tickMarkSkip);
|
|
if (this.title) {
|
|
c.setTitle(this.title.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
setAxId: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetAxId,
|
|
oldPr: this.axId,
|
|
newPr: pr
|
|
});
|
|
this.axId = pr;
|
|
},
|
|
setAxPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetAxPos,
|
|
oldPr: this.axPos,
|
|
newPr: pr
|
|
});
|
|
this.axPos = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrossAx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetCrossAx,
|
|
oldPr: this.crossAx,
|
|
newPr: pr
|
|
});
|
|
this.crossAx = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrosses: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetCrosses,
|
|
oldPr: this.crosses,
|
|
newPr: pr
|
|
});
|
|
this.crosses = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrossesAt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetCrossesAt,
|
|
oldPr: this.crossesAt,
|
|
newPr: pr
|
|
});
|
|
this.crossesAt = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setDelete: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetDelete,
|
|
oldPr: this.bDelete,
|
|
newPr: pr
|
|
});
|
|
this.bDelete = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMajorGridlines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetMajorGridlines,
|
|
oldPr: this.majorGridlines,
|
|
newPr: pr
|
|
});
|
|
this.majorGridlines = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
},
|
|
setMajorTickMark: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetMajorTickMark,
|
|
oldPr: this.majorTickMark,
|
|
newPr: pr
|
|
});
|
|
this.majorTickMark = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
},
|
|
setMinorGridlines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetMinorGridlines,
|
|
oldPr: this.majorGridlines,
|
|
newPr: pr
|
|
});
|
|
this.majorGridlines = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
},
|
|
setMinorTickMark: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetMinorTickMark,
|
|
oldPr: this.minorTickMark,
|
|
newPr: pr
|
|
});
|
|
this.minorTickMark = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setNumFmt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetNumFmt,
|
|
oldPr: this.numFmt,
|
|
newPr: pr
|
|
});
|
|
this.numFmt = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setScaling: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetScaling,
|
|
oldPr: this.scaling,
|
|
newPr: pr
|
|
});
|
|
this.scaling = pr;
|
|
if (this.scaling) {
|
|
this.scaling.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTickLblPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetTickLblPos,
|
|
oldPr: this.tickLblPos,
|
|
newPr: pr
|
|
});
|
|
this.tickLblPos = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTickLblSkip: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetTickLblSkip,
|
|
oldPr: this.tickLblSkip,
|
|
newPr: pr
|
|
});
|
|
this.tickLblSkip = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTickMarkSkip: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetTickMarkSkip,
|
|
oldPr: this.tickMarkSkip,
|
|
newPr: pr
|
|
});
|
|
this.tickMarkSkip = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTitle: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetTitle,
|
|
oldPr: this.title,
|
|
newPr: pr
|
|
});
|
|
this.title = pr;
|
|
if (pr) {
|
|
pr.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
getParentObjects: function () {
|
|
return this.parent && this.parent.getParentObjects();
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SerAxSetTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
if (this.txPr) {
|
|
this.txPr.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetAxId:
|
|
this.axId = data.oldPr;
|
|
break;
|
|
case historyitem_SerAxSetAxPos:
|
|
this.axPos = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetCrossAx:
|
|
this.crossAx = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetCrosses:
|
|
this.crosses = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetCrossesAt:
|
|
this.crossesAt = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetDelete:
|
|
this.bDelete = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMajorGridlines:
|
|
this.majorGridlines = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMajorTickMark:
|
|
this.majorTickMark = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMinorGridlines:
|
|
this.minorGridlines = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMinorTickMark:
|
|
this.minorTickMark = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetNumFmt:
|
|
this.numFmt = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetScaling:
|
|
this.scaling = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetSpPr:
|
|
this.spPr = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTickLblPos:
|
|
this.tickLblPos = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTickLblSkip:
|
|
this.tickLblSkip = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTickMarkSkip:
|
|
this.tickMarkSkip = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTitle:
|
|
this.title = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTxPr:
|
|
this.txPr = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_SerAxSetAxId:
|
|
this.axId = data.newPr;
|
|
break;
|
|
case historyitem_SerAxSetAxPos:
|
|
this.axPos = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetCrossAx:
|
|
this.crossAx = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetCrosses:
|
|
this.crosses = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetCrossesAt:
|
|
this.crossesAt = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetDelete:
|
|
this.bDelete = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMajorGridlines:
|
|
this.majorGridlines = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMajorTickMark:
|
|
this.majorTickMark = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMinorGridlines:
|
|
this.minorGridlines = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMinorTickMark:
|
|
this.minorTickMark = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetNumFmt:
|
|
this.numFmt = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetScaling:
|
|
this.scaling = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetSpPr:
|
|
this.spPr = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTickLblPos:
|
|
this.tickLblPos = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTickLblSkip:
|
|
this.tickLblSkip = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTickMarkSkip:
|
|
this.tickMarkSkip = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTitle:
|
|
this.title = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTxPr:
|
|
this.txPr = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FrommBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetAxId:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetAxPos:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetCrossAx:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetCrosses:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetCrossesAt:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetDelete:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetMajorGridlines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetMajorTickMark:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetMinorGridlines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetMinorTickMark:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetNumFmt:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetScaling:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetSpPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetTickLblPos:
|
|
writeLong(w, daya.newPr);
|
|
break;
|
|
case historyitem_SerAxSetTickLblSkip:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetTickMarkSkip:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetTitle:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SerAxSetTxPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetAxId:
|
|
this.axId = readLong(r);
|
|
break;
|
|
case historyitem_SerAxSetAxPos:
|
|
this.axPos = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetCrossAx:
|
|
this.crossAx = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetCrosses:
|
|
this.crosses = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetCrossesAt:
|
|
this.crossesAt = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetDelete:
|
|
this.bDelete = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMajorGridlines:
|
|
this.majorGridlines = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMajorTickMark:
|
|
this.majorTickMark = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMinorGridlines:
|
|
this.minorGridlines = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetMinorTickMark:
|
|
this.minorTickMark = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetNumFmt:
|
|
this.numFmt = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetScaling:
|
|
this.scaling = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetSpPr:
|
|
this.spPr = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTickLblPos:
|
|
this.tickLblPos = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTickLblSkip:
|
|
this.tickLblSkip = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTickMarkSkip:
|
|
this.tickMarkSkip = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTitle:
|
|
this.title = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_SerAxSetTxPr:
|
|
this.txPr = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CValAx() {
|
|
this.axId = null;
|
|
this.axPos = null;
|
|
this.crossAx = null;
|
|
this.crossBetween = null;
|
|
this.crosses = null;
|
|
this.crossesAt = null;
|
|
this.bDelete = null;
|
|
this.dispUnits = null;
|
|
this.extLst = null;
|
|
this.majorGridlines = null;
|
|
this.majorTickMark = null;
|
|
this.majorUnit = null;
|
|
this.minorGridlines = null;
|
|
this.minorTickMark = null;
|
|
this.minorUnit = null;
|
|
this.numFmt = null;
|
|
this.scaling = null;
|
|
this.spPr = null;
|
|
this.tickLblPos = null;
|
|
this.title = null;
|
|
this.txPr = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CValAx.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
this.parent.parent.parent.addToRecalculate();
|
|
}
|
|
},
|
|
Refresh_RecalcData2: function (pageIndex, object) {
|
|
this.parent && this.parent.parent && this.parent.parent.Refresh_RecalcData2(pageIndex, object);
|
|
},
|
|
getDrawingDocument: function () {
|
|
return this.parent && this.parent.parent && this.parent.parent.getDrawingDocument && this.parent.parent.getDrawingDocument();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CValAx();
|
|
c.setAxPos(this.axPos);
|
|
c.setCrossBetween(this.crossBetween);
|
|
c.setCrossesAt(this.crossesAt);
|
|
c.setDelete(this.bDelete);
|
|
if (this.dispUnits) {
|
|
c.setDispUnits(this.dispUnits.createDuplicate());
|
|
}
|
|
if (this.majorGridlines) {
|
|
c.setMajorGridlines(this.majorGridlines.createDuplicate());
|
|
}
|
|
c.setMajorTickMark(this.majorTickMark);
|
|
c.setMajorUnit(this.majorUnit);
|
|
if (this.minorGridlines) {
|
|
c.setMinorGridlines(this.minorGridlines.createDuplicate());
|
|
}
|
|
c.setMinorTickMark(this.minorTickMark);
|
|
c.setMinorUnit(this.minorUnit);
|
|
this.numFmt && c.setNumFmt(this.numFmt.createDuplicate());
|
|
this.scaling && c.setScaling(this.scaling.createDuplicate());
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
c.setTickLblPos(this.tickLblPos);
|
|
if (this.title) {
|
|
c.setTitle(this.title.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_ValAx;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setAxId: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetAxId,
|
|
oldPr: this.axId,
|
|
newPr: pr
|
|
});
|
|
this.axId = pr;
|
|
},
|
|
setAxPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetAxPos,
|
|
oldPr: this.axPos,
|
|
newPr: pr
|
|
});
|
|
this.axPos = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrossAx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetCrossAx,
|
|
oldPr: this.crossAx,
|
|
newPr: pr
|
|
});
|
|
this.crossAx = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrossBetween: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetCrossBetween,
|
|
oldPr: this.crossBetween,
|
|
newPr: pr
|
|
});
|
|
this.crossBetween = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrosses: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetCrosses,
|
|
oldPr: this.crosses,
|
|
newPr: pr
|
|
});
|
|
this.crosses = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCrossesAt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetCrossesAt,
|
|
oldPr: this.crossesAt,
|
|
newPr: pr
|
|
});
|
|
this.crossesAt = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setDelete: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetDelete,
|
|
oldPr: this.bDelete,
|
|
newPr: pr
|
|
});
|
|
this.bDelete = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setDispUnits: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetDispUnits,
|
|
oldPr: this.dispUnits,
|
|
newPr: pr
|
|
});
|
|
this.dispUnits = pr;
|
|
if (this.dispUnits) {
|
|
this.dispUnits.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setExtLst: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetExtLst,
|
|
oldPr: this.extLst,
|
|
newPr: pr
|
|
});
|
|
this.extLst = pr;
|
|
},
|
|
setMajorGridlines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetMajorGridlines,
|
|
oldPr: this.majorGridlines,
|
|
newPr: pr
|
|
});
|
|
this.majorGridlines = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
},
|
|
setMajorTickMark: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetMajorTickMark,
|
|
oldPr: this.majorTickMark,
|
|
newPr: pr
|
|
});
|
|
this.majorTickMark = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMajorUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetMajorUnit,
|
|
oldPr: this.majorUnit,
|
|
newPr: pr
|
|
});
|
|
this.majorUnit = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMinorGridlines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetMinorGridlines,
|
|
oldPr: this.minorGridlines,
|
|
newPr: pr
|
|
});
|
|
this.minorGridlines = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
},
|
|
setMinorTickMark: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetMinorTickMark,
|
|
oldPr: this.minorTickMark,
|
|
newPr: pr
|
|
});
|
|
this.minorTickMark = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMinorUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetMinorUnit,
|
|
oldPr: this.minorUnit,
|
|
newPr: pr
|
|
});
|
|
this.minorUnit = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setNumFmt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetNumFmt,
|
|
oldPr: this.numFmt,
|
|
newPr: pr
|
|
});
|
|
this.numFmt = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setScaling: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetScaling,
|
|
oldPr: this.scaling,
|
|
newPr: pr
|
|
});
|
|
this.scaling = pr;
|
|
if (this.scaling) {
|
|
this.scaling.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTickLblPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetTickLblPos,
|
|
oldPr: this.tickLblPos,
|
|
newPr: pr
|
|
});
|
|
this.tickLblPos = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setTitle: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetTitle,
|
|
oldPr: this.title,
|
|
newPr: pr
|
|
});
|
|
this.title = pr;
|
|
if (pr) {
|
|
pr.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
getParentObjects: function () {
|
|
return this.parent && this.parent.getParentObjects();
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ValAxSetTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
if (this.txPr) {
|
|
this.txPr.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetAxId:
|
|
this.axId = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetAxPos:
|
|
this.axPos = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrossAx:
|
|
this.crossAx = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrossBetween:
|
|
this.crossBetween = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrosses:
|
|
this.crosses = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrossesAt:
|
|
this.crossesAt = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetDelete:
|
|
this.bDelete = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetDispUnits:
|
|
this.dispUnits = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMajorGridlines:
|
|
this.majorGridlines = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMajorTickMark:
|
|
this.majorTickMark = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMajorUnit:
|
|
this.majorUnit = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMinorGridlines:
|
|
this.minorGridlines = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMinorTickMark:
|
|
this.minorTickMark = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMinorUnit:
|
|
this.minorUnit = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetNumFmt:
|
|
this.numFmt = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetScaling:
|
|
this.scaling = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetSpPr:
|
|
this.axId = data.oldPr;
|
|
break;
|
|
case historyitem_ValAxSetTickLblPos:
|
|
this.tickLblPos = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetTitle:
|
|
this.title = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetTxPr:
|
|
this.txPr = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_ValAxSetAxId:
|
|
this.axId = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetAxPos:
|
|
this.axPos = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrossAx:
|
|
this.crossAx = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrossBetween:
|
|
this.crossBetween = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrosses:
|
|
this.crosses = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrossesAt:
|
|
this.crossesAt = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetDelete:
|
|
this.bDelete = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetDispUnits:
|
|
this.dispUnits = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMajorGridlines:
|
|
this.majorGridlines = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMajorTickMark:
|
|
this.majorTickMark = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMajorUnit:
|
|
this.majorUnit = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMinorGridlines:
|
|
this.minorGridlines = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMinorTickMark:
|
|
this.minorTickMark = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMinorUnit:
|
|
this.minorUnit = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetNumFmt:
|
|
this.numFmt = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetScaling:
|
|
this.scaling = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetSpPr:
|
|
this.axId = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetTickLblPos:
|
|
this.tickLblPos = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetTitle:
|
|
this.title = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetTxPr:
|
|
this.txPr = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetAxId:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetAxPos:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetCrossAx:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetCrossBetween:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetCrosses:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetCrossesAt:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetDelete:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetDispUnits:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetMajorGridlines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetMajorTickMark:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetMajorUnit:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetMinorGridlines:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetMinorTickMark:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetMinorUnit:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetNumFmt:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetScaling:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetSpPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetTickLblPos:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetTitle:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ValAxSetTxPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_ValAxSetAxId:
|
|
this.axId = readLong(r);
|
|
break;
|
|
case historyitem_ValAxSetAxPos:
|
|
this.axPos = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrossAx:
|
|
this.crossAx = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrossBetween:
|
|
this.crossBetween = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrosses:
|
|
this.crosses = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetCrossesAt:
|
|
this.crossesAt = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetDelete:
|
|
this.bDelete = readBool(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetDispUnits:
|
|
this.dispUnits = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMajorGridlines:
|
|
this.majorGridlines = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMajorTickMark:
|
|
this.majorTickMark = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMajorUnit:
|
|
this.majorUnit = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMinorGridlines:
|
|
this.minorGridlines = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateGridlines();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMinorTickMark:
|
|
this.minorTickMark = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetMinorUnit:
|
|
this.minorUnit = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetNumFmt:
|
|
this.numFmt = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetScaling:
|
|
this.scaling = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetSpPr:
|
|
this.spPr = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetTickLblPos:
|
|
this.tickLblPos = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetTitle:
|
|
this.title = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_ValAxSetTxPr:
|
|
this.txPr = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
getMenuProps: function () {
|
|
var ret = new asc_ValAxisSettings();
|
|
var scaling = this.scaling;
|
|
if (scaling && isRealNumber(scaling.logBase)) {
|
|
ret.putLogScale(true);
|
|
ret.putLogBase(scaling.logBase);
|
|
} else {
|
|
ret.putLogScale(false);
|
|
}
|
|
if (scaling && isRealNumber(scaling.max)) {
|
|
ret.putMaxValRule(c_oAscValAxisRule.fixed);
|
|
ret.putMaxVal(scaling.max);
|
|
} else {
|
|
ret.putMaxValRule(c_oAscValAxisRule.auto);
|
|
}
|
|
if (scaling && isRealNumber(scaling.min)) {
|
|
ret.putMinValRule(c_oAscValAxisRule.fixed);
|
|
ret.putMinVal(scaling.min);
|
|
} else {
|
|
ret.putMinValRule(c_oAscValAxisRule.auto);
|
|
}
|
|
ret.putInvertValOrder(scaling && scaling.orientation === ORIENTATION_MAX_MIN);
|
|
if (isRealObject(this.dispUnits)) {
|
|
var disp_units = this.dispUnits;
|
|
if (isRealNumber(disp_units.builtInUnit) && isRealNumber(REV_MENU_SETTINGS_MAP[disp_units.builtInUnit])) {
|
|
ret.putDispUnitsRule(REV_MENU_SETTINGS_MAP[disp_units.builtInUnit]);
|
|
ret.putShowUnitsOnChart(isRealObject(disp_units.dispUnitsLbl));
|
|
} else {
|
|
if (isRealNumber(disp_units.custUnit)) {
|
|
ret.putDispUnitsRule(c_oAscValAxUnits.CUSTOM);
|
|
ret.putUnits(disp_units.custUnit);
|
|
ret.putShowUnitsOnChart(isRealObject(disp_units.dispUnitsLbl));
|
|
} else {
|
|
ret.putDispUnitsRule(c_oAscValAxUnits.none);
|
|
ret.putShowUnitsOnChart(false);
|
|
}
|
|
}
|
|
} else {
|
|
ret.putDispUnitsRule(c_oAscValAxUnits.none);
|
|
ret.putShowUnitsOnChart(false);
|
|
}
|
|
if (isRealNumber(this.majorTickMark) && isRealNumber(REV_MENU_SETTINGS_TICK_MARK[this.majorTickMark])) {
|
|
ret.putMajorTickMark(REV_MENU_SETTINGS_TICK_MARK[this.majorTickMark]);
|
|
} else {
|
|
ret.putMajorTickMark(c_oAscTickMark.TICK_MARK_NONE);
|
|
}
|
|
if (isRealNumber(this.minorTickMark) && isRealNumber(REV_MENU_SETTINGS_TICK_MARK[this.minorTickMark])) {
|
|
ret.putMinorTickMark(REV_MENU_SETTINGS_TICK_MARK[this.minorTickMark]);
|
|
} else {
|
|
ret.putMinorTickMark(c_oAscTickMark.TICK_MARK_NONE);
|
|
}
|
|
if (isRealNumber(this.tickLblPos) && isRealNumber(REV_MENU_SETTINGS_LABELS_POS[this.tickLblPos])) {
|
|
ret.putTickLabelsPos(REV_MENU_SETTINGS_LABELS_POS[this.tickLblPos]);
|
|
} else {
|
|
ret.putTickLabelsPos(c_oAscTickLabelsPos.TICK_LABEL_POSITION_NEXT_TO);
|
|
}
|
|
var crossAx = this.crossAx;
|
|
if (crossAx) {
|
|
if (isRealNumber(crossAx.crossesAt)) {
|
|
ret.putCrossesRule(c_oAscCrossesRule.value);
|
|
ret.putCrosses(crossAx.crossesAt);
|
|
} else {
|
|
if (crossAx.crosses === CROSSES_MAX) {
|
|
ret.putCrossesRule(c_oAscCrossesRule.maxValue);
|
|
} else {
|
|
if (crossAx.crosses === CROSSES_MIN) {
|
|
ret.putCrossesRule(c_oAscCrossesRule.minValue);
|
|
} else {
|
|
ret.putCrossesRule(c_oAscCrossesRule.auto);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return ret;
|
|
},
|
|
setMenuProps: function (props) {
|
|
var bChanged = false;
|
|
if (! (isRealObject(props) && typeof props.getAxisType === "function" && props.getAxisType() === c_oAscAxisType.val)) {
|
|
return;
|
|
}
|
|
if (!this.scaling) {
|
|
this.setScaling(new CScaling());
|
|
}
|
|
var scaling = this.scaling;
|
|
if (isRealNumber(props.minValRule)) {
|
|
if (props.minValRule === c_oAscValAxisRule.auto) {
|
|
if (isRealNumber(scaling.min)) {
|
|
scaling.setMin(null);
|
|
bChanged = true;
|
|
}
|
|
} else {
|
|
if (isRealNumber(props.minVal)) {
|
|
if (! (props.maxValRule === c_oAscValAxisRule.fixed && props.maxVal < props.minVal) && scaling.min !== props.minVal) {
|
|
scaling.setMin(props.minVal);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (isRealNumber(props.maxValRule)) {
|
|
if (props.maxValRule === c_oAscValAxisRule.auto) {
|
|
if (isRealNumber(scaling.max)) {
|
|
scaling.setMax(null);
|
|
bChanged = true;
|
|
}
|
|
} else {
|
|
if (isRealNumber(props.maxVal)) {
|
|
if (!isRealNumber(scaling.min) || scaling.min < props.maxVal) {
|
|
if (scaling.max !== props.maxVal) {
|
|
scaling.setMax(props.maxVal);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (isRealBool(props.invertValOrder)) {
|
|
var new_or = props.invertValOrder ? ORIENTATION_MAX_MIN : ORIENTATION_MIN_MAX;
|
|
if (scaling.orientation !== new_or) {
|
|
scaling.setOrientation(new_or);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
if (isRealBool(props.logScale)) {
|
|
if (props.logScale && isRealNumber(props.logBase) && props.logBase >= 2 && props.logBase <= 1000) {
|
|
if (scaling.logBase !== props.logBase) {
|
|
scaling.setLogBase(props.logBase);
|
|
bChanged = true;
|
|
}
|
|
} else {
|
|
if (!props.logBase && scaling.logBase !== null) {
|
|
scaling.setLogBase(null);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
if (isRealNumber(props.dispUnitsRule)) {
|
|
if (props.dispUnitsRule === c_oAscValAxUnits.none) {
|
|
if (this.dispUnits) {
|
|
this.setDispUnits(null);
|
|
bChanged = true;
|
|
}
|
|
} else {
|
|
if (isRealNumber(MENU_SETTINGS_MAP[props.dispUnitsRule])) {
|
|
if (!this.dispUnits) {
|
|
this.setDispUnits(new CDispUnits());
|
|
bChanged = true;
|
|
}
|
|
if (this.dispUnits.builtInUnit !== MENU_SETTINGS_MAP[props.dispUnitsRule]) {
|
|
this.dispUnits.setBuiltInUnit(MENU_SETTINGS_MAP[props.dispUnitsRule]);
|
|
bChanged = true;
|
|
}
|
|
if (isRealBool(this.showUnitsOnChart)) {
|
|
this.dispUnits.setDispUnitsLbl(new CDLbl());
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (isRealNumber(props.majorTickMark) && isRealNumber(MENU_SETTINGS_TICK_MARK[props.majorTickMark]) && this.majorTickMark !== MENU_SETTINGS_TICK_MARK[props.majorTickMark]) {
|
|
this.setMajorTickMark(MENU_SETTINGS_TICK_MARK[props.majorTickMark]);
|
|
bChanged = true;
|
|
}
|
|
if (isRealNumber(props.minorTickMark) && isRealNumber(MENU_SETTINGS_TICK_MARK[props.minorTickMark]) && this.minorTickMark !== MENU_SETTINGS_TICK_MARK[props.minorTickMark]) {
|
|
this.setMinorTickMark(MENU_SETTINGS_TICK_MARK[props.minorTickMark]);
|
|
bChanged = true;
|
|
}
|
|
if (isRealNumber(props.tickLabelsPos) && isRealNumber(MENU_SETTINGS_LABELS_POS[props.tickLabelsPos]) && this.tickLblPos !== MENU_SETTINGS_LABELS_POS[props.tickLabelsPos]) {
|
|
this.setTickLblPos(MENU_SETTINGS_LABELS_POS[props.tickLabelsPos]);
|
|
bChanged = true;
|
|
}
|
|
if (isRealNumber(props.crossesRule) && isRealObject(this.crossAx)) {
|
|
if (props.crossesRule === c_oAscCrossesRule.auto) {
|
|
if (this.crossAx.crossesAt !== null) {
|
|
this.crossAx.setCrossesAt(null);
|
|
bChanged = true;
|
|
}
|
|
if (this.crossAx.crosses !== CROSSES_AUTO_ZERO) {
|
|
this.crossAx.setCrosses(CROSSES_AUTO_ZERO);
|
|
bChanged = true;
|
|
}
|
|
} else {
|
|
if (props.crossesRule === c_oAscCrossesRule.value) {
|
|
if (isRealNumber(props.crosses)) {
|
|
if (this.crossAx.crossesAt !== props.crosses) {
|
|
this.crossAx.setCrossesAt(props.crosses);
|
|
bChanged = true;
|
|
}
|
|
if (this.crossAx.crosses !== null) {
|
|
this.crossAx.setCrosses(null);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
} else {
|
|
if (props.crossesRule === c_oAscCrossesRule.maxValue) {
|
|
if (this.crossAx.crossesAt !== null) {
|
|
this.crossAx.setCrossesAt(null);
|
|
bChanged = true;
|
|
}
|
|
if (this.crossAx.crosses !== CROSSES_MAX) {
|
|
this.crossAx.setCrosses(CROSSES_MAX);
|
|
bChanged = true;
|
|
}
|
|
} else {
|
|
if (props.crossesRule === c_oAscCrossesRule.minValue) {
|
|
if (this.crossAx.crossesAt !== null) {
|
|
this.crossAx.setCrossesAt(null);
|
|
bChanged = true;
|
|
}
|
|
if (this.crossAx.crosses !== CROSSES_MIN) {
|
|
this.crossAx.setCrosses(CROSSES_MIN);
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (bChanged) {
|
|
if (this.bDelete === true) {
|
|
this.setDelete(false);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
function CBandFmt() {
|
|
this.idx = null;
|
|
this.spPr = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CBandFmt.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CBandFmt();
|
|
c.setIdx(this.idx);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_BandFmt;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BandFmt_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BandFmt_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_BandFmt_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_BandFmt_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_BandFmt_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_BandFmt_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_BandFmt_SetIdx:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_BandFmt_SetSpPr:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_BandFmt_SetIdx:
|
|
if (r.GetBool()) {
|
|
this.idx = r.GetLong();
|
|
} else {
|
|
this.idx = null;
|
|
}
|
|
break;
|
|
case historyitem_BandFmt_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
if (r.GetBool()) {
|
|
this.spPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.spPr = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var BAR_DIR_BAR = 0;
|
|
var BAR_DIR_COL = 1;
|
|
var BAR_GROUPING_CLUSTERED = 0;
|
|
var BAR_GROUPING_PERCENT_STACKED = 1;
|
|
var BAR_GROUPING_STACKED = 2;
|
|
var BAR_GROUPING_STANDARD = 3;
|
|
var BAR_SHAPE_CONE = 0;
|
|
var BAR_SHAPE_CONETOMAX = 1;
|
|
var BAR_SHAPE_BOX = 2;
|
|
var BAR_SHAPE_CYLINDER = 3;
|
|
var BAR_SHAPE_PYRAMID = 4;
|
|
var BAR_SHAPE_PYRAMIDTOMAX = 5;
|
|
function CBarSeries() {
|
|
this.cat = null;
|
|
this.dLbls = null;
|
|
this.dPt = [];
|
|
this.errBars = null;
|
|
this.idx = null;
|
|
this.invertIfNegative = null;
|
|
this.order = null;
|
|
this.pictureOptions = null;
|
|
this.shape = null;
|
|
this.spPr = null;
|
|
this.trendline = null;
|
|
this.tx = null;
|
|
this.val = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CBarSeries.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeDPt: function (idx) {
|
|
if (this.dPt[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonSeries_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.dPt[idx]
|
|
});
|
|
this.dPt.splice(idx, 1);
|
|
}
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_BarSeries;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CBarSeries();
|
|
if (this.cat) {
|
|
c.setCat(this.cat.createDuplicate());
|
|
}
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
for (var i = 0; i < this.dPt.length; ++i) {
|
|
c.addDPt(this.dPt[i].createDuplicate());
|
|
}
|
|
if (this.errBars) {
|
|
c.setErrBars(this.errBars.createDuplicate());
|
|
}
|
|
c.setIdx(this.idx);
|
|
c.setInvertIfNegative(this.invertIfNegative);
|
|
c.setOrder(this.order);
|
|
if (this.pictureOptions) {
|
|
c.setPictureOptions(this.pictureOptions.createDuplicate());
|
|
}
|
|
c.setShape(this.shape);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.trendline) {
|
|
c.setTrendline(this.trendline.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.val) {
|
|
c.setVal(this.val.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
documentCreateFontMap: CAreaSeries.prototype.documentCreateFontMap,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
getAllRasterImages: CAreaSeries.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CAreaSeries.prototype.checkSpPrRasterImages,
|
|
setFromOtherSeries: function (o) {
|
|
if (o.cat) {
|
|
this.setCat(o.cat);
|
|
}
|
|
if (o.dLbls) {
|
|
this.setDLbls(o.dLbls);
|
|
}
|
|
if (o.dPt) {
|
|
for (var i = 0; i < o.dPt.length; ++i) {
|
|
this.addDPt(o.dPt[i]);
|
|
}
|
|
}
|
|
if (o.errBars) {
|
|
this.setErrBars(o.errBars);
|
|
}
|
|
if (isRealNumber(o.idx)) {
|
|
this.setIdx(o.idx);
|
|
}
|
|
if (isRealBool(o.invertIfNegative)) {
|
|
this.setInvertIfNegative(o.invertIfNegative);
|
|
}
|
|
if (isRealNumber(o.order)) {
|
|
this.setOrder(o.order);
|
|
}
|
|
if (o.pictureOptions) {
|
|
this.setPictureOptions(o.pictureOptions);
|
|
}
|
|
if (o.shape) {
|
|
this.setShape(o.shape);
|
|
}
|
|
if (o.spPr) {
|
|
this.setSpPr(o.spPr);
|
|
}
|
|
if (o.trendline) {
|
|
this.setTrendline(o.trendline);
|
|
}
|
|
if (o.tx) {
|
|
this.setTx(o.tx);
|
|
}
|
|
if (o.val) {
|
|
this.setVal(o.val);
|
|
}
|
|
if (o.xVal) {
|
|
this.setCat(new CCat());
|
|
this.cat.setFromOtherObject(o.xVal);
|
|
}
|
|
if (o.yVal) {
|
|
this.setVal(new CYVal());
|
|
this.val.setFromOtherObject(o.yVal);
|
|
}
|
|
},
|
|
getSeriesName: CAreaSeries.prototype.getSeriesName,
|
|
getCatName: CAreaSeries.prototype.getCatName,
|
|
getValByIndex: CAreaSeries.prototype.getValByIndex,
|
|
getFormatCode: CAreaSeries.prototype.getFormatCode,
|
|
setCat: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetCat,
|
|
oldPr: this.cat,
|
|
newPr: pr
|
|
});
|
|
this.cat = pr;
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
},
|
|
addDPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetDPt,
|
|
newPr: pr
|
|
});
|
|
this.dPt.push(pr);
|
|
},
|
|
setErrBars: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetErrBars,
|
|
oldPr: this.errBars,
|
|
newPr: pr
|
|
});
|
|
this.errBars = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setInvertIfNegative: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetInvertIfNegative,
|
|
oldPr: this.invertIfNegative,
|
|
newPr: pr
|
|
});
|
|
this.invertIfNegative = pr;
|
|
},
|
|
setOrder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetOrder,
|
|
oldPr: this.order,
|
|
newPr: pr
|
|
});
|
|
this.order = pr;
|
|
},
|
|
setPictureOptions: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetPictureOptions,
|
|
oldPr: this.pictureOptions,
|
|
newPr: pr
|
|
});
|
|
this.pictureOptions = pr;
|
|
},
|
|
setShape: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetShape,
|
|
oldPr: this.shape,
|
|
newPr: pr
|
|
});
|
|
this.shape = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTrendline: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetTrendline,
|
|
oldPr: this.trendline,
|
|
newPr: pr
|
|
});
|
|
this.trendline = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetTx,
|
|
oldPr: this.tx,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BarSeries_SetVal,
|
|
oldPr: this.val,
|
|
newPr: pr
|
|
});
|
|
this.val = pr;
|
|
if (this.val && this.val.setParent) {
|
|
this.val.setParent(this);
|
|
}
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 0, data.pt);
|
|
break;
|
|
case historyitem_BarSeries_SetCat:
|
|
this.cat = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetDPt:
|
|
findPrAndRemove(this.dPt, data.newPr);
|
|
break;
|
|
case historyitem_BarSeries_SetErrBars:
|
|
this.errBars = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetInvertIfNegative:
|
|
this.invertIfNegative = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetOrder:
|
|
this.order = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetPictureOptions:
|
|
this.pictureOptions = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetShape:
|
|
this.shape = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetTrendline:
|
|
this.trendline = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetTx:
|
|
this.tx = data.oldPr;
|
|
break;
|
|
case historyitem_BarSeries_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 1);
|
|
break;
|
|
case historyitem_BarSeries_SetCat:
|
|
this.cat = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetDPt:
|
|
this.dPt.push(data.newPr);
|
|
break;
|
|
case historyitem_BarSeries_SetErrBars:
|
|
this.errBars = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetInvertIfNegative:
|
|
this.invertIfNegative = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetOrder:
|
|
this.order = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetPictureOptions:
|
|
this.pictureOptions = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetShape:
|
|
this.shape = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetTrendline:
|
|
this.trendline = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetTx:
|
|
this.tx = data.newPr;
|
|
break;
|
|
case historyitem_BarSeries_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_BarSeries_SetCat:
|
|
case historyitem_BarSeries_SetDLbls:
|
|
case historyitem_BarSeries_SetDPt:
|
|
case historyitem_BarSeries_SetErrBars:
|
|
case historyitem_BarSeries_SetPictureOptions:
|
|
case historyitem_BarSeries_SetShape:
|
|
case historyitem_BarSeries_SetSpPr:
|
|
case historyitem_BarSeries_SetTrendline:
|
|
case historyitem_BarSeries_SetTx:
|
|
case historyitem_BarSeries_SetVal:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_BarSeries_SetIdx:
|
|
case historyitem_BarSeries_SetOrder:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_BarSeries_SetInvertIfNegative:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
writeLong(w, data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_BarSeries_SetCat:
|
|
this.cat = readObject(r);
|
|
break;
|
|
case historyitem_BarSeries_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
break;
|
|
case historyitem_BarSeries_SetDPt:
|
|
this.dPt.push(readObject(r));
|
|
break;
|
|
case historyitem_BarSeries_SetErrBars:
|
|
this.errBars = readObject(r);
|
|
break;
|
|
case historyitem_BarSeries_SetIdx:
|
|
this.idx = readLong(r);
|
|
break;
|
|
case historyitem_BarSeries_SetInvertIfNegative:
|
|
this.invertIfNegative = readBool(r);
|
|
break;
|
|
case historyitem_BarSeries_SetOrder:
|
|
this.order = readLong(r);
|
|
break;
|
|
case historyitem_BarSeries_SetPictureOptions:
|
|
this.pictureOptions = readObject(r);
|
|
break;
|
|
case historyitem_BarSeries_SetShape:
|
|
this.shape = readObject(r);
|
|
break;
|
|
case historyitem_BarSeries_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_BarSeries_SetTrendline:
|
|
this.trendline = readObject(r);
|
|
break;
|
|
case historyitem_BarSeries_SetTx:
|
|
this.tx = readObject(r);
|
|
break;
|
|
case historyitem_BarSeries_SetVal:
|
|
this.val = readObject(r);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
var pos = readLong(r);
|
|
if (isRealNumber(pos)) {
|
|
this.dPt.splice(pos, 1);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var SIZE_REPRESENTS_AREA = 0;
|
|
var SIZE_REPRESENTS_W = 1;
|
|
function CBubbleChart() {
|
|
this.axId = [];
|
|
this.bubble3D = null;
|
|
this.bubbleScale = null;
|
|
this.dLbls = null;
|
|
this.series = [];
|
|
this.showNegBubbles = null;
|
|
this.sizeRepresents = null;
|
|
this.varyColors = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CBubbleChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
getSeriesConstructor: function () {
|
|
return new CBubbleSeries();
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_BubbleChart;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CBubbleChart();
|
|
c.setBubble3D(this.bubble3D);
|
|
c.setBubbleScale(this.bubbleScale);
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
c.setShowNegBubbles(this.showNegBubbles);
|
|
c.setSizeRepresents(this.sizeRepresents);
|
|
c.setVaryColors(this.varyColors);
|
|
return c;
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
getAllRasterImages: CBarChart.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CBarChart.prototype.checkSpPrRasterImages,
|
|
getAxisByTypes: CPlotArea.prototype.getAxisByTypes,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
addAxId: function (pr) {
|
|
if (!pr) {
|
|
return;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleChart_AddAxId,
|
|
newPr: pr
|
|
});
|
|
this.axId.push(pr);
|
|
},
|
|
setBubble3D: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleChart_SetBubble3D,
|
|
oldPr: this.bubble3D,
|
|
newPr: pr
|
|
});
|
|
this.bubble3D = pr;
|
|
},
|
|
setBubbleScale: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleChart_SetBubbleScale,
|
|
oldPr: this.bubbleScale,
|
|
newPr: pr
|
|
});
|
|
this.bubbleScale = pr;
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.dLbls) {
|
|
this.dLbls.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleChart_AddSerie,
|
|
newPr: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setShowNegBubbles: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleChart_SetShowNegBubbles,
|
|
oldPr: this.showNegBubbles,
|
|
newPr: pr
|
|
});
|
|
this.showNegBubbles = pr;
|
|
},
|
|
setSizeRepresents: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleChart_SetSizeRepresents,
|
|
oldPr: this.sizeRepresents,
|
|
newPr: pr
|
|
});
|
|
this.sizeRepresents = pr;
|
|
},
|
|
setVaryColors: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleChart_SetVaryColors,
|
|
oldPr: this.varyColors,
|
|
newPr: pr
|
|
});
|
|
this.varyColors = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_BubbleChart_AddAxId:
|
|
for (var i = this.axId.length - 1; i > -1; --i) {
|
|
if (this.axId[i] === data.newPr) {
|
|
this.axId.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_BubbleChart_SetBubble3D:
|
|
this.bubble3D = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleChart_SetBubbleScale:
|
|
this.bubbleScale = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_BubbleChart_AddSerie:
|
|
for (var i = this.series.length - 1; i > -1; --i) {
|
|
if (this.series[i] === data.newPr) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_BubbleChart_SetShowNegBubbles:
|
|
this.showNegBubbles = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleChart_SetSizeRepresents:
|
|
this.sizeRepresents = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleChart_SetVaryColors:
|
|
this.varyColors = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_BubbleChart_AddAxId:
|
|
this.axId.push(data.newPr);
|
|
break;
|
|
case historyitem_BubbleChart_SetBubble3D:
|
|
this.bubble3D = data.newPr;
|
|
break;
|
|
case historyitem_BubbleChart_SetBubbleScale:
|
|
this.bubbleScale = data.newPr;
|
|
break;
|
|
case historyitem_BubbleChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_BubbleChart_AddSerie:
|
|
this.series.push(data.newPr);
|
|
break;
|
|
case historyitem_BubbleChart_SetShowNegBubbles:
|
|
this.showNegBubbles = data.newPr;
|
|
break;
|
|
case historyitem_BubbleChart_SetSizeRepresents:
|
|
this.sizeRepresents = data.newPr;
|
|
break;
|
|
case historyitem_BubbleChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_BubbleChart_AddAxId:
|
|
case historyitem_BubbleChart_SetDLbls:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_BubbleChart_SetBubble3D:
|
|
case historyitem_BubbleChart_SetShowNegBubbles:
|
|
case historyitem_BubbleChart_SetVaryColors:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_BubbleChart_SetBubbleScale:
|
|
case historyitem_BubbleChart_SetSizeRepresents:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_BubbleChart_AddSerie:
|
|
var ser = readObject(r);
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_BubbleChart_AddAxId:
|
|
var ax = readObject(r);
|
|
if (isRealObject(ax)) {
|
|
this.axId.push(ax);
|
|
}
|
|
break;
|
|
case historyitem_BubbleChart_SetBubble3D:
|
|
this.bubble3D = readBool(r);
|
|
break;
|
|
case historyitem_BubbleChart_SetBubbleScale:
|
|
this.bubbleScale = readLong(r);
|
|
break;
|
|
case historyitem_BubbleChart_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_BubbleChart_AddSerie:
|
|
var ser = readObject(r);
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
break;
|
|
case historyitem_BubbleChart_SetShowNegBubbles:
|
|
this.showNegBubbles = readBool(r);
|
|
break;
|
|
case historyitem_BubbleChart_SetSizeRepresents:
|
|
this.sizeRepresents = readLong(r);
|
|
break;
|
|
case historyitem_BubbleChart_SetVaryColors:
|
|
this.varyColors = readBool(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CBubbleSeries() {
|
|
this.bubble3D = null;
|
|
this.bubbleSize = null;
|
|
this.dLbls = null;
|
|
this.dPt = [];
|
|
this.errBars = null;
|
|
this.idx = null;
|
|
this.invertIfNegative = null;
|
|
this.order = null;
|
|
this.spPr = null;
|
|
this.trendline = null;
|
|
this.tx = null;
|
|
this.xVal = null;
|
|
this.yVal = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CBubbleSeries.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_BubbleSeries;
|
|
},
|
|
cd: function () {},
|
|
removeDPt: function (idx) {
|
|
if (this.dPt[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonSeries_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.dPt[idx]
|
|
});
|
|
this.dPt.splice(idx, 1);
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CBubbleSeries();
|
|
c.setBubble3D(this.bubble3D);
|
|
c.setBubbleSize(this.bubbleSize);
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
for (var i = 0; i < this.dPt.length; ++i) {
|
|
c.addDPt(this.dPt[i].createDuplicate());
|
|
}
|
|
if (this.errBars) {
|
|
c.setErrBars(this.errBars.createDuplicate());
|
|
}
|
|
c.setIdx(this.idx);
|
|
c.setInvertIfNegative(this.invertIfNegative);
|
|
c.setOrder(this.order);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.trendline) {
|
|
c.setTrendline(this.trendline.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.xVal) {
|
|
c.setXVal(this.xVal.createDuplicate());
|
|
}
|
|
if (this.yVal) {
|
|
c.setYVal(this.yVal.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
documentCreateFontMap: CAreaSeries.prototype.documentCreateFontMap,
|
|
getAllRasterImages: CAreaSeries.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CAreaSeries.prototype.checkSpPrRasterImages,
|
|
getSeriesName: CAreaSeries.prototype.getSeriesName,
|
|
getCatName: CAreaSeries.prototype.getCatName,
|
|
getValByIndex: CAreaSeries.prototype.getValByIndex,
|
|
getFormatCode: CAreaSeries.prototype.getFormatCode,
|
|
setFromOtherSeries: function (o) {},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 0, data.pt);
|
|
break;
|
|
case historyitem_BubbleSeries_SetBubble3D:
|
|
this.bubble3D = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetBubbleSize:
|
|
this.bubbleSize = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetDPt:
|
|
findPrAndRemove(this.dPt, data.newPr);
|
|
break;
|
|
case historyitem_BubbleSeries_SetErrBars:
|
|
this.errBars = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetInvertIfNegative:
|
|
this.invertIfNegative = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetOrder:
|
|
this.order = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetTrendline:
|
|
this.trendline = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetTx:
|
|
this.tx = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetXVal:
|
|
this.xVal = data.oldPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetYVal:
|
|
this.yVal = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 1);
|
|
break;
|
|
case historyitem_BubbleSeries_SetBubble3D:
|
|
this.bubble3D = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetBubbleSize:
|
|
this.bubbleSize = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetDPt:
|
|
this.dPt.push(data.newPr);
|
|
break;
|
|
case historyitem_BubbleSeries_SetErrBars:
|
|
this.errBars = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetInvertIfNegative:
|
|
this.invertIfNegative = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetOrder:
|
|
this.order = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetTrendline:
|
|
this.trendline = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetTx:
|
|
this.tx = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetXVal:
|
|
this.xVal = data.newPr;
|
|
break;
|
|
case historyitem_BubbleSeries_SetYVal:
|
|
this.yVal = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_BubbleSeries_SetBubble3D:
|
|
case historyitem_BubbleSeries_SetInvertIfNegative:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_BubbleSeries_SetBubbleSize:
|
|
case historyitem_BubbleSeries_SetDLbls:
|
|
case historyitem_BubbleSeries_SetDPt:
|
|
case historyitem_BubbleSeries_SetErrBars:
|
|
case historyitem_BubbleSeries_SetSpPr:
|
|
case historyitem_BubbleSeries_SetTrendline:
|
|
case historyitem_BubbleSeries_SetTx:
|
|
case historyitem_BubbleSeries_SetXVal:
|
|
case historyitem_BubbleSeries_SetYVal:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_BubbleSeries_SetIdx:
|
|
case historyitem_BubbleSeries_SetOrder:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
writeLong(w, data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
var pos = readLong(r);
|
|
if (isRealNumber(pos)) {
|
|
this.dPt.splice(pos, 1);
|
|
}
|
|
break;
|
|
case historyitem_BubbleSeries_SetBubble3D:
|
|
this.bubble3D = readBool(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetBubbleSize:
|
|
this.bubbleSize = readObject(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetDPt:
|
|
this.dPt.push(readObject(r));
|
|
break;
|
|
case historyitem_BubbleSeries_SetErrBars:
|
|
this.errBars = readObject(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetIdx:
|
|
this.idx = readLong(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetInvertIfNegative:
|
|
this.invertIfNegative = readBool(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetOrder:
|
|
this.order = readLong(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetTrendline:
|
|
this.trendline = readObject(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetTx:
|
|
this.tx = readObject(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetXVal:
|
|
this.xVal = readObject(r);
|
|
break;
|
|
case historyitem_BubbleSeries_SetYVal:
|
|
this.yVal = readObject(r);
|
|
break;
|
|
}
|
|
},
|
|
setBubble3D: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetBubble3D,
|
|
oldPr: this.bubble3D,
|
|
newPr: pr
|
|
});
|
|
this.bubble3D = pr;
|
|
},
|
|
setBubbleSize: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetBubbleSize,
|
|
oldPr: this.bubbleSize,
|
|
newPr: pr
|
|
});
|
|
this.bubbleSize = pr;
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
},
|
|
addDPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetDPt,
|
|
oldPr: this.dPt,
|
|
newPr: pr
|
|
});
|
|
this.dPt.push(pr);
|
|
},
|
|
setErrBars: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetErrBars,
|
|
oldPr: this.errBars,
|
|
newPr: pr
|
|
});
|
|
this.errBars = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setInvertIfNegative: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetInvertIfNegative,
|
|
oldPr: this.invertIfNegative,
|
|
newPr: pr
|
|
});
|
|
this.invertIfNegative = pr;
|
|
},
|
|
setOrder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetOrder,
|
|
oldPr: this.order,
|
|
newPr: pr
|
|
});
|
|
this.order = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTrendline: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetTrendline,
|
|
oldPr: this.trendline,
|
|
newPr: pr
|
|
});
|
|
this.trendline = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetTx,
|
|
oldPr: this.tx,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
},
|
|
setXVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetXVal,
|
|
oldPr: this.xVal,
|
|
newPr: pr
|
|
});
|
|
this.xVal = pr;
|
|
},
|
|
setYVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_BubbleSeries_SetYVal,
|
|
oldPr: this.yVal,
|
|
newPr: pr
|
|
});
|
|
this.yVal = pr;
|
|
if (this.yVal && this.yVal.setParent) {
|
|
this.yVal.setParent(this);
|
|
}
|
|
}
|
|
};
|
|
function CCat() {
|
|
this.multiLvlStrRef = null;
|
|
this.numLit = null;
|
|
this.numRef = null;
|
|
this.strLit = null;
|
|
this.strRef = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CCat.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CCat();
|
|
if (this.multiLvlStrRef) {
|
|
c.setMultiLvlStrRef(this.multiLvlStrRef.createDuplicate());
|
|
}
|
|
if (this.numLit) {
|
|
c.setNumLit(this.numLit.createDuplicate());
|
|
}
|
|
if (this.numRef) {
|
|
c.setNumRef(this.numRef.createDuplicate());
|
|
}
|
|
if (this.strLit) {
|
|
c.setStrLit(this.strLit.createDuplicate());
|
|
}
|
|
if (this.strRef) {
|
|
c.setStrRef(this.strRef.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_Cat;
|
|
},
|
|
setFromOtherObject: function (o) {
|
|
if (o.multiLvlStrRef) {
|
|
this.setMultiLvlStrRef(o.multiLvlStrRef);
|
|
}
|
|
if (o.numLit) {
|
|
this.setNumLit(o.numLit);
|
|
}
|
|
if (o.numRef) {
|
|
this.setNumRef(o.numRef);
|
|
}
|
|
if (o.strLit) {
|
|
this.setStrLit(o.strLit);
|
|
}
|
|
if (o.strRef) {
|
|
this.setStrRef(o.strRef);
|
|
}
|
|
},
|
|
setMultiLvlStrRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Cat_SetMultiLvlStrRef,
|
|
oldPr: this.multiLvlStrRef,
|
|
newPr: pr
|
|
});
|
|
this.multiLvlStrRef = pr;
|
|
},
|
|
setNumLit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Cat_SetNumLit,
|
|
oldPr: this.multiLvlStrRef,
|
|
newPr: pr
|
|
});
|
|
this.numLit = pr;
|
|
},
|
|
setNumRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Cat_SetNumRef,
|
|
oldPr: this.multiLvlStrRef,
|
|
newPr: pr
|
|
});
|
|
this.numRef = pr;
|
|
},
|
|
setStrLit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Cat_SetStrLit,
|
|
oldPr: this.multiLvlStrRef,
|
|
newPr: pr
|
|
});
|
|
this.strLit = pr;
|
|
},
|
|
setStrRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Cat_SetStrRef,
|
|
oldPr: this.multiLvlStrRef,
|
|
newPr: pr
|
|
});
|
|
this.strRef = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Cat_SetMultiLvlStrRef:
|
|
this.multiLvlStrRef = data.oldPr;
|
|
break;
|
|
case historyitem_Cat_SetNumLit:
|
|
this.numLit = data.oldPr;
|
|
break;
|
|
case historyitem_Cat_SetNumRef:
|
|
this.numRef = data.oldPr;
|
|
break;
|
|
case historyitem_Cat_SetStrLit:
|
|
this.strLit = data.oldPr;
|
|
break;
|
|
case historyitem_Cat_SetStrRef:
|
|
this.strRef = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Cat_SetMultiLvlStrRef:
|
|
this.multiLvlStrRef = data.newPr;
|
|
break;
|
|
case historyitem_Cat_SetNumLit:
|
|
this.numLit = data.newPr;
|
|
break;
|
|
case historyitem_Cat_SetNumRef:
|
|
this.numRef = data.newPr;
|
|
break;
|
|
case historyitem_Cat_SetStrLit:
|
|
this.strLit = data.newPr;
|
|
break;
|
|
case historyitem_Cat_SetStrRef:
|
|
this.strRef = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_Cat_SetMultiLvlStrRef:
|
|
case historyitem_Cat_SetNumLit:
|
|
case historyitem_Cat_SetNumRef:
|
|
case historyitem_Cat_SetStrLit:
|
|
case historyitem_Cat_SetStrRef:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_Cat_SetMultiLvlStrRef:
|
|
this.multiLvlStrRef = readObject(r);
|
|
break;
|
|
case historyitem_Cat_SetNumLit:
|
|
this.numLit = readObject(r);
|
|
break;
|
|
case historyitem_Cat_SetNumRef:
|
|
this.numRef = readObject(r);
|
|
break;
|
|
case historyitem_Cat_SetStrLit:
|
|
this.strLit = readObject(r);
|
|
break;
|
|
case historyitem_Cat_SetStrRef:
|
|
this.strRef = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CChartText() {
|
|
this.rich = null;
|
|
this.strRef = null;
|
|
this.chart = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CChartText.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CChartText();
|
|
if (this.rich) {
|
|
c.setRich(this.rich.createDuplicate());
|
|
c.rich.setParent(c);
|
|
}
|
|
if (this.strRef) {
|
|
c.setStrRef(this.strRef.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getStyles: CDLbl.prototype.getStyles,
|
|
Get_Theme: CDLbl.prototype.Get_Theme,
|
|
Get_ColorMap: CDLbl.prototype.Get_ColorMap,
|
|
setChart: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ChartFormatSetChart,
|
|
oldPr: this.chart,
|
|
newPr: pr
|
|
});
|
|
this.chart = pr;
|
|
},
|
|
getDrawingDocument: function () {
|
|
return this.parent && this.parent.getDrawingDocument && this.parent.getDrawingDocument();
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
merge: function (tx, noCopyTextBody) {
|
|
if (tx.rich) {
|
|
if (noCopyTextBody === true) {
|
|
this.setRich(tx.rich);
|
|
} else {
|
|
this.setRich(tx.rich.createDuplicate());
|
|
}
|
|
this.rich.setParent(this);
|
|
}
|
|
if (tx.strRef) {
|
|
this.strRef = tx.strRef;
|
|
}
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_ChartText;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setRich: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ChartText_SetRich,
|
|
oldPr: this.rich,
|
|
newPr: pr
|
|
});
|
|
this.rich = pr;
|
|
},
|
|
setStrRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ChartText_SetStrRef,
|
|
oldPr: this.strRef,
|
|
newPr: pr
|
|
});
|
|
this.strRef = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_ChartFormatSetChart:
|
|
this.chart = data.oldPr;
|
|
break;
|
|
case historyitem_ChartText_SetRich:
|
|
this.rich = data.oldPr;
|
|
break;
|
|
case historyitem_ChartText_SetStrRef:
|
|
this.strRef = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_ChartFormatSetChart:
|
|
this.chart = data.newPr;
|
|
break;
|
|
case historyitem_ChartText_SetRich:
|
|
this.rich = data.newPr;
|
|
break;
|
|
case historyitem_ChartText_SetStrRef:
|
|
this.strRef = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_ChartText_SetRich:
|
|
case historyitem_ChartText_SetStrRef:
|
|
case historyitem_ChartFormatSetChart:
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_ChartText_SetRich:
|
|
this.rich = readObject(r);
|
|
break;
|
|
case historyitem_ChartText_SetStrRef:
|
|
this.strRef = readObject(r);
|
|
break;
|
|
case historyitem_ChartFormatSetChart:
|
|
this.chart = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var DLBL_POS_B = 0;
|
|
var DLBL_POS_BEST_FIT = 1;
|
|
var DLBL_POS_CTR = 2;
|
|
var DLBL_POS_IN_BASE = 3;
|
|
var DLBL_POS_IN_END = 4;
|
|
var DLBL_POS_L = 5;
|
|
var DLBL_POS_OUT_END = 6;
|
|
var DLBL_POS_R = 7;
|
|
var DLBL_POS_T = 8;
|
|
var DLBL_POS_DEFINES_MAP = [];
|
|
DLBL_POS_DEFINES_MAP[c_oAscChartDataLabelsPos.b] = DLBL_POS_B;
|
|
DLBL_POS_DEFINES_MAP[c_oAscChartDataLabelsPos.bestFit] = DLBL_POS_BEST_FIT;
|
|
DLBL_POS_DEFINES_MAP[c_oAscChartDataLabelsPos.ctr] = DLBL_POS_CTR;
|
|
DLBL_POS_DEFINES_MAP[c_oAscChartDataLabelsPos.inBase] = DLBL_POS_IN_BASE;
|
|
DLBL_POS_DEFINES_MAP[c_oAscChartDataLabelsPos.inEnd] = DLBL_POS_IN_END;
|
|
DLBL_POS_DEFINES_MAP[c_oAscChartDataLabelsPos.l] = DLBL_POS_L;
|
|
DLBL_POS_DEFINES_MAP[c_oAscChartDataLabelsPos.outEnd] = DLBL_POS_OUT_END;
|
|
DLBL_POS_DEFINES_MAP[c_oAscChartDataLabelsPos.r] = DLBL_POS_R;
|
|
DLBL_POS_DEFINES_MAP[c_oAscChartDataLabelsPos.t] = DLBL_POS_T;
|
|
var BAR_DATA_LABELS_POS_MAP = {};
|
|
var REV_DLBL_POS_DEFINES_MAP = [];
|
|
REV_DLBL_POS_DEFINES_MAP[DLBL_POS_B] = c_oAscChartDataLabelsPos.b;
|
|
REV_DLBL_POS_DEFINES_MAP[DLBL_POS_BEST_FIT] = c_oAscChartDataLabelsPos.bestFit;
|
|
REV_DLBL_POS_DEFINES_MAP[DLBL_POS_CTR] = c_oAscChartDataLabelsPos.ctr;
|
|
REV_DLBL_POS_DEFINES_MAP[DLBL_POS_IN_BASE] = c_oAscChartDataLabelsPos.inBase;
|
|
REV_DLBL_POS_DEFINES_MAP[DLBL_POS_IN_END] = c_oAscChartDataLabelsPos.inEnd;
|
|
REV_DLBL_POS_DEFINES_MAP[DLBL_POS_L] = c_oAscChartDataLabelsPos.l;
|
|
REV_DLBL_POS_DEFINES_MAP[DLBL_POS_OUT_END] = c_oAscChartDataLabelsPos.outEnd;
|
|
REV_DLBL_POS_DEFINES_MAP[DLBL_POS_R] = c_oAscChartDataLabelsPos.r;
|
|
REV_DLBL_POS_DEFINES_MAP[DLBL_POS_T] = c_oAscChartDataLabelsPos.t;
|
|
function CDLbls() {
|
|
this.bDelete = null;
|
|
this.dLbl = [];
|
|
this.dLblPos = null;
|
|
this.leaderLines = null;
|
|
this.numFmt = null;
|
|
this.separator = null;
|
|
this.showBubbleSize = null;
|
|
this.showCatName = null;
|
|
this.showLeaderLines = null;
|
|
this.showLegendKey = null;
|
|
this.showPercent = null;
|
|
this.showSerName = null;
|
|
this.showVal = null;
|
|
this.spPr = null;
|
|
this.txPr = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CDLbls.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CDLbls();
|
|
c.setDelete(this.bDelete);
|
|
for (var i = 0; i < this.dLbl.length; ++i) {
|
|
c.addDLbl(this.dLbl[i].createDuplicate());
|
|
}
|
|
c.setDLblPos(this.dLblPos);
|
|
if (this.leaderLines) {
|
|
c.setLeaderLines(this.leaderLines.createDuplicate());
|
|
}
|
|
if (this.numFmt) {
|
|
c.setNumFmt(this.numFmt.createDuplicate());
|
|
}
|
|
c.setSeparator(this.separator);
|
|
c.setShowBubbleSize(this.showBubbleSize);
|
|
c.setShowCatName(this.showCatName);
|
|
c.setShowLeaderLines(this.showLeaderLines);
|
|
c.setShowLegendKey(this.showLegendKey);
|
|
c.setShowPercent(this.showPercent);
|
|
c.setShowSerName(this.showSerName);
|
|
c.setShowVal(this.showVal);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
documentCreateFontMap: function (allFonts) {
|
|
checkTxBodyDefFonts(allFonts, this.txPr);
|
|
for (var i = 0; i < this.dLbl.length; ++i) {
|
|
this.dLbl[i] && checkTxBodyDefFonts(allFonts, this.dLbl[i].txPr);
|
|
this.dLbl[i].tx && this.dLbl[i].tx.rich && this.dLbl[i].tx.rich.content && this.dLbl[i].tx.rich.content.Document_Get_AllFontNames(allFonts);
|
|
}
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_DLbls;
|
|
},
|
|
findDLblByIdx: function (idx) {
|
|
for (var i = 0; i < this.dLbl.length; ++i) {
|
|
if (this.dLbl[i].idx === idx) {
|
|
return this.dLbl[i];
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
getAllRasterImages: function (images) {
|
|
this.spPr && this.spPr.checkBlipFillRasterImage(images);
|
|
for (var i = 0; i < this.dLbl.length; ++i) {
|
|
this.dLbl[i] && this.dLbl[i].spPr && this.dLbl[i].spPr.checkBlipFillRasterImage(images);
|
|
}
|
|
},
|
|
checkSpPrRasterImages: function () {
|
|
checkSpPrRasterImages(this.spPr);
|
|
for (var i = 0; i < this.dLbl.length; ++i) {
|
|
this.dLbl[i] && checkSpPrRasterImages(this.dLbl[i].spPr);
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setDelete: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetDelete,
|
|
oldPr: this.bDelete,
|
|
newPr: pr
|
|
});
|
|
this.bDelete = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
addDLbl: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetDLbl,
|
|
newPr: pr
|
|
});
|
|
this.dLbl.push(pr);
|
|
},
|
|
setDLblPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetDLblPos,
|
|
oldPr: this.dLblPos,
|
|
newPr: pr
|
|
});
|
|
this.dLblPos = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setLeaderLines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetLeaderLines,
|
|
oldPr: this.leaderLines,
|
|
newPr: pr
|
|
});
|
|
this.leaderLines = pr;
|
|
},
|
|
setNumFmt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetNumFmt,
|
|
oldPr: this.numFmt,
|
|
newPr: pr
|
|
});
|
|
this.numFmt = pr;
|
|
},
|
|
setSeparator: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetSeparator,
|
|
oldPr: this.separator,
|
|
newPr: pr
|
|
});
|
|
this.separator = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setShowBubbleSize: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetShowBubbleSize,
|
|
oldPr: this.showBubbleSize,
|
|
newPr: pr
|
|
});
|
|
this.showBubbleSize = pr;
|
|
},
|
|
setShowCatName: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetShowCatName,
|
|
oldPr: this.showCatName,
|
|
newPr: pr
|
|
});
|
|
this.showCatName = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setShowLeaderLines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetShowLeaderLines,
|
|
oldPr: this.showLeaderLines,
|
|
newPr: pr
|
|
});
|
|
this.showLeaderLines = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setShowLegendKey: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetShowLegendKey,
|
|
oldPr: this.showLegendKey,
|
|
newPr: pr
|
|
});
|
|
this.showLegendKey = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setShowPercent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetShowPercent,
|
|
oldPr: this.showPercent,
|
|
newPr: pr
|
|
});
|
|
this.showPercent = pr;
|
|
},
|
|
setShowSerName: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetShowSerName,
|
|
oldPr: this.showSerName,
|
|
newPr: pr
|
|
});
|
|
this.showSerName = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setShowVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetShowVal,
|
|
oldPr: this.showVal,
|
|
newPr: pr
|
|
});
|
|
this.showVal = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DLbls_SetTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetDelete:
|
|
this.bDelete = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetDLbl:
|
|
for (var i = this.dLbl.length - 1; i > -1; --i) {
|
|
if (this.dLbl[i] === data.newPr) {
|
|
this.dLbl.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_DLbls_SetDLblPos:
|
|
this.dLblPos = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetLeaderLines:
|
|
this.leaderLines = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetNumFmt:
|
|
this.numFmt = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetSeparator:
|
|
this.separator = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowBubbleSize:
|
|
this.bubbleSize = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowCatName:
|
|
this.showCatName = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowLeaderLines:
|
|
this.showLeaderLines = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowLegendKey:
|
|
this.showLegendKey = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowPercent:
|
|
this.showPercent = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowSerName:
|
|
this.showSerName = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowVal:
|
|
this.showVal = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_DLbls_SetTxPr:
|
|
this.txPr = data.oldPr;
|
|
break;
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetDelete:
|
|
this.bDelete = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetDLbl:
|
|
this.dLbl.push(data.newPr);
|
|
break;
|
|
case historyitem_DLbls_SetDLblPos:
|
|
this.dLblPos = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetLeaderLines:
|
|
this.leaderLines = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetNumFmt:
|
|
this.numFmt = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetSeparator:
|
|
this.separator = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowBubbleSize:
|
|
this.showBubbleSize = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowCatName:
|
|
this.showCatName = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowLeaderLines:
|
|
this.showLeaderLines = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowLegendKey:
|
|
this.showLegendKey = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowPercent:
|
|
this.showPercent = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowSerName:
|
|
this.showSerName = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetShowVal:
|
|
this.showVal = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_DLbls_SetTxPr:
|
|
this.txPr = data.newPr;
|
|
break;
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DLbls_SetDelete:
|
|
case historyitem_DLbls_SetShowBubbleSize:
|
|
case historyitem_DLbls_SetShowCatName:
|
|
case historyitem_DLbls_SetShowLeaderLines:
|
|
case historyitem_DLbls_SetShowLegendKey:
|
|
case historyitem_DLbls_SetShowPercent:
|
|
case historyitem_DLbls_SetShowSerName:
|
|
case historyitem_DLbls_SetShowVal:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_DLbls_SetDLbl:
|
|
case historyitem_DLbls_SetLeaderLines:
|
|
case historyitem_DLbls_SetNumFmt:
|
|
case historyitem_DLbls_SetSpPr:
|
|
case historyitem_DLbls_SetTxPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_DLbls_SetDLblPos:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_DLbls_SetSeparator:
|
|
writeString(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_DLbls_SetDelete:
|
|
this.bDelete = readBool(r);
|
|
break;
|
|
case historyitem_DLbls_SetDLbl:
|
|
var d_lbl = readObject(r);
|
|
if (d_lbl) {
|
|
this.dLbl.push(d_lbl);
|
|
}
|
|
break;
|
|
case historyitem_DLbls_SetDLblPos:
|
|
this.dLblPos = readLong(r);
|
|
break;
|
|
case historyitem_DLbls_SetLeaderLines:
|
|
this.leaderLines = readObject(r);
|
|
break;
|
|
case historyitem_DLbls_SetNumFmt:
|
|
this.numFmt = readObject(r);
|
|
break;
|
|
case historyitem_DLbls_SetSeparator:
|
|
this.separator = readString(r);
|
|
break;
|
|
case historyitem_DLbls_SetShowBubbleSize:
|
|
this.showBubbleSize = readBool(r);
|
|
break;
|
|
case historyitem_DLbls_SetShowCatName:
|
|
this.showCatName = readBool(r);
|
|
break;
|
|
case historyitem_DLbls_SetShowLeaderLines:
|
|
this.showLeaderLines = readBool(r);
|
|
break;
|
|
case historyitem_DLbls_SetShowLegendKey:
|
|
this.showLegendKey = readBool(r);
|
|
break;
|
|
case historyitem_DLbls_SetShowPercent:
|
|
this.showPercent = readBool(r);
|
|
break;
|
|
case historyitem_DLbls_SetShowSerName:
|
|
this.showSerName = readBool(r);
|
|
break;
|
|
case historyitem_DLbls_SetShowVal:
|
|
this.showVal = readBool(r);
|
|
break;
|
|
case historyitem_DLbls_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_DLbls_SetTxPr:
|
|
this.txPr = readObject(r);
|
|
break;
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateDataLabels) {
|
|
this.parent.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
}
|
|
};
|
|
function CDPt() {
|
|
this.bubble3D = null;
|
|
this.explosion = null;
|
|
this.idx = null;
|
|
this.invertIfNegative = null;
|
|
this.marker = null;
|
|
this.pictureOptions = null;
|
|
this.spPr = null;
|
|
this.recalcInfo = {
|
|
recalcLbl: true
|
|
};
|
|
this.compiledLbl = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CDPt.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_DPt;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CDPt();
|
|
c.setBubble3D(this.bubble3D);
|
|
c.setExplosion(this.explosion);
|
|
c.setIdx(this.idx);
|
|
c.setInvertIfNegative(this.invertIfNegative);
|
|
if (this.marker) {
|
|
c.setMarker(this.marker.createDuplicate());
|
|
}
|
|
if (this.pictureOptions) {
|
|
c.setPictureOptions(this.pictureOptions.createDuplicate());
|
|
}
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setBubble3D: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DPt_SetBubble3D,
|
|
oldPr: this.bubble3D,
|
|
newPr: pr
|
|
});
|
|
this.bubble3D = pr;
|
|
},
|
|
setExplosion: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DPt_SetExplosion,
|
|
oldPr: this.explosion,
|
|
newPr: pr
|
|
});
|
|
this.explosion = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DPt_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setInvertIfNegative: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DPt_SetInvertIfNegative,
|
|
oldPr: this.invertIfNegative,
|
|
newPr: pr
|
|
});
|
|
this.invertIfNegative = pr;
|
|
},
|
|
setMarker: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DPt_SetMarker,
|
|
oldPr: this.marker,
|
|
newPr: pr
|
|
});
|
|
this.marker = pr;
|
|
},
|
|
setPictureOptions: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DPt_SetPictureOptions,
|
|
oldPr: this.pictureOptions,
|
|
newPr: pr
|
|
});
|
|
this.pictureOptions = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DPt_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_DPt_SetBubble3D:
|
|
this.bubble3D = data.oldPr;
|
|
break;
|
|
case historyitem_DPt_SetExplosion:
|
|
this.explosion = data.oldPr;
|
|
break;
|
|
case historyitem_DPt_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_DPt_SetInvertIfNegative:
|
|
this.invertIfNegative = data.oldPr;
|
|
break;
|
|
case historyitem_DPt_SetMarker:
|
|
this.marker = data.oldPr;
|
|
break;
|
|
case historyitem_DPt_SetPictureOptions:
|
|
this.pictureOptions = data.oldPr;
|
|
break;
|
|
case historyitem_DPt_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_DPt_SetBubble3D:
|
|
this.bubble3D = data.newPr;
|
|
break;
|
|
case historyitem_DPt_SetExplosion:
|
|
this.explosion = data.newPr;
|
|
break;
|
|
case historyitem_DPt_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_DPt_SetInvertIfNegative:
|
|
this.invertIfNegative = data.newPr;
|
|
break;
|
|
case historyitem_DPt_SetMarker:
|
|
this.marker = data.newPr;
|
|
break;
|
|
case historyitem_DPt_SetPictureOptions:
|
|
this.pictureOptions = data.newPr;
|
|
break;
|
|
case historyitem_DPt_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_DPt_SetBubble3D:
|
|
case historyitem_DPt_SetInvertIfNegative:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_DPt_SetExplosion:
|
|
case historyitem_DPt_SetIdx:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_DPt_SetMarker:
|
|
case historyitem_DPt_SetPictureOptions:
|
|
case historyitem_DPt_SetSpPr:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_DPt_SetBubble3D:
|
|
if (r.GetBool()) {
|
|
this.bubble3D = r.GetBool();
|
|
} else {
|
|
this.bubble3D = null;
|
|
}
|
|
break;
|
|
case historyitem_DPt_SetExplosion:
|
|
if (r.GetBool()) {
|
|
this.explosion = r.GetLong();
|
|
} else {
|
|
this.explosion = null;
|
|
}
|
|
break;
|
|
case historyitem_DPt_SetIdx:
|
|
if (r.GetBool()) {
|
|
this.idx = r.GetLong();
|
|
} else {
|
|
this.idx = null;
|
|
}
|
|
break;
|
|
case historyitem_DPt_SetInvertIfNegative:
|
|
if (r.GetBool()) {
|
|
this.invertIfNegative = r.GetBool();
|
|
} else {
|
|
this.invertIfNegative = null;
|
|
}
|
|
break;
|
|
case historyitem_DPt_SetMarker:
|
|
if (r.GetBool()) {
|
|
this.marker = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.marker = null;
|
|
}
|
|
break;
|
|
case historyitem_DPt_SetPictureOptions:
|
|
if (r.GetBool()) {
|
|
this.pictureOptions = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.pictureOptions = null;
|
|
}
|
|
break;
|
|
case historyitem_DPt_SetSpPr:
|
|
if (r.GetBool()) {
|
|
this.spPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.spPr = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CDTable() {
|
|
this.showHorzBorder = null;
|
|
this.showKeys = null;
|
|
this.showOutline = null;
|
|
this.showVertBorder = null;
|
|
this.spPr = null;
|
|
this.txPr = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CDTable.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_DTable;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CDTable();
|
|
c.setShowHorzBorder(this.showHorzBorder);
|
|
c.setShowKeys(this.showKeys);
|
|
c.setShowOutline(this.showOutline);
|
|
c.setShowVertBorder(this.showVertBorder);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
setShowHorzBorder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DTable_SetShowHorzBorder,
|
|
oldPr: this.showHorzBorder,
|
|
newPr: pr
|
|
});
|
|
this.showHorzBorder = pr;
|
|
},
|
|
setShowKeys: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DTable_SetShowKeys,
|
|
oldPr: this.showHorzBorder,
|
|
newPr: pr
|
|
});
|
|
this.showKeys = pr;
|
|
},
|
|
setShowOutline: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DTable_SetShowOutline,
|
|
oldPr: this.showHorzBorder,
|
|
newPr: pr
|
|
});
|
|
this.showOutline = pr;
|
|
},
|
|
setShowVertBorder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DTable_SetShowVertBorder,
|
|
oldPr: this.showHorzBorder,
|
|
newPr: pr
|
|
});
|
|
this.showVertBorder = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DTable_SetSpPr,
|
|
oldPr: this.showHorzBorder,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DTable_SetTxPr,
|
|
oldPr: this.showHorzBorder,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_DTable_SetShowHorzBorder:
|
|
this.showHorzBorder = data.oldPr;
|
|
break;
|
|
case historyitem_DTable_SetShowKeys:
|
|
this.showKeys = data.oldPr;
|
|
break;
|
|
case historyitem_DTable_SetShowOutline:
|
|
this.showOutline = data.oldPr;
|
|
break;
|
|
case historyitem_DTable_SetShowVertBorder:
|
|
this.showVertBorder = data.oldPr;
|
|
break;
|
|
case historyitem_DTable_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_DTable_SetTxPr:
|
|
this.txPr = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_DTable_SetShowHorzBorder:
|
|
this.showHorzBorder = data.newPr;
|
|
break;
|
|
case historyitem_DTable_SetShowKeys:
|
|
this.showKeys = data.newPr;
|
|
break;
|
|
case historyitem_DTable_SetShowOutline:
|
|
this.showOutline = data.newPr;
|
|
break;
|
|
case historyitem_DTable_SetShowVertBorder:
|
|
this.showVertBorder = data.newPr;
|
|
break;
|
|
case historyitem_DTable_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_DTable_SetTxPr:
|
|
this.txPr = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_DTable_SetShowHorzBorder:
|
|
case historyitem_DTable_SetShowKeys:
|
|
case historyitem_DTable_SetShowOutline:
|
|
case historyitem_DTable_SetShowVertBorder:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_DTable_SetSpPr:
|
|
case historyitem_DTable_SetTxPr:
|
|
this.spPr = data.newPr;
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_DTable_SetShowHorzBorder:
|
|
if (r.GetBool()) {
|
|
this.showHorzBorder = r.GetBool();
|
|
} else {
|
|
this.showHorzBorder = null;
|
|
}
|
|
break;
|
|
case historyitem_DTable_SetShowKeys:
|
|
if (r.GetBool()) {
|
|
this.showKeys = r.GetBool();
|
|
} else {
|
|
this.showKeys = null;
|
|
}
|
|
break;
|
|
case historyitem_DTable_SetShowOutline:
|
|
if (r.GetBool()) {
|
|
this.showOutline = r.GetBool();
|
|
} else {
|
|
this.showOutline = null;
|
|
}
|
|
break;
|
|
case historyitem_DTable_SetShowVertBorder:
|
|
if (r.GetBool()) {
|
|
this.showVertBorder = r.GetBool();
|
|
} else {
|
|
this.showVertBorder = null;
|
|
}
|
|
break;
|
|
case historyitem_DTable_SetSpPr:
|
|
if (r.GetBool()) {
|
|
this.spPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.spPr = null;
|
|
}
|
|
break;
|
|
case historyitem_DTable_SetTxPr:
|
|
if (r.GetBool()) {
|
|
this.txPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.txPr = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var BUILT_IN_UNIT_BILLIONS = 0;
|
|
var BUILT_IN_UNIT_HUNDRED_MILLIONS = 1;
|
|
var BUILT_IN_UNIT_HUNDREDS = 2;
|
|
var BUILT_IN_UNIT_HUNDRED_THOUSANDS = 3;
|
|
var BUILT_IN_UNIT_MILLIONS = 4;
|
|
var BUILT_IN_UNIT_TEN_MILLIONS = 5;
|
|
var BUILT_IN_UNIT_TEN_THOUSANDS = 6;
|
|
var BUILT_IN_UNIT_TRILLIONS = 7;
|
|
var BUILT_IN_UNIT_THOUSANDS = 8;
|
|
var UNIT_MULTIPLIERS = [];
|
|
UNIT_MULTIPLIERS[BUILT_IN_UNIT_BILLIONS] = 1 / 1000000000;
|
|
UNIT_MULTIPLIERS[BUILT_IN_UNIT_HUNDRED_MILLIONS] = 1 / 100000000;
|
|
UNIT_MULTIPLIERS[BUILT_IN_UNIT_HUNDREDS] = 1 / 100;
|
|
UNIT_MULTIPLIERS[BUILT_IN_UNIT_HUNDRED_THOUSANDS] = 1 / 100000;
|
|
UNIT_MULTIPLIERS[BUILT_IN_UNIT_MILLIONS] = 1 / 1000000;
|
|
UNIT_MULTIPLIERS[BUILT_IN_UNIT_TEN_MILLIONS] = 1 / 10000000;
|
|
UNIT_MULTIPLIERS[BUILT_IN_UNIT_TEN_THOUSANDS] = 1 / 10000;
|
|
UNIT_MULTIPLIERS[BUILT_IN_UNIT_TRILLIONS] = 1 / 1000000000000;
|
|
UNIT_MULTIPLIERS[BUILT_IN_UNIT_THOUSANDS] = 1 / 1000;
|
|
var MENU_SETTINGS_MAP = [];
|
|
MENU_SETTINGS_MAP[c_oAscValAxUnits.BILLIONS] = BUILT_IN_UNIT_BILLIONS;
|
|
MENU_SETTINGS_MAP[c_oAscValAxUnits.HUNDRED_MILLIONS] = BUILT_IN_UNIT_HUNDRED_MILLIONS;
|
|
MENU_SETTINGS_MAP[c_oAscValAxUnits.HUNDREDS] = BUILT_IN_UNIT_HUNDREDS;
|
|
MENU_SETTINGS_MAP[c_oAscValAxUnits.HUNDRED_THOUSANDS] = BUILT_IN_UNIT_HUNDRED_THOUSANDS;
|
|
MENU_SETTINGS_MAP[c_oAscValAxUnits.MILLIONS] = BUILT_IN_UNIT_MILLIONS;
|
|
MENU_SETTINGS_MAP[c_oAscValAxUnits.TEN_MILLIONS] = BUILT_IN_UNIT_TEN_MILLIONS;
|
|
MENU_SETTINGS_MAP[c_oAscValAxUnits.TEN_THOUSANDS] = BUILT_IN_UNIT_TEN_THOUSANDS;
|
|
MENU_SETTINGS_MAP[c_oAscValAxUnits.TRILLIONS] = BUILT_IN_UNIT_TRILLIONS;
|
|
MENU_SETTINGS_MAP[c_oAscValAxUnits.THOUSANDS] = BUILT_IN_UNIT_THOUSANDS;
|
|
var REV_MENU_SETTINGS_MAP = [];
|
|
REV_MENU_SETTINGS_MAP[BUILT_IN_UNIT_BILLIONS] = c_oAscValAxUnits.BILLIONS;
|
|
REV_MENU_SETTINGS_MAP[BUILT_IN_UNIT_HUNDRED_MILLIONS] = c_oAscValAxUnits.HUNDRED_MILLIONS;
|
|
REV_MENU_SETTINGS_MAP[BUILT_IN_UNIT_HUNDREDS] = c_oAscValAxUnits.HUNDREDS;
|
|
REV_MENU_SETTINGS_MAP[BUILT_IN_UNIT_HUNDRED_THOUSANDS] = c_oAscValAxUnits.HUNDRED_THOUSANDS;
|
|
REV_MENU_SETTINGS_MAP[BUILT_IN_UNIT_MILLIONS] = c_oAscValAxUnits.MILLIONS;
|
|
REV_MENU_SETTINGS_MAP[BUILT_IN_UNIT_TEN_MILLIONS] = c_oAscValAxUnits.TEN_MILLIONS;
|
|
REV_MENU_SETTINGS_MAP[BUILT_IN_UNIT_TEN_THOUSANDS] = c_oAscValAxUnits.TEN_THOUSANDS;
|
|
REV_MENU_SETTINGS_MAP[BUILT_IN_UNIT_TRILLIONS] = c_oAscValAxUnits.TRILLIONS;
|
|
REV_MENU_SETTINGS_MAP[BUILT_IN_UNIT_THOUSANDS] = c_oAscValAxUnits.THOUSANDS;
|
|
var MENU_SETTINGS_TICK_MARK = [];
|
|
MENU_SETTINGS_TICK_MARK[c_oAscTickMark.TICK_MARK_CROSS] = TICK_MARK_CROSS;
|
|
MENU_SETTINGS_TICK_MARK[c_oAscTickMark.TICK_MARK_IN] = TICK_MARK_IN;
|
|
MENU_SETTINGS_TICK_MARK[c_oAscTickMark.TICK_MARK_NONE] = TICK_MARK_NONE;
|
|
MENU_SETTINGS_TICK_MARK[c_oAscTickMark.TICK_MARK_OUT] = TICK_MARK_OUT;
|
|
var REV_MENU_SETTINGS_TICK_MARK = [];
|
|
REV_MENU_SETTINGS_TICK_MARK[TICK_MARK_CROSS] = c_oAscTickMark.TICK_MARK_CROSS;
|
|
REV_MENU_SETTINGS_TICK_MARK[TICK_MARK_IN] = c_oAscTickMark.TICK_MARK_IN;
|
|
REV_MENU_SETTINGS_TICK_MARK[TICK_MARK_NONE] = c_oAscTickMark.TICK_MARK_NONE;
|
|
REV_MENU_SETTINGS_TICK_MARK[TICK_MARK_OUT] = c_oAscTickMark.TICK_MARK_OUT;
|
|
var MENU_SETTINGS_LABELS_POS = [];
|
|
MENU_SETTINGS_LABELS_POS[c_oAscTickLabelsPos.TICK_LABEL_POSITION_HIGH] = TICK_LABEL_POSITION_HIGH;
|
|
MENU_SETTINGS_LABELS_POS[c_oAscTickLabelsPos.TICK_LABEL_POSITION_LOW] = TICK_LABEL_POSITION_LOW;
|
|
MENU_SETTINGS_LABELS_POS[c_oAscTickLabelsPos.TICK_LABEL_POSITION_NEXT_TO] = TICK_LABEL_POSITION_NEXT_TO;
|
|
MENU_SETTINGS_LABELS_POS[c_oAscTickLabelsPos.TICK_LABEL_POSITION_NONE] = TICK_LABEL_POSITION_NONE;
|
|
var REV_MENU_SETTINGS_LABELS_POS = [];
|
|
REV_MENU_SETTINGS_LABELS_POS[TICK_LABEL_POSITION_HIGH] = c_oAscTickLabelsPos.TICK_LABEL_POSITION_HIGH;
|
|
REV_MENU_SETTINGS_LABELS_POS[TICK_LABEL_POSITION_LOW] = c_oAscTickLabelsPos.TICK_LABEL_POSITION_LOW;
|
|
REV_MENU_SETTINGS_LABELS_POS[TICK_LABEL_POSITION_NEXT_TO] = c_oAscTickLabelsPos.TICK_LABEL_POSITION_NEXT_TO;
|
|
REV_MENU_SETTINGS_LABELS_POS[TICK_LABEL_POSITION_NONE] = c_oAscTickLabelsPos.TICK_LABEL_POSITION_NONE;
|
|
function CDispUnits() {
|
|
this.builtInUnit = null;
|
|
this.custUnit = null;
|
|
this.dispUnitsLbl = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CDispUnits.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CDispUnits();
|
|
c.setBuiltInUnit(this.builtInUnit);
|
|
c.setCustUnit(this.custUnit);
|
|
if (this.dispUnitsLbl) {
|
|
c.setDispUnitsLbl(this.dispUnitsLbl.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DispUnitsSetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
getMultiplier: function () {
|
|
if (isRealNumber(this.builtInUnit)) {
|
|
if (isRealNumber(UNIT_MULTIPLIERS[this.builtInUnit])) {
|
|
return UNIT_MULTIPLIERS[this.builtInUnit];
|
|
}
|
|
} else {
|
|
if (isRealNumber(this.custUnit)) {
|
|
return this.custUnit;
|
|
}
|
|
}
|
|
return 1;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_DispUnits;
|
|
},
|
|
setBuiltInUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DispUnitsSetBuiltInUnit,
|
|
oldPr: this.builtInUnit,
|
|
newPr: pr
|
|
});
|
|
this.builtInUnit = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setCustUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DispUnitsSetCustUnit,
|
|
oldPr: this.custUnit,
|
|
newPr: pr
|
|
});
|
|
this.custUnit = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setDispUnitsLbl: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DispUnitsSetDispUnitsLbl,
|
|
oldPr: this.dispUnitsLbl,
|
|
newPr: pr
|
|
});
|
|
this.dispUnitsLbl = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_DispUnitsSetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_DispUnitsSetBuiltInUnit:
|
|
this.builtInUnit = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DispUnitsSetCustUnit:
|
|
this.custUnit = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DispUnitsSetDispUnitsLbl:
|
|
this.dispUnitsLbl = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_DispUnitsSetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_DispUnitsSetBuiltInUnit:
|
|
this.builtInUnit = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DispUnitsSetCustUnit:
|
|
this.custUnit = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DispUnitsSetDispUnitsLbl:
|
|
this.dispUnitsLbl = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_DispUnitsSetBuiltInUnit:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_DispUnitsSetCustUnit:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_DispUnitsSetParent:
|
|
case historyitem_DispUnitsSetDispUnitsLbl:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_DispUnitsSetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_DispUnitsSetBuiltInUnit:
|
|
this.builtInUnit = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DispUnitsSetCustUnit:
|
|
this.custUnit = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_DispUnitsSetDispUnitsLbl:
|
|
this.dispUnitsLbl = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CDoughnutChart() {
|
|
this.dLbls = null;
|
|
this.firstSliceAng = null;
|
|
this.holeSize = null;
|
|
this.series = [];
|
|
this.varyColors = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CDoughnutChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
getSeriesConstructor: function () {
|
|
return new CPieSeries();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CDoughnutChart();
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
c.setFirstSliceAng(this.firstSliceAng);
|
|
c.setHoleSize(this.holeSize);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
c.setVaryColors(this.varyColors);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_DoughnutChart;
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
getAllRasterImages: CBarChart.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CBarChart.prototype.checkSpPrRasterImages,
|
|
removeDataLabels: CBarChart.prototype.removeDataLabels,
|
|
setFromOtherChart: function (c) {
|
|
if (c.dLbls) {
|
|
this.setDLbls(c.dLbls);
|
|
}
|
|
if (isRealNumber(c.firstSliceAng)) {
|
|
this.setFirstSliceAng(c.firstSliceAng);
|
|
}
|
|
if (isRealNumber(c.holeSize)) {
|
|
this.setHoleSize(c.holeSize);
|
|
}
|
|
if (Array.isArray(c.series)) {
|
|
var i;
|
|
for (i = 0; i < c.series.length; ++i) {
|
|
var ser = new CPieSeries();
|
|
ser.setFromOtherSeries(c.series[i]);
|
|
this.addSer(ser);
|
|
}
|
|
}
|
|
if (isRealBool(c.varyColors)) {
|
|
this.setVaryColors(c.varyColors);
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DoughnutChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.dLbls) {
|
|
this.dLbls.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setFirstSliceAng: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DoughnutChart_SetFirstSliceAng,
|
|
oldPr: this.firstSliceAng,
|
|
newPr: pr
|
|
});
|
|
this.firstSliceAng = pr;
|
|
},
|
|
setHoleSize: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DoughnutChart_SetHoleSize,
|
|
oldPr: this.holeSize,
|
|
newPr: pr
|
|
});
|
|
this.holeSize = pr;
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_DoughnutChart_AddSer,
|
|
ser: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setVaryColors: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_DoughnutChart_SetVaryColor,
|
|
oldPr: this.varyColors,
|
|
newPr: pr
|
|
});
|
|
this.varyColors = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_DoughnutChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_SetFirstSliceAng:
|
|
this.firstSliceAng = data.oldPr;
|
|
break;
|
|
case historyitem_DoughnutChart_SetHoleSize:
|
|
this.holeSize = data.oldPr;
|
|
break;
|
|
case historyitem_DoughnutChart_AddSer:
|
|
for (var i = this.series.length - 1; i > -1; --i) {
|
|
if (this.series[i] === data.ser) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_SetVaryColor:
|
|
this.varyColors = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_DoughnutChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_SetFirstSliceAng:
|
|
this.firstSliceAng = data.newPr;
|
|
break;
|
|
case historyitem_DoughnutChart_SetHoleSize:
|
|
this.holeSize = data.newPr;
|
|
break;
|
|
case historyitem_DoughnutChart_AddSer:
|
|
if (isRealObject(data.ser)) {
|
|
this.series.push(data.ser);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_SetVaryColor:
|
|
this.varyColors = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_DoughnutChart_SetDLbls:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_SetFirstSliceAng:
|
|
case historyitem_DoughnutChart_SetHoleSize:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_AddSer:
|
|
w.WriteBool(isRealObject(data.ser));
|
|
if (isRealObject(data.ser)) {
|
|
w.WriteString2(data.ser.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_SetVaryColor:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_DoughnutChart_SetDLbls:
|
|
if (r.GetBool()) {
|
|
this.dLbls = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.dLbls = null;
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_SetFirstSliceAng:
|
|
if (r.GetBool()) {
|
|
this.firstSliceAng = r.GetLong();
|
|
} else {
|
|
this.firstSliceAng = null;
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_SetHoleSize:
|
|
if (r.GetBool()) {
|
|
this.holeSize = r.GetLong();
|
|
} else {
|
|
this.holeSize = null;
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_AddSer:
|
|
if (r.GetBool()) {
|
|
var ser = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_DoughnutChart_SetVaryColor:
|
|
if (r.GetBool()) {
|
|
this.varyColors = r.GetBool();
|
|
} else {
|
|
this.varyColors = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var ERR_BAR_TYPE_BOTH = 0;
|
|
var ERR_BAR_TYPE_MINUS = 1;
|
|
var ERR_BAR_TYPE_PLUS = 2;
|
|
var ERR_DIR_X = 0;
|
|
var ERR_DIR_Y = 1;
|
|
var ERR_VAL_TYPE_CUST = 0;
|
|
var ERR_VAL_TYPE_FIXED_VAL = 1;
|
|
var ERR_VAL_TYPE_PERCENTAGE = 2;
|
|
var ERR_VAL_TYPE_STD_DEV = 3;
|
|
var ERR_VAL_TYPE_STD_ERR = 4;
|
|
function CErrBars() {
|
|
this.errBarType = null;
|
|
this.errDir = null;
|
|
this.errValType = null;
|
|
this.minus = null;
|
|
this.noEndCap = null;
|
|
this.plus = null;
|
|
this.spPr = null;
|
|
this.val = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CErrBars.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CErrBars();
|
|
c.setErrBarType(this.errBarType);
|
|
c.setErrDir(this.errDir);
|
|
c.setErrValType(this.errValType);
|
|
if (this.minus) {
|
|
c.setMinus(this.minus.createDuplicate());
|
|
}
|
|
c.setNoEndCap(this.noEndCap);
|
|
if (this.plus) {
|
|
c.setPlus(this.plus.createDuplicate());
|
|
}
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
c.setVal(this.val);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_ErrBars;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setErrBarType: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ErrBars_SetErrBarType,
|
|
oldPr: this.errBarType,
|
|
newPr: pr
|
|
});
|
|
this.errBarType = pr;
|
|
},
|
|
setErrDir: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ErrBars_SetErrDir,
|
|
oldPr: this.errDir,
|
|
newPr: pr
|
|
});
|
|
this.errDir = pr;
|
|
},
|
|
setErrValType: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ErrBars_SetErrValType,
|
|
oldPr: this.errDir,
|
|
newPr: pr
|
|
});
|
|
this.errValType = pr;
|
|
},
|
|
setMinus: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ErrBars_SetMinus,
|
|
oldPr: this.minus,
|
|
newPr: pr
|
|
});
|
|
this.minus = pr;
|
|
},
|
|
setNoEndCap: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ErrBars_SetNoEndCap,
|
|
oldPr: this.noEndCap,
|
|
newPr: pr
|
|
});
|
|
this.noEndCap = pr;
|
|
},
|
|
setPlus: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ErrBars_SetPlus,
|
|
oldPr: this.plus,
|
|
newPr: pr
|
|
});
|
|
this.plus = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ErrBars_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ErrBars_SetVal,
|
|
oldPr: this.val,
|
|
newPr: pr
|
|
});
|
|
this.val = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_ErrBars_SetErrBarType:
|
|
this.errBarType = data.oldPr;
|
|
break;
|
|
case historyitem_ErrBars_SetErrDir:
|
|
this.errDir = data.oldPr;
|
|
break;
|
|
case historyitem_ErrBars_SetErrValType:
|
|
this.errValType = data.oldPr;
|
|
break;
|
|
case historyitem_ErrBars_SetMinus:
|
|
this.minus = data.oldPr;
|
|
break;
|
|
case historyitem_ErrBars_SetNoEndCap:
|
|
this.noEndCap = data.oldPr;
|
|
break;
|
|
case historyitem_ErrBars_SetPlus:
|
|
this.plus = data.oldPr;
|
|
break;
|
|
case historyitem_ErrBars_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_ErrBars_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_ErrBars_SetErrBarType:
|
|
this.errBarType = data.newPr;
|
|
break;
|
|
case historyitem_ErrBars_SetErrDir:
|
|
this.errDir = data.newPr;
|
|
break;
|
|
case historyitem_ErrBars_SetErrValType:
|
|
this.errValType = data.newPr;
|
|
break;
|
|
case historyitem_ErrBars_SetMinus:
|
|
this.minus = data.newPr;
|
|
break;
|
|
case historyitem_ErrBars_SetNoEndCap:
|
|
this.noEndCap = data.newPr;
|
|
break;
|
|
case historyitem_ErrBars_SetPlus:
|
|
this.plus = data.newPr;
|
|
break;
|
|
case historyitem_ErrBars_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_ErrBars_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_ErrBars_SetErrBarType:
|
|
case historyitem_ErrBars_SetErrDir:
|
|
case historyitem_ErrBars_SetErrValType:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetMinus:
|
|
case historyitem_ErrBars_SetPlus:
|
|
case historyitem_ErrBars_SetSpPr:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetNoEndCap:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetVal:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteDouble(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (data.Type) {
|
|
case historyitem_ErrBars_SetErrBarType:
|
|
if (r.GetBool()) {
|
|
this.errBarType = r.GetLong();
|
|
} else {
|
|
this.errBarType = null;
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetErrDir:
|
|
if (r.GetBool()) {
|
|
this.errDir = r.GetLong();
|
|
} else {
|
|
this.errDir = null;
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetErrValType:
|
|
if (r.GetBool()) {
|
|
this.errValType = r.GetLong();
|
|
} else {
|
|
this.errValType = null;
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetMinus:
|
|
if (r.GetBool()) {
|
|
this.minus = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.minus = null;
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetNoEndCap:
|
|
if (r.GetBool()) {
|
|
this.noEndCap = r.GetBool();
|
|
} else {
|
|
this.noEndCap = null;
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetPlus:
|
|
if (r.GetBool()) {
|
|
this.plus = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.plus = null;
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetSpPr:
|
|
if (r.GetBool()) {
|
|
this.spPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.spPr = null;
|
|
}
|
|
break;
|
|
case historyitem_ErrBars_SetVal:
|
|
if (r.GetBool()) {
|
|
this.val = r.GetDouble();
|
|
} else {
|
|
this.val = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var LAYOUT_TARGET_INNER = 0;
|
|
var LAYOUT_TARGET_OUTER = 1;
|
|
var LAYOUT_MODE_EDGE = 0;
|
|
var LAYOUT_MODE_FACTOR = 1;
|
|
function CLayout() {
|
|
this.h = null;
|
|
this.hMode = null;
|
|
this.layoutTarget = null;
|
|
this.w = null;
|
|
this.wMode = null;
|
|
this.x = null;
|
|
this.xMode = null;
|
|
this.y = null;
|
|
this.yMode = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CLayout.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Id);
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CLayout();
|
|
c.setH(this.h);
|
|
c.setHMode(this.hMode);
|
|
c.setLayoutTarget(this.layoutTarget);
|
|
c.setW(this.w);
|
|
c.setWMode(this.wMode);
|
|
c.setX(this.x);
|
|
c.setXMode(this.xMode);
|
|
c.setY(this.y);
|
|
c.setYMode(this.yMode);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_Layout;
|
|
},
|
|
setH: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Layout_SetH,
|
|
oldPr: this.h,
|
|
newPr: pr
|
|
});
|
|
this.h = pr;
|
|
},
|
|
setHMode: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Layout_SetHMode,
|
|
oldPr: this.hMode,
|
|
newPr: pr
|
|
});
|
|
this.hMode = pr;
|
|
},
|
|
setLayoutTarget: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Layout_SetLayoutTarget,
|
|
oldPr: this.layoutTarget,
|
|
newPr: pr
|
|
});
|
|
this.layoutTarget = pr;
|
|
},
|
|
setW: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Layout_SetW,
|
|
oldPr: this.w,
|
|
newPr: pr
|
|
});
|
|
this.w = pr;
|
|
},
|
|
setWMode: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Layout_SetWMode,
|
|
oldPr: this.wMode,
|
|
newPr: pr
|
|
});
|
|
this.wMode = pr;
|
|
},
|
|
setX: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Layout_SetX,
|
|
oldPr: this.x,
|
|
newPr: pr
|
|
});
|
|
this.x = pr;
|
|
},
|
|
setXMode: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Layout_SetXMode,
|
|
oldPr: this.xMode,
|
|
newPr: pr
|
|
});
|
|
this.xMode = pr;
|
|
},
|
|
setY: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Layout_SetY,
|
|
oldPr: this.y,
|
|
newPr: pr
|
|
});
|
|
this.y = pr;
|
|
},
|
|
setYMode: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Layout_SetYMode,
|
|
oldPr: this.yMode,
|
|
newPr: pr
|
|
});
|
|
this.yMode = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Layout_SetH:
|
|
this.h = data.oldPr;
|
|
break;
|
|
case historyitem_Layout_SetHMode:
|
|
this.hMode = data.oldPr;
|
|
break;
|
|
case historyitem_Layout_SetLayoutTarget:
|
|
this.layoutTarget = data.oldPr;
|
|
break;
|
|
case historyitem_Layout_SetW:
|
|
this.w = data.oldPr;
|
|
break;
|
|
case historyitem_Layout_SetWMode:
|
|
this.wMode = data.oldPr;
|
|
break;
|
|
case historyitem_Layout_SetX:
|
|
this.x = data.oldPr;
|
|
break;
|
|
case historyitem_Layout_SetXMode:
|
|
this.xMode = data.oldPr;
|
|
break;
|
|
case historyitem_Layout_SetY:
|
|
this.y = data.oldPr;
|
|
break;
|
|
case historyitem_Layout_SetYMode:
|
|
this.yMode = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Layout_SetH:
|
|
this.h = data.newPr;
|
|
break;
|
|
case historyitem_Layout_SetHMode:
|
|
this.hMode = data.newPr;
|
|
break;
|
|
case historyitem_Layout_SetLayoutTarget:
|
|
this.layoutTarget = data.newPr;
|
|
break;
|
|
case historyitem_Layout_SetW:
|
|
this.w = data.newPr;
|
|
break;
|
|
case historyitem_Layout_SetWMode:
|
|
this.wMode = data.newPr;
|
|
break;
|
|
case historyitem_Layout_SetX:
|
|
this.x = data.newPr;
|
|
break;
|
|
case historyitem_Layout_SetXMode:
|
|
this.xMode = data.newPr;
|
|
break;
|
|
case historyitem_Layout_SetY:
|
|
this.y = data.newPr;
|
|
break;
|
|
case historyitem_Layout_SetYMode:
|
|
this.yMode = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_Layout_SetH:
|
|
case historyitem_Layout_SetW:
|
|
case historyitem_Layout_SetX:
|
|
case historyitem_Layout_SetY:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteDouble(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_Layout_SetHMode:
|
|
case historyitem_Layout_SetWMode:
|
|
case historyitem_Layout_SetXMode:
|
|
case historyitem_Layout_SetYMode:
|
|
case historyitem_Layout_SetLayoutTarget:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
if (this.getObjectType() !== r.GetLong()) {
|
|
return;
|
|
}
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_Layout_SetH:
|
|
if (r.GetBool()) {
|
|
this.h = r.GetDouble();
|
|
} else {
|
|
this.h = null;
|
|
}
|
|
break;
|
|
case historyitem_Layout_SetHMode:
|
|
if (r.GetBool()) {
|
|
this.hMode = r.GetLong();
|
|
} else {
|
|
this.hMode = null;
|
|
}
|
|
break;
|
|
case historyitem_Layout_SetLayoutTarget:
|
|
if (r.GetBool()) {
|
|
this.layoutTarget = r.GetLong();
|
|
} else {
|
|
this.layoutTarget = null;
|
|
}
|
|
break;
|
|
case historyitem_Layout_SetW:
|
|
if (r.GetBool()) {
|
|
this.w = r.GetDouble();
|
|
} else {
|
|
this.w = null;
|
|
}
|
|
break;
|
|
case historyitem_Layout_SetWMode:
|
|
if (r.GetBool()) {
|
|
this.wMode = r.GetLong();
|
|
} else {
|
|
this.wMode = null;
|
|
}
|
|
break;
|
|
case historyitem_Layout_SetX:
|
|
if (r.GetBool()) {
|
|
this.x = r.GetDouble();
|
|
} else {
|
|
this.x = null;
|
|
}
|
|
break;
|
|
case historyitem_Layout_SetXMode:
|
|
if (r.GetBool()) {
|
|
this.xMode = r.GetLong();
|
|
} else {
|
|
this.xMode = null;
|
|
}
|
|
break;
|
|
case historyitem_Layout_SetY:
|
|
if (r.GetBool()) {
|
|
this.y = r.GetDouble();
|
|
} else {
|
|
this.y = null;
|
|
}
|
|
break;
|
|
case historyitem_Layout_SetYMode:
|
|
if (r.GetBool()) {
|
|
this.yMode = r.GetLong();
|
|
} else {
|
|
this.yMode = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var LEGEND_POS_L = 0;
|
|
var LEGEND_POS_T = 1;
|
|
var LEGEND_POS_R = 2;
|
|
var LEGEND_POS_B = 3;
|
|
var LEGEND_POS_TR = 4;
|
|
var LEGEND_POS_MAP = [];
|
|
LEGEND_POS_MAP[c_oAscChartLegendShowSettings.left] = LEGEND_POS_L;
|
|
LEGEND_POS_MAP[c_oAscChartLegendShowSettings.top] = LEGEND_POS_T;
|
|
LEGEND_POS_MAP[c_oAscChartLegendShowSettings.right] = LEGEND_POS_R;
|
|
LEGEND_POS_MAP[c_oAscChartLegendShowSettings.bottom] = LEGEND_POS_B;
|
|
LEGEND_POS_MAP[c_oAscChartLegendShowSettings.leftOverlay] = LEGEND_POS_L;
|
|
LEGEND_POS_MAP[c_oAscChartLegendShowSettings.rightOverlay] = LEGEND_POS_R;
|
|
var REV_LEGEND_POS_MAP = [];
|
|
REV_LEGEND_POS_MAP[LEGEND_POS_L] = c_oAscChartLegendShowSettings.left;
|
|
REV_LEGEND_POS_MAP[LEGEND_POS_T] = c_oAscChartLegendShowSettings.top;
|
|
REV_LEGEND_POS_MAP[LEGEND_POS_R] = c_oAscChartLegendShowSettings.right;
|
|
REV_LEGEND_POS_MAP[LEGEND_POS_B] = c_oAscChartLegendShowSettings.bottom;
|
|
REV_LEGEND_POS_MAP[LEGEND_POS_L] = c_oAscChartLegendShowSettings.leftOverlay;
|
|
REV_LEGEND_POS_MAP[LEGEND_POS_R] = c_oAscChartLegendShowSettings.rightOverlay;
|
|
function CLegend() {
|
|
this.layout = null;
|
|
this.legendEntryes = [];
|
|
this.legendPos = null;
|
|
this.overlay = null;
|
|
this.spPr = null;
|
|
this.txPr = null;
|
|
this.x = null;
|
|
this.y = null;
|
|
this.extX = null;
|
|
this.extY = null;
|
|
this.calcEntryes = [];
|
|
this.parent = null;
|
|
this.transform = new CMatrix();
|
|
this.localTransform = new CMatrix();
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CLegend.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CLegend();
|
|
if (this.layout) {
|
|
c.setLayout(this.layout.createDuplicate());
|
|
}
|
|
for (var i = 0; i < this.legendEntryes.length; ++i) {
|
|
c.addLegendEntry(this.legendEntryes[i].createDuplicate());
|
|
}
|
|
c.setLegendPos(this.legendPos);
|
|
c.setOverlay(this.overlay);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Id);
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
recalculatePen: CShape.prototype.recalculatePen,
|
|
recalculateBrush: CShape.prototype.recalculateBrush,
|
|
getCompiledStyle: function () {
|
|
return null;
|
|
},
|
|
getParentObjects: function () {
|
|
if (this.chart) {
|
|
return this.chart.getParentObjects();
|
|
} else {
|
|
return {};
|
|
}
|
|
},
|
|
getCompiledLine: CShape.prototype.getCompiledLine,
|
|
getCompiledFill: CShape.prototype.getCompiledFill,
|
|
getCompiledTransparent: CShape.prototype.getCompiledTransparent,
|
|
check_bounds: CShape.prototype.check_bounds,
|
|
getHierarchy: function () {
|
|
return this.chart ? this.chart.getHierarchy() : [];
|
|
},
|
|
isEmptyPlaceholder: function () {
|
|
return false;
|
|
},
|
|
isPlaceholder: function () {
|
|
return false;
|
|
},
|
|
draw: function (g) {
|
|
g.bDrawSmart = true;
|
|
CShape.prototype.draw.call(this, g);
|
|
for (var i = 0; i < this.calcEntryes.length; ++i) {
|
|
this.calcEntryes[i].draw(g);
|
|
}
|
|
g.bDrawSmart = false;
|
|
},
|
|
setPosition: function (x, y) {
|
|
this.x = x;
|
|
this.y = y;
|
|
this.localTransform.Reset();
|
|
global_MatrixTransformer.TranslateAppend(this.localTransform, this.x, this.y);
|
|
this.transform = this.localTransform.CreateDublicate();
|
|
var entry;
|
|
for (var i = 0; i < this.calcEntryes.length; ++i) {
|
|
entry = this.calcEntryes[i];
|
|
entry.localTransformText.Reset();
|
|
global_MatrixTransformer.TranslateAppend(entry.localTransformText, entry.localX, entry.localY);
|
|
global_MatrixTransformer.MultiplyAppend(entry.localTransformText, this.localTransform);
|
|
entry.transformText = entry.localTransformText.CreateDublicate();
|
|
if (entry.calcMarkerUnion.marker) {
|
|
entry.calcMarkerUnion.marker.localTransform.Reset();
|
|
global_MatrixTransformer.TranslateAppend(entry.calcMarkerUnion.marker.localTransform, entry.calcMarkerUnion.marker.localX, entry.calcMarkerUnion.marker.localY);
|
|
global_MatrixTransformer.MultiplyAppend(entry.calcMarkerUnion.marker.localTransform, this.localTransform);
|
|
entry.calcMarkerUnion.marker.transform = entry.calcMarkerUnion.marker.localTransform.CreateDublicate();
|
|
}
|
|
if (entry.calcMarkerUnion.lineMarker) {
|
|
entry.calcMarkerUnion.lineMarker.localTransform.Reset();
|
|
global_MatrixTransformer.TranslateAppend(entry.calcMarkerUnion.lineMarker.localTransform, entry.calcMarkerUnion.lineMarker.localX, entry.calcMarkerUnion.lineMarker.localY);
|
|
global_MatrixTransformer.MultiplyAppend(entry.calcMarkerUnion.lineMarker.localTransform, this.localTransform);
|
|
entry.calcMarkerUnion.lineMarker.transform = entry.calcMarkerUnion.lineMarker.localTransform.CreateDublicate();
|
|
}
|
|
}
|
|
},
|
|
updatePosition: function (x, y) {
|
|
this.posX = x;
|
|
this.posY = y;
|
|
this.transform = this.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transform, x, y);
|
|
var entry;
|
|
for (var i = 0; i < this.calcEntryes.length; ++i) {
|
|
entry = this.calcEntryes[i];
|
|
entry.transformText = entry.localTransformText.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(entry.transformText, x, y);
|
|
if (entry.calcMarkerUnion.marker) {
|
|
entry.calcMarkerUnion.marker.transform = entry.calcMarkerUnion.marker.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(entry.calcMarkerUnion.marker.transform, x, y);
|
|
}
|
|
if (entry.calcMarkerUnion.lineMarker) {
|
|
entry.calcMarkerUnion.lineMarker.transform = entry.calcMarkerUnion.lineMarker.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(entry.calcMarkerUnion.lineMarker.transform, x, y);
|
|
}
|
|
}
|
|
},
|
|
checkShapeChildTransform: function (t) {
|
|
this.transform = this.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transform, this.posX, this.posY);
|
|
global_MatrixTransformer.MultiplyAppend(this.transform, t);
|
|
var entry;
|
|
for (var i = 0; i < this.calcEntryes.length; ++i) {
|
|
entry = this.calcEntryes[i];
|
|
entry.transformText = entry.localTransformText.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(entry.transformText, this.posX, this.posY);
|
|
global_MatrixTransformer.MultiplyAppend(entry.transformText, t);
|
|
if (entry.calcMarkerUnion.marker) {
|
|
entry.calcMarkerUnion.marker.transform = entry.calcMarkerUnion.marker.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(entry.calcMarkerUnion.marker.transform, this.posX, this.posY);
|
|
global_MatrixTransformer.MultiplyAppend(entry.calcMarkerUnion.marker.transform, t);
|
|
}
|
|
if (entry.calcMarkerUnion.lineMarker) {
|
|
entry.calcMarkerUnion.lineMarker.transform = entry.calcMarkerUnion.lineMarker.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(entry.calcMarkerUnion.lineMarker.transform, this.posX, this.posY);
|
|
global_MatrixTransformer.MultiplyAppend(entry.calcMarkerUnion.lineMarker.transform, t);
|
|
}
|
|
}
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_Legend;
|
|
},
|
|
setLayout: function (layout) {
|
|
History.Add(this, {
|
|
Type: historyitem_Legend_SetLayout,
|
|
oldPr: this.layout,
|
|
newPr: layout
|
|
});
|
|
this.layout = layout;
|
|
},
|
|
addLegendEntry: function (legendEntry) {
|
|
History.Add(this, {
|
|
Type: historyitem_Legend_AddLegendEntry,
|
|
entry: legendEntry
|
|
});
|
|
this.legendEntryes.push(legendEntry);
|
|
},
|
|
setLegendPos: function (legendPos) {
|
|
History.Add(this, {
|
|
Type: historyitem_Legend_SetLegendPos,
|
|
oldPr: this.legendPos,
|
|
newPr: legendPos
|
|
});
|
|
this.legendPos = legendPos;
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setOverlay: function (overlay) {
|
|
History.Add(this, {
|
|
Type: historyitem_Legend_SetOverlay,
|
|
oldPr: this.overlay,
|
|
newPr: overlay
|
|
});
|
|
this.overlay = overlay;
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setSpPr: function (spPr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Legend_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: spPr
|
|
});
|
|
this.spPr = spPr;
|
|
},
|
|
setTxPr: function (txPr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Legend_SetTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: txPr
|
|
});
|
|
this.txPr = txPr;
|
|
},
|
|
findLegendEntryByIndex: function (idx) {
|
|
for (var i = 0; i < this.legendEntryes.length; ++i) {
|
|
if (this.legendEntryes[i].idx === idx) {
|
|
return this.legendEntryes[i];
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_Legend_SetLayout:
|
|
this.layout = data.oldPr;
|
|
break;
|
|
case historyitem_Legend_AddLegendEntry:
|
|
for (var i = this.legendEntryes.length; i > -1; --i) {
|
|
if (this.legendEntryes[i].Get_Id() === data.entry) {
|
|
this.legendEntryes.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetLegendPos:
|
|
this.legendPos = data.oldPr;
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetOverlay:
|
|
this.overlay = data.oldPr;
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_Legend_SetTxPr:
|
|
this.txPr = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_Legend_SetLayout:
|
|
this.layout = data.newPr;
|
|
break;
|
|
case historyitem_Legend_AddLegendEntry:
|
|
this.legendEntryes.push(data.entry);
|
|
break;
|
|
case historyitem_Legend_SetLegendPos:
|
|
this.legendPos = data.newPr;
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetOverlay:
|
|
this.overlay = data.newPr;
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_Legend_SetTxPr:
|
|
this.txPr = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_Legend_SetLayout:
|
|
case historyitem_Legend_SetSpPr:
|
|
case historyitem_Legend_SetTxPr:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_Legend_AddLegendEntry:
|
|
w.WriteBool(isRealObject(data.entry));
|
|
if (isRealObject(data.entry)) {
|
|
w.WriteString2(data.entry.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetLegendPos:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetOverlay:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
if (this.getObjectType() !== r.GetLong()) {
|
|
return;
|
|
}
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_Legend_SetLayout:
|
|
if (r.GetBool()) {
|
|
this.layout = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.layout = null;
|
|
}
|
|
break;
|
|
case historyitem_Legend_AddLegendEntry:
|
|
if (r.GetBool()) {
|
|
var entry = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(entry)) {
|
|
this.legendEntryes.push(entry);
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetLegendPos:
|
|
if (r.GetBool()) {
|
|
this.legendPos = r.GetLong();
|
|
} else {
|
|
this.legendPos = null;
|
|
}
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetOverlay:
|
|
if (r.GetBool()) {
|
|
this.overlay = r.GetBool();
|
|
} else {
|
|
this.overlay = null;
|
|
}
|
|
if (this.parent && this.parent.parent) {
|
|
this.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetSpPr:
|
|
if (r.GetBool()) {
|
|
this.spPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.spPr = null;
|
|
}
|
|
break;
|
|
case historyitem_Legend_SetTxPr:
|
|
if (r.GetBool()) {
|
|
this.txPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.txPr = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CLegendEntry() {
|
|
this.bDelete = null;
|
|
this.idx = null;
|
|
this.txPr = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CLegendEntry.prototype = {
|
|
getObjectType: function () {
|
|
return historyitem_type_LegendEntry;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CLegendEntry();
|
|
c.setDelete(this.bDelete);
|
|
c.setIdx(this.idx);
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Id);
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setDelete: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LegendEntry_SetDelete,
|
|
oldPr: this.bDelete,
|
|
newPr: pr
|
|
});
|
|
this.bDelete = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LegendEntry_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LegendEntry_SetTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_LegendEntry_SetDelete:
|
|
this.bDelete = data.oldPr;
|
|
break;
|
|
case historyitem_LegendEntry_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_LegendEntry_SetTxPr:
|
|
this.txPr = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_LegendEntry_SetDelete:
|
|
this.bDelete = data.newPr;
|
|
break;
|
|
case historyitem_LegendEntry_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_LegendEntry_SetTxPr:
|
|
this.txPr = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_LegendEntry_SetDelete:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_LegendEntry_SetIdx:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_LegendEntry_SetTxPr:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
if (this.getObjectType() !== r.GetLong()) {
|
|
return;
|
|
}
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_LegendEntry_SetDelete:
|
|
if (r.GetBool()) {
|
|
this.bDelete = r.GetBool();
|
|
} else {
|
|
this.bDelete = null;
|
|
}
|
|
break;
|
|
case historyitem_LegendEntry_SetIdx:
|
|
if (r.GetBool()) {
|
|
this.idx = r.GetLong();
|
|
} else {
|
|
this.idx = null;
|
|
}
|
|
break;
|
|
case historyitem_LegendEntry_SetTxPr:
|
|
if (r.GetBool()) {
|
|
this.txPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.txPr = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var GROUPING_PERCENT_STACKED = 0;
|
|
var GROUPING_STACKED = 1;
|
|
var GROUPING_STANDARD = 2;
|
|
function CLineChart() {
|
|
this.axId = [];
|
|
this.dLbls = null;
|
|
this.dropLines = null;
|
|
this.grouping = null;
|
|
this.hiLowLines = null;
|
|
this.marker = null;
|
|
this.series = [];
|
|
this.smooth = null;
|
|
this.upDownBars = null;
|
|
this.varyColors = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CLineChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
getSeriesConstructor: function () {
|
|
return new CLineSeries();
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_LineChart;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CLineChart();
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
if (this.dropLines) {
|
|
c.setDropLines(this.dropLines.createDuplicate());
|
|
}
|
|
c.setGrouping(this.grouping);
|
|
if (this.hiLowLines) {
|
|
c.setHiLowLines(this.hiLowLines.createDuplicate());
|
|
}
|
|
c.setMarker(this.marker);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
c.setSmooth(this.smooth);
|
|
if (this.upDownBars) {
|
|
c.setUpDownBars(this.upDownBars.createDuplicate());
|
|
}
|
|
c.setVaryColors(this.varyColors);
|
|
return c;
|
|
},
|
|
getAllRasterImages: function (images) {
|
|
CBarChart.prototype.getAllRasterImages.call(this, images);
|
|
if (this.upDownBars) {
|
|
this.upDownBars.upBars && this.upDownBars.upBars.checkBlipFillRasterImage(images);
|
|
this.upDownBars.downBars && this.upDownBars.downBars.checkBlipFillRasterImage(images);
|
|
}
|
|
},
|
|
checkSpPrRasterImages: function (images) {
|
|
CBarChart.prototype.checkSpPrRasterImages.call(this, images);
|
|
if (this.upDownBars) {
|
|
checkSpPrRasterImages(this.upDownBars.upBars);
|
|
checkSpPrRasterImages(this.upDownBars.downBars);
|
|
}
|
|
},
|
|
removeDataLabels: CBarChart.prototype.removeDataLabels,
|
|
getAxisByTypes: CPlotArea.prototype.getAxisByTypes,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setFromOtherChart: function (c) {
|
|
var i;
|
|
if (c.dLbls) {
|
|
this.setDLbls(c.dLbls);
|
|
}
|
|
if (c.dropLines) {
|
|
this.setDropLines(c.dropLines);
|
|
}
|
|
if (isRealNumber(c.grouping)) {
|
|
this.setGrouping(c.grouping);
|
|
}
|
|
if (c.hiLowLines) {
|
|
this.setHiLowLines(c.hiLowLines);
|
|
}
|
|
if (c.marker) {
|
|
this.setMarker(c.marker);
|
|
}
|
|
if (Array.isArray(c.series)) {
|
|
for (i = 0; i < c.series.length; ++i) {
|
|
var ser = new CLineSeries();
|
|
ser.setFromOtherSeries(c.series[i]);
|
|
this.addSer(ser);
|
|
}
|
|
}
|
|
if (isRealBool(c.smooth)) {
|
|
this.setSmooth(c.smooth);
|
|
}
|
|
if (isRealBool(c.varyColors)) {
|
|
this.setVaryColors(c.varyColors);
|
|
}
|
|
},
|
|
addAxId: function (pr) {
|
|
if (!pr) {
|
|
return;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_AddAxId,
|
|
newPr: pr
|
|
});
|
|
this.axId.push(pr);
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.dLbls) {
|
|
this.dLbls.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setDropLines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_SetDropLines,
|
|
oldPr: this.dropLines,
|
|
newPr: pr
|
|
});
|
|
this.dropLines = pr;
|
|
},
|
|
setGrouping: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_SetGrouping,
|
|
oldPr: this.grouping,
|
|
newPr: pr
|
|
});
|
|
this.grouping = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setHiLowLines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_SetHiLowLines,
|
|
oldPr: this.hiLowLines,
|
|
newPr: pr
|
|
});
|
|
this.hiLowLines = pr;
|
|
},
|
|
setMarker: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_SetMarker,
|
|
oldPr: this.marker,
|
|
newPr: pr
|
|
});
|
|
this.marker = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_AddSer,
|
|
newPr: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setSmooth: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_SetSmooth,
|
|
oldPr: this.smooth,
|
|
newPr: pr
|
|
});
|
|
this.smooth = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setUpDownBars: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_SetUpDownBars,
|
|
oldPr: this.upDownBars,
|
|
newPr: pr
|
|
});
|
|
this.upDownBars = pr;
|
|
if (pr && pr.setParent) {
|
|
pr.setParent(this);
|
|
}
|
|
},
|
|
setVaryColors: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineChart_SetVaryColors,
|
|
oldPr: this.varyColors,
|
|
newPr: pr
|
|
});
|
|
this.varyColors = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_LineChart_AddAxId:
|
|
for (var i = this.axId.length - 1; i > -1; --i) {
|
|
if (this.axId[i] === data.newPr) {
|
|
this.axId.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetDropLines:
|
|
this.dropLines = data.oldPr;
|
|
break;
|
|
case historyitem_LineChart_SetGrouping:
|
|
this.grouping = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetHiLowLines:
|
|
this.hiLowLines = data.oldPr;
|
|
break;
|
|
case historyitem_LineChart_SetMarker:
|
|
this.marker = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_AddSer:
|
|
for (var i = this.series.length - 1; i > -1; --i) {
|
|
if (this.series[i] === data.newPr) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetSmooth:
|
|
this.smooth = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetUpDownBars:
|
|
this.upDownBars = data.oldPr;
|
|
break;
|
|
case historyitem_LineChart_SetVaryColors:
|
|
this.varyColors = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_LineChart_AddAxId:
|
|
this.axId.push(data.newPr);
|
|
break;
|
|
case historyitem_LineChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetDropLines:
|
|
this.dropLines = data.newPr;
|
|
break;
|
|
case historyitem_LineChart_SetGrouping:
|
|
this.grouping = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetHiLowLines:
|
|
this.hiLowLines = data.newPr;
|
|
break;
|
|
case historyitem_LineChart_SetMarker:
|
|
this.marker = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_AddSer:
|
|
this.series.push(data.newPr);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetSmooth:
|
|
this.smooth = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetUpDownBars:
|
|
this.upDownBars = data.newPr;
|
|
break;
|
|
case historyitem_LineChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_LineChart_AddAxId:
|
|
case historyitem_LineChart_SetDLbls:
|
|
case historyitem_LineChart_SetDropLines:
|
|
case historyitem_LineChart_SetHiLowLines:
|
|
case historyitem_LineChart_AddSer:
|
|
case historyitem_LineChart_SetUpDownBars:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_LineChart_SetGrouping:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_LineChart_SetMarker:
|
|
case historyitem_LineChart_SetSmooth:
|
|
case historyitem_LineChart_SetVaryColors:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_LineChart_AddAxId:
|
|
var ax = readObject(r);
|
|
if (isRealObject(ax)) {
|
|
this.axId.push(ax);
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetDropLines:
|
|
this.dropLines = readObject(r);
|
|
break;
|
|
case historyitem_LineChart_SetGrouping:
|
|
this.grouping = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetHiLowLines:
|
|
this.hiLowLines = readObject(r);
|
|
break;
|
|
case historyitem_LineChart_SetMarker:
|
|
this.marker = readBool(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_AddSer:
|
|
var ser = readObject(r);
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetSmooth:
|
|
this.smooth = readBool(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_LineChart_SetUpDownBars:
|
|
this.upDownBars = readObject(r);
|
|
break;
|
|
case historyitem_LineChart_SetVaryColors:
|
|
this.varyColors = readBool(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CLineSeries() {
|
|
this.cat = null;
|
|
this.dLbls = null;
|
|
this.dPt = [];
|
|
this.errBars = null;
|
|
this.idx = null;
|
|
this.marker = null;
|
|
this.order = null;
|
|
this.smooth = null;
|
|
this.spPr = null;
|
|
this.trendline = null;
|
|
this.tx = null;
|
|
this.val = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CLineSeries.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
removeDPt: function (idx) {
|
|
if (this.dPt[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonSeries_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.dPt[idx]
|
|
});
|
|
this.dPt.splice(idx, 1);
|
|
}
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CLineSeries();
|
|
if (this.cat) {
|
|
c.setCat(this.cat.createDuplicate());
|
|
}
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
for (var i = 0; i < this.dPt.length; ++i) {
|
|
c.addDPt(this.dPt.createDuplicate());
|
|
}
|
|
if (this.errBars) {
|
|
c.setErrBars(this.errBars.createDuplicate());
|
|
}
|
|
c.setIdx(this.idx);
|
|
if (this.marker) {
|
|
c.setMarker(this.marker.createDuplicate());
|
|
}
|
|
c.setOrder(this.order);
|
|
c.setSmooth(this.smooth);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.trendline) {
|
|
c.setTrendline(this.trendline.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.val) {
|
|
c.setVal(this.val.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_LineSeries;
|
|
},
|
|
documentCreateFontMap: CAreaSeries.prototype.documentCreateFontMap,
|
|
getAllRasterImages: CAreaSeries.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CAreaSeries.prototype.checkSpPrRasterImages,
|
|
getSeriesName: CAreaSeries.prototype.getSeriesName,
|
|
getCatName: CAreaSeries.prototype.getCatName,
|
|
getValByIndex: CAreaSeries.prototype.getValByIndex,
|
|
getFormatCode: CAreaSeries.prototype.getFormatCode,
|
|
setFromOtherSeries: function (other) {
|
|
if (other.cat) {
|
|
this.setCat(other.cat);
|
|
}
|
|
if (other.dLbls) {
|
|
this.setDLbls(other.dLbls);
|
|
}
|
|
if (other.dPt) {
|
|
copyDPt(this, other.dPt);
|
|
}
|
|
if (other.errBars) {
|
|
this.setErrBars(other.errBars);
|
|
}
|
|
if (isRealNumber(other.idx)) {
|
|
this.setIdx(other.idx);
|
|
}
|
|
if (other.marker) {
|
|
this.setMarker(other.marker);
|
|
}
|
|
if (isRealNumber(other.order)) {
|
|
this.setOrder(other.order);
|
|
}
|
|
if (isRealBool(other.smooth)) {
|
|
this.setSmooth(other.smooth);
|
|
}
|
|
if (other.spPr) {
|
|
this.setSpPr(other.spPr);
|
|
}
|
|
if (other.trendline) {
|
|
this.setTrendline(other.trendline);
|
|
}
|
|
if (other.tx) {
|
|
this.setTx(other.tx);
|
|
}
|
|
if (other.val) {
|
|
this.setVal(other.val);
|
|
}
|
|
if (other.xVal) {
|
|
this.setCat(new CCat());
|
|
this.cat.setFromOtherObject(other.xVal);
|
|
}
|
|
if (other.yVal) {
|
|
this.setVal(new CYVal());
|
|
this.val.setFromOtherObject(other.yVal);
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
recalculateBrush: function () {},
|
|
setCat: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetCat,
|
|
oldPr: this.cat,
|
|
newPr: pr
|
|
});
|
|
this.cat = pr;
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
},
|
|
addDPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetDPt,
|
|
oldPr: this.dPt,
|
|
newPr: pr
|
|
});
|
|
this.dPt.push(pr);
|
|
},
|
|
setErrBars: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetErrBars,
|
|
oldPr: this.errBars,
|
|
newPr: pr
|
|
});
|
|
this.errBars = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setMarker: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetMarker,
|
|
oldPr: this.marker,
|
|
newPr: pr
|
|
});
|
|
this.marker = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setOrder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetOrder,
|
|
oldPr: this.order,
|
|
newPr: pr
|
|
});
|
|
this.order = pr;
|
|
},
|
|
setSmooth: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetSmooth,
|
|
oldPr: this.smooth,
|
|
newPr: pr
|
|
});
|
|
this.smooth = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
if (this.spPr && this.spPr.parent !== this) {
|
|
this.spPr.setParent(this);
|
|
}
|
|
},
|
|
setTrendline: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetTrendline,
|
|
oldPr: this.trendline,
|
|
newPr: pr
|
|
});
|
|
this.trendline = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetTx,
|
|
oldPr: this.tx,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_LineSeries_SetVal,
|
|
oldPr: this.val,
|
|
newPr: pr
|
|
});
|
|
this.val = pr;
|
|
if (this.val && this.val.setParent) {
|
|
this.val.setParent(this);
|
|
}
|
|
},
|
|
handleUpdateLn: function () {
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 0, data.pt);
|
|
break;
|
|
case historyitem_LineSeries_SetCat:
|
|
this.cat = data.oldPr;
|
|
break;
|
|
case historyitem_LineSeries_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
break;
|
|
case historyitem_LineSeries_SetDPt:
|
|
findPrAndRemove(this.dPt, data.newPr);
|
|
break;
|
|
case historyitem_LineSeries_SetErrBars:
|
|
this.errBars = data.oldPr;
|
|
break;
|
|
case historyitem_LineSeries_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_LineSeries_SetMarker:
|
|
this.marker = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_LineSeries_SetOrder:
|
|
this.order = data.oldPr;
|
|
break;
|
|
case historyitem_LineSeries_SetSmooth:
|
|
this.smooth = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_LineSeries_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_LineSeries_SetTrendline:
|
|
this.trendline = data.oldPr;
|
|
break;
|
|
case historyitem_LineSeries_SetTx:
|
|
this.tx = data.oldPr;
|
|
break;
|
|
case historyitem_LineSeries_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 1);
|
|
break;
|
|
case historyitem_LineSeries_SetCat:
|
|
this.cat = data.newPr;
|
|
break;
|
|
case historyitem_LineSeries_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
break;
|
|
case historyitem_LineSeries_SetDPt:
|
|
this.dPt.push(data.newPr);
|
|
break;
|
|
case historyitem_LineSeries_SetErrBars:
|
|
this.errBars = data.newPr;
|
|
break;
|
|
case historyitem_LineSeries_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_LineSeries_SetMarker:
|
|
this.marker = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_LineSeries_SetOrder:
|
|
this.order = data.newPr;
|
|
break;
|
|
case historyitem_LineSeries_SetSmooth:
|
|
this.smooth = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_LineSeries_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_LineSeries_SetTrendline:
|
|
this.trendline = data.newPr;
|
|
break;
|
|
case historyitem_LineSeries_SetTx:
|
|
this.tx = data.newPr;
|
|
break;
|
|
case historyitem_LineSeries_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_LineSeries_SetCat:
|
|
case historyitem_LineSeries_SetDLbls:
|
|
case historyitem_LineSeries_SetDPt:
|
|
case historyitem_LineSeries_SetErrBars:
|
|
case historyitem_LineSeries_SetMarker:
|
|
case historyitem_LineSeries_SetSpPr:
|
|
case historyitem_LineSeries_SetTrendline:
|
|
case historyitem_LineSeries_SetTx:
|
|
case historyitem_LineSeries_SetVal:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_LineSeries_SetIdx:
|
|
case historyitem_LineSeries_SetOrder:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_LineSeries_SetSmooth:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
writeLong(w, data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_LineSeries_SetCat:
|
|
this.cat = readObject(r);
|
|
break;
|
|
case historyitem_LineSeries_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
break;
|
|
case historyitem_LineSeries_SetDPt:
|
|
this.dPt.push(readObject(r));
|
|
break;
|
|
case historyitem_LineSeries_SetErrBars:
|
|
this.errBars = readObject(r);
|
|
break;
|
|
case historyitem_LineSeries_SetIdx:
|
|
this.idx = readLong(r);
|
|
break;
|
|
case historyitem_LineSeries_SetMarker:
|
|
this.marker = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_LineSeries_SetOrder:
|
|
this.order = readLong(r);
|
|
break;
|
|
case historyitem_LineSeries_SetSmooth:
|
|
this.smooth = readBool(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_LineSeries_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_LineSeries_SetTrendline:
|
|
this.trendline = readObject(r);
|
|
break;
|
|
case historyitem_LineSeries_SetTx:
|
|
this.tx = readObject(r);
|
|
break;
|
|
case historyitem_LineSeries_SetVal:
|
|
this.val = readObject(r);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
var pos = readLong(r);
|
|
if (isRealNumber(pos)) {
|
|
this.dPt.splice(pos, 1);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var SYMBOL_CIRCLE = 0;
|
|
var SYMBOL_DASH = 1;
|
|
var SYMBOL_DIAMOND = 2;
|
|
var SYMBOL_DOT = 3;
|
|
var SYMBOL_NONE = 4;
|
|
var SYMBOL_PICTURE = 5;
|
|
var SYMBOL_PLUS = 6;
|
|
var SYMBOL_SQUARE = 7;
|
|
var SYMBOL_STAR = 8;
|
|
var SYMBOL_TRIANGLE = 9;
|
|
var SYMBOL_X = 10;
|
|
var MARKER_SYMBOL_TYPE = [];
|
|
MARKER_SYMBOL_TYPE[0] = SYMBOL_DIAMOND;
|
|
MARKER_SYMBOL_TYPE[1] = SYMBOL_SQUARE;
|
|
MARKER_SYMBOL_TYPE[2] = SYMBOL_TRIANGLE;
|
|
MARKER_SYMBOL_TYPE[3] = SYMBOL_X;
|
|
MARKER_SYMBOL_TYPE[4] = SYMBOL_STAR;
|
|
MARKER_SYMBOL_TYPE[5] = SYMBOL_CIRCLE;
|
|
MARKER_SYMBOL_TYPE[6] = SYMBOL_PLUS;
|
|
MARKER_SYMBOL_TYPE[7] = SYMBOL_DOT;
|
|
MARKER_SYMBOL_TYPE[8] = SYMBOL_DASH;
|
|
function CMarker() {
|
|
this.size = null;
|
|
this.spPr = null;
|
|
this.symbol = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CMarker.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_Marker;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Id);
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
merge: function (otherMarker) {
|
|
if (isRealObject(otherMarker)) {
|
|
if (isRealNumber(otherMarker.size)) {
|
|
this.setSize(otherMarker.size);
|
|
}
|
|
if (isRealNumber(otherMarker.symbol)) {
|
|
this.setSymbol(otherMarker.symbol);
|
|
}
|
|
if (otherMarker.spPr && (otherMarker.spPr.Fill || otherMarker.spPr.ln)) {
|
|
if (!this.spPr) {
|
|
this.setSpPr(new CSpPr());
|
|
}
|
|
if (otherMarker.spPr.Fill) {
|
|
this.spPr.setFill(otherMarker.spPr.Fill.createDuplicate());
|
|
}
|
|
if (otherMarker.spPr.ln) {
|
|
if (!this.spPr.ln) {
|
|
this.spPr.setLn(new CLn());
|
|
}
|
|
this.spPr.ln.merge(otherMarker.spPr.ln);
|
|
}
|
|
}
|
|
}
|
|
return this;
|
|
},
|
|
createDuplicate: function () {
|
|
return (new CMarker()).merge(this);
|
|
},
|
|
setSize: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Marker_SetSize,
|
|
oldPr: this.size,
|
|
newPr: pr
|
|
});
|
|
this.size = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Marker_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setSymbol: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Marker_SetSymbol,
|
|
oldPr: this.symbol,
|
|
newPr: pr
|
|
});
|
|
this.symbol = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Marker_SetSize:
|
|
this.size = data.oldPr;
|
|
break;
|
|
case historyitem_Marker_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_Marker_SetSymbol:
|
|
this.symbol = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Marker_SetSize:
|
|
this.size = data.newPr;
|
|
break;
|
|
case historyitem_Marker_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_Marker_SetSymbol:
|
|
this.symbol = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_Marker_SetSize:
|
|
case historyitem_Marker_SetSymbol:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_Marker_SetSpPr:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_Marker_SetSize:
|
|
if (r.GetBool()) {
|
|
this.size = r.GetLong();
|
|
} else {
|
|
this.size = null;
|
|
}
|
|
break;
|
|
case historyitem_Marker_SetSpPr:
|
|
if (r.GetBool()) {
|
|
this.spPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.spPr = null;
|
|
}
|
|
break;
|
|
case historyitem_Marker_SetSymbol:
|
|
if (r.GetBool()) {
|
|
this.symbol = r.GetLong();
|
|
} else {
|
|
this.symbol = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CMinusPlus() {
|
|
this.numLit = null;
|
|
this.numRef = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CMinusPlus.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CMinusPlus();
|
|
if (this.numRef) {
|
|
c.setNumRef(this.numRef.createDuplicate());
|
|
}
|
|
if (this.numLit) {
|
|
c.setNumLit(this.numLit.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_MinusPlus;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setNumLit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_MinusPlus_SetnNumLit,
|
|
oldPr: this.numLit,
|
|
newPr: pr
|
|
});
|
|
this.numLit = pr;
|
|
},
|
|
setNumRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_MinusPlus_SetnNumRef,
|
|
oldPr: this.numRef,
|
|
newPr: pr
|
|
});
|
|
this.numRef = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_MinusPlus_SetnNumLit:
|
|
this.numLit = data.oldPr;
|
|
break;
|
|
case historyitem_MinusPlus_SetnNumRef:
|
|
this.numRef = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_MinusPlus_SetnNumLit:
|
|
this.numLit = data.newPr;
|
|
break;
|
|
case historyitem_MinusPlus_SetnNumRef:
|
|
this.numRef = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_MinusPlus_SetnNumLit:
|
|
case historyitem_MinusPlus_SetnNumRef:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_MinusPlus_SetnNumLit:
|
|
if (r.GetBool()) {
|
|
this.numLit = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.numLit = null;
|
|
}
|
|
break;
|
|
case historyitem_MinusPlus_SetnNumRef:
|
|
if (r.GetBool()) {
|
|
this.numRef = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.numRef = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CMultiLvlStrCache() {
|
|
this.lvl = [];
|
|
this.ptCount = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CMultiLvlStrCache.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CMultiLvlStrCache();
|
|
for (var i = 0; i < this.lvl.length; ++i) {
|
|
c.setLvl(this.lvl[i].createDuplicate());
|
|
}
|
|
c.setPtCount(this.ptCount);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_MultiLvlStrCache;
|
|
},
|
|
setLvl: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_MultiLvlStrCache_SetLvl,
|
|
newPr: pr,
|
|
oldPr: this.lvl.length
|
|
});
|
|
this.lvl.push(pr);
|
|
},
|
|
setPtCount: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_MultiLvlStrCache_SetPtCount,
|
|
newPr: pr,
|
|
oldPr: this.ptCount
|
|
});
|
|
this.ptCount = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_MultiLvlStrCache_SetLvl:
|
|
this.lvl.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_MultiLvlStrCache_SetPtCount:
|
|
this.ptCount = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_MultiLvlStrCache_SetLvl:
|
|
this.lvl.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_MultiLvlStrCache_SetPtCount:
|
|
this.ptCount = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_MultiLvlStrCache_SetLvl:
|
|
writeObject(w, data.newPr);
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_MultiLvlStrCache_SetPtCount:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_MultiLvlStrCache_SetLvl:
|
|
var str_pt = readObject(r);
|
|
var pos = readLong(r);
|
|
this.lvl.splice(pos, 0, str_pt);
|
|
break;
|
|
case historyitem_MultiLvlStrCache_SetPtCount:
|
|
this.ptCount = readLong(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CMultiLvlStrRef() {
|
|
this.f = null;
|
|
this.multiLvlStrCache = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CMultiLvlStrRef.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_MultiLvlStrRef;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CMultiLvlStrRef();
|
|
c.setF(this.f);
|
|
if (this.multiLvlStrCache) {
|
|
c.setMultiLvlStrCache(this.multiLvlStrCache.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
setF: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_MultiLvlStrRef_SetF,
|
|
oldPr: this.f,
|
|
newPr: pr
|
|
});
|
|
this.f = pr;
|
|
},
|
|
setMultiLvlStrCache: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_MultiLvlStrRef_SetMultiLvlStrCache,
|
|
oldPr: this.multiLvlStrCache,
|
|
newPr: pr
|
|
});
|
|
this.multiLvlStrCache = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_MultiLvlStrRef_SetF:
|
|
this.f = data.oldPr;
|
|
break;
|
|
case historyitem_MultiLvlStrRef_SetMultiLvlStrCache:
|
|
this.multiLvlStrCache = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_MultiLvlStrRef_SetF:
|
|
this.f = data.newPr;
|
|
break;
|
|
case historyitem_MultiLvlStrRef_SetMultiLvlStrCache:
|
|
this.multiLvlStrCache = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_MultiLvlStrRef_SetF:
|
|
writeString(w, data.newPr);
|
|
break;
|
|
case historyitem_MultiLvlStrRef_SetMultiLvlStrCache:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_MultiLvlStrRef_SetF:
|
|
this.f = readString(r);
|
|
break;
|
|
case historyitem_MultiLvlStrRef_SetMultiLvlStrCache:
|
|
this.multiLvlStrCache = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CNumRef() {
|
|
this.f = null;
|
|
this.numCache = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CNumRef.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function (data) {
|
|
if (data && data.Type === historyitem_NumRef_SetF && this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
this.parent.parent.parent.parent.parent.parent.recalcInfo.recalculateReferences = true;
|
|
this.parent.parent.parent.parent.parent.parent.addToRecalculate();
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CNumRef();
|
|
c.setF(this.f);
|
|
if (this.numCache) {
|
|
c.setNumCache(this.numCache.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_NumRef;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
setF: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_NumRef_SetF,
|
|
oldPr: this.f,
|
|
newPr: pr
|
|
});
|
|
this.f = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
if (this.parent.parent.parent.parent.parent.parent.bNoHandleRecalc === true) {
|
|
return;
|
|
}
|
|
this.parent.parent.parent.parent.parent.parent.recalcInfo.recalculateReferences = true;
|
|
this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setNumCache: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_NumRef_SetNumCache,
|
|
oldPr: this.numCache,
|
|
newPr: pr
|
|
});
|
|
this.numCache = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_NumRef_SetF:
|
|
this.f = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.parent.parent.recalcInfo.recalculateReferences = true;
|
|
this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_NumRef_SetNumCache:
|
|
this.numCache = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_NumRef_SetF:
|
|
this.f = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.parent.parent.recalcInfo.recalculateReferences = true;
|
|
this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_NumRef_SetNumCache:
|
|
this.numCache = data.newPr;
|
|
break;
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_NumRef_SetF:
|
|
writeString(w, data.newPr);
|
|
break;
|
|
case historyitem_NumRef_SetNumCache:
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_NumRef_SetF:
|
|
this.f = readString(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent && this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.parent.parent.recalcInfo.recalculateReferences = true;
|
|
this.parent.parent.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_NumRef_SetNumCache:
|
|
this.numCache = readObject(r);
|
|
break;
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CNumericPoint() {
|
|
this.formatCode = null;
|
|
this.idx = null;
|
|
this.val = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CNumericPoint.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CNumericPoint();
|
|
c.setFormatCode(this.formatCode);
|
|
c.setIdx(this.idx);
|
|
c.setVal(this.val);
|
|
return c;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_NumericPoint;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setFormatCode: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_NumericPoint_SetFormatCode,
|
|
oldPr: this.formatCode,
|
|
newPr: pr
|
|
});
|
|
this.formatCode = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_NumericPoint_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
var _pr = parseFloat(pr);
|
|
if (isNaN(_pr)) {
|
|
_pr = 0;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_NumericPoint_SetVal,
|
|
oldPr: this.val,
|
|
newPr: _pr
|
|
});
|
|
this.val = _pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_NumericPoint_SetFormatCode:
|
|
this.formatCode = data.oldPr;
|
|
break;
|
|
case historyitem_NumericPoint_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_NumericPoint_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_NumericPoint_SetFormatCode:
|
|
this.formatCode = data.newPr;
|
|
break;
|
|
case historyitem_NumericPoint_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_NumericPoint_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_NumericPoint_SetFormatCode:
|
|
w.WriteBool(typeof data.newPr === "string");
|
|
if (typeof data.newPr === "string") {
|
|
w.WriteString2(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_NumericPoint_SetIdx:
|
|
this.idx = data.newPr;
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_NumericPoint_SetVal:
|
|
writeString(w, data.newPr + "");
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_NumericPoint_SetFormatCode:
|
|
if (r.GetBool()) {
|
|
this.formatCode = r.GetString2();
|
|
} else {
|
|
this.formatCode = null;
|
|
}
|
|
break;
|
|
case historyitem_NumericPoint_SetIdx:
|
|
if (r.GetBool()) {
|
|
this.idx = r.GetLong();
|
|
} else {
|
|
this.idx = null;
|
|
}
|
|
break;
|
|
case historyitem_NumericPoint_SetVal:
|
|
this.val = parseFloat(readString(r));
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CNumFmt() {
|
|
this.formatCode = null;
|
|
this.sourceLinked = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CNumFmt.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CNumFmt();
|
|
c.setFormatCode(this.formatCode);
|
|
c.setSourceLinked(this.sourceLinked);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_NumFmt;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setFormatCode: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_NumFmt_SetFormatCode,
|
|
oldPr: this.formatCode,
|
|
newPr: pr
|
|
});
|
|
this.formatCode = pr;
|
|
},
|
|
setSourceLinked: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_NumFmt_SetSourceLinked,
|
|
oldPr: this.sourceLinked,
|
|
newPr: pr
|
|
});
|
|
this.sourceLinked = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_NumFmt_SetFormatCode:
|
|
this.formatCode = data.oldPr;
|
|
break;
|
|
case historyitem_NumFmt_SetSourceLinked:
|
|
this.sourceLinked = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_NumFmt_SetFormatCode:
|
|
this.formatCode = data.newPr;
|
|
break;
|
|
case historyitem_NumFmt_SetSourceLinked:
|
|
this.sourceLinked = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_NumFmt_SetFormatCode:
|
|
writeString(w, data.newPr);
|
|
break;
|
|
case historyitem_NumFmt_SetSourceLinked:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_NumFmt_SetFormatCode:
|
|
this.formatCode = readString(r);
|
|
break;
|
|
case historyitem_NumFmt_SetSourceLinked:
|
|
this.sourceLinked = readBool(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CNumLit() {
|
|
this.formatCode = null;
|
|
this.pts = [];
|
|
this.ptCount = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CNumLit.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeDPt: function (idx) {
|
|
if (this.pts[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonLit_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.pts[idx]
|
|
});
|
|
this.pts.splice(idx, 1);
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CNumLit();
|
|
c.setFormatCode(this.formatCode);
|
|
for (var i = 0; i < this.pts.length; ++i) {
|
|
c.addPt(this.pts[i].createDuplicate());
|
|
}
|
|
c.setPtCount(this.ptCount);
|
|
return c;
|
|
},
|
|
getPtByIndex: function (idx) {
|
|
for (var i = 0; i < this.pts.length; ++i) {
|
|
if (this.pts[i].idx === idx) {
|
|
return this.pts[i];
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_NumLit;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setFormatCode: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_NumLit_SetFormatCode,
|
|
oldPr: this.formatCode,
|
|
newPr: pr
|
|
});
|
|
this.formatCode = pr;
|
|
},
|
|
addPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_NumLit_AddPt,
|
|
pt: pr
|
|
});
|
|
this.pts.push(pr);
|
|
},
|
|
setPtCount: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_NumLit_SetPtCount,
|
|
oldPr: this.ptCount,
|
|
newPr: pr
|
|
});
|
|
this.ptCount = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_NumLit_SetFormatCode:
|
|
this.formatCode = data.oldPr;
|
|
break;
|
|
case historyitem_NumLit_AddPt:
|
|
for (var i = this.pts.length - 1; i > -1; --i) {
|
|
if (this.pts[i] === data.pt) {
|
|
this.pts.splice(i, 1);
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_NumLit_SetPtCount:
|
|
this.ptCount = data.oldPr;
|
|
break;
|
|
case historyitem_CommonLit_RemoveDPt:
|
|
this.pts.splice(data.idx, 0, data.pt);
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_NumLit_SetFormatCode:
|
|
this.formatCode = data.newPr;
|
|
break;
|
|
case historyitem_NumLit_AddPt:
|
|
this.pts.push(data.pt);
|
|
break;
|
|
case historyitem_NumLit_SetPtCount:
|
|
this.ptCount = data.newPr;
|
|
break;
|
|
case historyitem_CommonLit_RemoveDPt:
|
|
this.pts.splice(data.idx, 1);
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_NumLit_SetFormatCode:
|
|
writeString(w, data.newPr);
|
|
break;
|
|
case historyitem_NumLit_AddPt:
|
|
writeObject(w, data.pt);
|
|
break;
|
|
case historyitem_NumLit_SetPtCount:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonLit_RemoveDPt:
|
|
w.WriteLong(data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_NumLit_SetFormatCode:
|
|
this.formatCode = readString(r);
|
|
break;
|
|
case historyitem_NumLit_AddPt:
|
|
var pt = readObject(r);
|
|
if (isRealObject(pt)) {
|
|
this.pts.push(pt);
|
|
}
|
|
break;
|
|
case historyitem_NumLit_SetPtCount:
|
|
this.ptCount = readLong(r);
|
|
break;
|
|
case historyitem_CommonLit_RemoveDPt:
|
|
var idx = r.GetLong();
|
|
this.pts.splice(idx, 1);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var OF_PIE_TYPE_BAR = 0;
|
|
var OF_PIE_TYPE_PIE = 1;
|
|
var SPLIT_TYPE_AUTO = 0;
|
|
var SPLIT_TYPE_CUST = 1;
|
|
var SPLIT_TYPE_PERCENT = 2;
|
|
var SPLIT_TYPE_POS = 3;
|
|
var SPLIT_TYPE_VAL = 4;
|
|
function COfPieChart() {
|
|
this.custSplit = [];
|
|
this.dLbls = null;
|
|
this.gapWidth = null;
|
|
this.ofPieType = null;
|
|
this.secondPieSize = null;
|
|
this.series = [];
|
|
this.serLines = null;
|
|
this.splitPos = null;
|
|
this.splitType = null;
|
|
this.varyColors = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
COfPieChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
Refresh_RecalcData: function () {},
|
|
getSeriesConstructor: function () {
|
|
return new CPieSeries();
|
|
},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new COfPieChart(),
|
|
i;
|
|
for (i = 0; i < this.custSplit.length; ++i) {
|
|
c.addCustSplit(this.custSplit[i].createDuplicate());
|
|
}
|
|
if (this.dLbls) {
|
|
c.setDLbls((this.dLbls.createDuplicate()));
|
|
}
|
|
c.setGapWidth(this.gapWidth);
|
|
c.setOfPieType(this.ofPieType);
|
|
c.setSecondPieSize(this.secondPieSize);
|
|
for (i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
if (this.serLines) {
|
|
c.setSerLines(this.serLines.createDuplicate());
|
|
}
|
|
c.setSplitPos(this.splitPos);
|
|
c.setSplitType(this.splitType);
|
|
c.setVaryColors(this.varyColors);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_OfPieChart;
|
|
},
|
|
getAllRasterImages: function (images) {
|
|
CBarChart.prototype.getAllRasterImages.call(this, images);
|
|
if (this.serLines && this.serLines.spPr) {
|
|
this.serLines.spPr.checkBlipFillRasterImage(images);
|
|
}
|
|
},
|
|
checkSpPrRasterImages: function (images) {
|
|
CBarChart.prototype.checkSpPrRasterImages.call(this, images);
|
|
if (this.serLines && this.serLines.spPr) {
|
|
checkSpPrRasterImages(this.serLines.spPr);
|
|
}
|
|
},
|
|
removeDataLabels: CBarChart.prototype.removeDataLabels,
|
|
addCustSplit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_AddCustSplit,
|
|
nSplit: pr,
|
|
pos: this.custSplit.length
|
|
});
|
|
this.custSplit.push(pr);
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.dLbls) {
|
|
this.dLbls.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setGapWidth: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_SetGapWidth,
|
|
oldPr: this.gapWidth,
|
|
newPr: pr
|
|
});
|
|
this.gapWidth = pr;
|
|
},
|
|
setOfPieType: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_SetOfPieType,
|
|
oldPr: this.ofPieType,
|
|
newPr: pr
|
|
});
|
|
this.ofPieType = pr;
|
|
},
|
|
setSecondPieSize: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_SetSecondPieSize,
|
|
oldPr: this.secondPieSize,
|
|
newPr: pr
|
|
});
|
|
this.secondPieSize = pr;
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_AddSer,
|
|
ser: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setSerLines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_SetSerLines,
|
|
oldPr: this.serLines,
|
|
newPr: pr
|
|
});
|
|
this.serLines = pr;
|
|
},
|
|
setSplitPos: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_SetSplitPos,
|
|
oldPr: this.splitPos,
|
|
newPr: pr
|
|
});
|
|
this.splitPos = pr;
|
|
},
|
|
setSplitType: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_SetSplitType,
|
|
oldPr: this.splitType,
|
|
newPr: pr
|
|
});
|
|
this.splitType = pr;
|
|
},
|
|
setVaryColors: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_OfPieChart_SetVaryColors,
|
|
oldPr: this.varyColors,
|
|
newPr: pr
|
|
});
|
|
this.varyColors = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_OfPieChart_AddCustSplit:
|
|
if (this.custSplit[data.pos] === data.nSplit) {
|
|
this.custSplit.splice(data.pos, 1);
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetGapWidth:
|
|
this.gapWidth = data.oldPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetOfPieType:
|
|
this.ofPieType = data.oldPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetSecondPieSize:
|
|
this.secondPieSize = data.oldPr;
|
|
break;
|
|
case historyitem_OfPieChart_AddSer:
|
|
for (var i = this.series.length - 1; i > -1; --i) {
|
|
if (this.series[i] === data.ser) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetSerLines:
|
|
this.serLines = data.oldPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetSplitPos:
|
|
this.splitPos = data.oldPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetSplitType:
|
|
this.splitType = data.oldPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetVaryColors:
|
|
this.varyColors = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_OfPieChart_AddCustSplit:
|
|
this.custSplit.splice(data.pos, data.nSplit);
|
|
break;
|
|
case historyitem_OfPieChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetGapWidth:
|
|
this.gapWidth = data.newPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetOfPieType:
|
|
this.ofPieType = data.newPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetSecondPieSize:
|
|
this.secondPieSize = data.newPr;
|
|
break;
|
|
case historyitem_OfPieChart_AddSer:
|
|
if (isRealObject(data.ser)) {
|
|
this.series.push(data.ser);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetSerLines:
|
|
this.serLines = data.newPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetSplitPos:
|
|
this.splitPos = data.newPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetSplitType:
|
|
this.splitType = data.newPr;
|
|
break;
|
|
case historyitem_OfPieChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_OfPieChart_AddCustSplit:
|
|
w.WriteBool(isRealNumber(data.pos) && isRealNumber(data.nSplit));
|
|
if (isRealNumber(data.pos) && isRealNumber(data.nSplit)) {
|
|
w.WriteLong(data.pos);
|
|
w.WriteLong(data.nSplit);
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetDLbls:
|
|
case historyitem_OfPieChart_SetSerLines:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetGapWidth:
|
|
case historyitem_OfPieChart_SetOfPieType:
|
|
case historyitem_OfPieChart_SetSecondPieSize:
|
|
case historyitem_OfPieChart_SetSplitType:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_AddSer:
|
|
w.WriteBool(isRealObject(data.ser));
|
|
if (isRealObject(data.ser)) {
|
|
w.WriteString2(data.ser.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetSplitPos:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteDouble(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetVaryColors:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_OfPieChart_AddCustSplit:
|
|
if (r.GetBool()) {
|
|
var pos = r.GetLong();
|
|
var nSplit = r.GetLong();
|
|
this.custSplit.splice(pos, nSplit);
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetDLbls:
|
|
if (r.GetBool()) {
|
|
this.dLbls = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.dLbls = null;
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetGapWidth:
|
|
if (r.GetBool()) {
|
|
this.gapWidth = r.GetLong();
|
|
} else {
|
|
this.gapWidth = null;
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetOfPieType:
|
|
if (r.GetBool()) {
|
|
this.ofPieType = r.GetLong();
|
|
} else {
|
|
this.ofPieType = null;
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetSecondPieSize:
|
|
if (r.GetBool()) {
|
|
this.secondPieSize = r.GetLong();
|
|
} else {
|
|
this.secondPieSize = null;
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_AddSer:
|
|
if (r.GetBool()) {
|
|
var ser = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetSerLines:
|
|
if (r.GetBool()) {
|
|
this.serLines = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.serLines = null;
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetSplitPos:
|
|
if (r.GetBool()) {
|
|
this.splitPos = r.GetDouble();
|
|
} else {
|
|
this.splitPos = null;
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetSplitType:
|
|
if (r.GetBool()) {
|
|
this.splitType = r.GetLong();
|
|
} else {
|
|
this.splitType = null;
|
|
}
|
|
break;
|
|
case historyitem_OfPieChart_SetVaryColors:
|
|
if (r.GetBool()) {
|
|
this.varyColors = r.GetBool();
|
|
} else {
|
|
this.varyColors = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var PICTURE_FORMAT_STACK = 0;
|
|
var PICTURE_FORMAT_STACK_SCALE = 1;
|
|
var PICTURE_FORMAT_STACK_STRETCH = 2;
|
|
function CPictureOptions() {
|
|
this.applyToEnd = null;
|
|
this.applyToFront = null;
|
|
this.applyToSides = null;
|
|
this.pictureFormat = null;
|
|
this.pictureStackUnit = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CPictureOptions.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CPictureOptions();
|
|
c.setApplyToEnd(this.applyToEnd);
|
|
c.setApplyToFront(this.applyToFront);
|
|
c.setApplyToSides(this.applyToSides);
|
|
c.setPictureFormat(this.pictureFormat);
|
|
c.setPictureStackUnit(this.pictureStackUnit);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_PictureOptions;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setApplyToEnd: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PictureOptions_SetApplyToEnd,
|
|
oldPr: this.applyToEnd,
|
|
newPr: pr
|
|
});
|
|
this.applyToEnd = pr;
|
|
},
|
|
setApplyToFront: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PictureOptions_SetApplyToFront,
|
|
oldPr: this.applyToFront,
|
|
newPr: pr
|
|
});
|
|
this.applyToFront = pr;
|
|
},
|
|
setApplyToSides: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PictureOptions_SetApplyToSides,
|
|
oldPr: this.applyToSides,
|
|
newPr: pr
|
|
});
|
|
this.applyToSides = pr;
|
|
},
|
|
setPictureFormat: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PictureOptions_SetPictureFormat,
|
|
oldPr: this.pictureFormat,
|
|
newPr: pr
|
|
});
|
|
this.pictureFormat = pr;
|
|
},
|
|
setPictureStackUnit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PictureOptions_SetPictureStackUnit,
|
|
oldPr: this.pictureStackUnit,
|
|
newPr: pr
|
|
});
|
|
this.pictureStackUnit = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_PictureOptions_SetApplyToEnd:
|
|
this.applyToEnd = data.oldPr;
|
|
break;
|
|
case historyitem_PictureOptions_SetApplyToFront:
|
|
this.applyToFront = data.oldPr;
|
|
break;
|
|
case historyitem_PictureOptions_SetApplyToSides:
|
|
this.applyToSides = data.oldPr;
|
|
break;
|
|
case historyitem_PictureOptions_SetPictureFormat:
|
|
this.pictureFormat = data.oldPr;
|
|
break;
|
|
case historyitem_PictureOptions_SetPictureStackUnit:
|
|
this.pictureStackUnit = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_PictureOptions_SetApplyToEnd:
|
|
this.applyToEnd = data.newPr;
|
|
break;
|
|
case historyitem_PictureOptions_SetApplyToFront:
|
|
this.applyToFront = data.newPr;
|
|
break;
|
|
case historyitem_PictureOptions_SetApplyToSides:
|
|
this.applyToSides = data.newPr;
|
|
break;
|
|
case historyitem_PictureOptions_SetPictureFormat:
|
|
this.pictureFormat = data.newPr;
|
|
break;
|
|
case historyitem_PictureOptions_SetPictureStackUnit:
|
|
this.pictureStackUnit = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_PictureOptions_SetApplyToEnd:
|
|
case historyitem_PictureOptions_SetApplyToFront:
|
|
case historyitem_PictureOptions_SetApplyToSides:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_PictureOptions_SetPictureFormat:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_PictureOptions_SetPictureStackUnit:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_PictureOptions_SetApplyToEnd:
|
|
this.applyToEnd = readBool(r);
|
|
break;
|
|
case historyitem_PictureOptions_SetApplyToFront:
|
|
this.applyToFront = readBool(r);
|
|
break;
|
|
case historyitem_PictureOptions_SetApplyToSides:
|
|
this.applyToSides = readBool(r);
|
|
break;
|
|
case historyitem_PictureOptions_SetPictureFormat:
|
|
this.pictureFormat = readLong(r);
|
|
break;
|
|
case historyitem_PictureOptions_SetPictureStackUnit:
|
|
this.pictureStackUnit = readDouble(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CPieChart() {
|
|
this.dLbls = null;
|
|
this.firstSliceAng = null;
|
|
this.series = [];
|
|
this.varyColors = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CPieChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
getSeriesConstructor: function () {
|
|
return new CPieSeries();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CPieChart();
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
c.setFirstSliceAng(this.firstSliceAng);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
c.setVaryColors(this.varyColors);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_PieChart;
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
getAllRasterImages: CBarChart.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CBarChart.prototype.checkSpPrRasterImages,
|
|
removeDataLabels: CBarChart.prototype.removeDataLabels,
|
|
setFromOtherChart: function (c) {
|
|
var i;
|
|
if (c.dLbls) {
|
|
this.setDLbls(c.dLbls);
|
|
}
|
|
if (isRealNumber(c.firstSliceAng)) {
|
|
this.setFirstSliceAng(c.firstSliceAng);
|
|
}
|
|
if (Array.isArray(c.series)) {
|
|
for (i = 0; i < c.series.length; ++i) {
|
|
var ser = new CPieSeries();
|
|
ser.setFromOtherSeries(c.series[i]);
|
|
this.addSer(ser);
|
|
}
|
|
}
|
|
if (isRealBool(c.varyColors)) {
|
|
this.setVaryColors(c.varyColors);
|
|
}
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.dLbls) {
|
|
this.dLbls.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setFirstSliceAng: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieChart_SetFirstSliceAng,
|
|
oldPr: this.firstSliceAng,
|
|
newPr: pr
|
|
});
|
|
this.firstSliceAng = pr;
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieChart_AddSer,
|
|
ser: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setVaryColors: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieChart_SetVaryColors,
|
|
oldPr: this.varyColors,
|
|
newPr: pr
|
|
});
|
|
this.varyColors = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_PieChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_PieChart_SetFirstSliceAng:
|
|
this.firstSliceAng = data.oldPr;
|
|
break;
|
|
case historyitem_PieChart_AddSer:
|
|
for (var i = this.series.length; i > -1; --i) {
|
|
if (this.series[i] === data.ser) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_PieChart_SetVaryColors:
|
|
this.varyColors = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_PieChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_PieChart_SetFirstSliceAng:
|
|
this.firstSliceAng = data.newPr;
|
|
break;
|
|
case historyitem_PieChart_AddSer:
|
|
this.series.push(data.ser);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_PieChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_PieChart_SetDLbls:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_PieChart_SetFirstSliceAng:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_PieChart_AddSer:
|
|
w.WriteBool(isRealObject(data.ser));
|
|
if (isRealObject(data.ser)) {
|
|
w.WriteString2(data.ser.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_PieChart_SetVaryColors:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_PieChart_SetDLbls:
|
|
if (r.GetBool()) {
|
|
this.dLbls = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.dLbls = null;
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_PieChart_SetFirstSliceAng:
|
|
if (r.GetBool()) {
|
|
this.firstSliceAng = r.GetLong();
|
|
} else {
|
|
this.firstSliceAng = null;
|
|
}
|
|
break;
|
|
case historyitem_PieChart_AddSer:
|
|
if (r.GetBool()) {
|
|
var ser = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_PieChart_SetVaryColors:
|
|
if (r.GetBool()) {
|
|
this.varyColors = r.GetBool();
|
|
} else {
|
|
this.varyColors = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CPieSeries() {
|
|
this.cat = null;
|
|
this.dLbls = null;
|
|
this.dPt = [];
|
|
this.explosion = null;
|
|
this.idx = null;
|
|
this.order = null;
|
|
this.spPr = null;
|
|
this.tx = null;
|
|
this.val = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CPieSeries.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeDPt: function (idx) {
|
|
if (this.dPt[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonSeries_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.dPt[idx]
|
|
});
|
|
this.dPt.splice(idx, 1);
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CPieSeries();
|
|
if (this.cat) {
|
|
c.setCat(this.cat.createDuplicate());
|
|
}
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
for (var i = 0; i < this.dPt.length; ++i) {
|
|
c.addDPt(this.dPt[i].createDuplicate());
|
|
}
|
|
c.setExplosion(this.explosion);
|
|
c.setIdx(this.idx);
|
|
c.setOrder(this.order);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.val) {
|
|
c.setVal(this.val.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_PieSeries;
|
|
},
|
|
documentCreateFontMap: CAreaSeries.prototype.documentCreateFontMap,
|
|
getAllRasterImages: CAreaSeries.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CAreaSeries.prototype.checkSpPrRasterImages,
|
|
setFromOtherSeries: function (o) {
|
|
if (o.cat) {
|
|
this.setCat(o.cat);
|
|
}
|
|
if (o.dLbls) {
|
|
this.setDLbls(o.dLbls);
|
|
}
|
|
if (o.dPt) {
|
|
for (var i = 0; i < o.dPt.length; ++i) {
|
|
this.addDPt(o.dPt[i]);
|
|
}
|
|
}
|
|
if (o.explosion) {
|
|
this.setExplosion(o.explosion);
|
|
}
|
|
if (isRealNumber(o.idx)) {
|
|
this.setIdx(o.idx);
|
|
}
|
|
if (o.order) {
|
|
this.setOrder(o.order);
|
|
}
|
|
if (o.spPr) {
|
|
this.setSpPr(o.spPr);
|
|
}
|
|
if (o.tx) {
|
|
this.setTx(o.tx);
|
|
}
|
|
if (o.val) {
|
|
this.setVal(o.val);
|
|
}
|
|
if (o.xVal) {
|
|
this.setCat(new CCat());
|
|
this.cat.setFromOtherObject(o.xVal);
|
|
}
|
|
if (o.yVal) {
|
|
this.setVal(new CYVal());
|
|
this.val.setFromOtherObject(o.yVal);
|
|
}
|
|
},
|
|
getSeriesName: CAreaSeries.prototype.getSeriesName,
|
|
getCatName: CAreaSeries.prototype.getCatName,
|
|
getValByIndex: CAreaSeries.prototype.getValByIndex,
|
|
getFormatCode: CAreaSeries.prototype.getFormatCode,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setCat: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieSeries_SetCat,
|
|
oldPr: this.cat,
|
|
newPr: pr
|
|
});
|
|
this.cat = pr;
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieSeries_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
},
|
|
addDPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieSeries_SetDPt,
|
|
oldPr: this.dPt,
|
|
newPr: pr
|
|
});
|
|
this.dPt.push(pr);
|
|
},
|
|
setExplosion: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieSeries_SetExplosion,
|
|
oldPr: this.explosion,
|
|
newPr: pr
|
|
});
|
|
this.explosion = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieSeries_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setOrder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieSeries_SetOrder,
|
|
oldPr: this.order,
|
|
newPr: pr
|
|
});
|
|
this.order = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieSeries_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieSeries_SetTx,
|
|
oldPr: this.tx,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PieSeries_SetVal,
|
|
oldPr: this.val,
|
|
newPr: pr
|
|
});
|
|
this.val = pr;
|
|
if (this.val && this.val.setParent) {
|
|
this.val.setParent(this);
|
|
}
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 0, data.pt);
|
|
break;
|
|
case historyitem_PieSeries_SetCat:
|
|
this.cat = data.oldPr;
|
|
break;
|
|
case historyitem_PieSeries_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
break;
|
|
case historyitem_PieSeries_SetDPt:
|
|
findPrAndRemove(this.dPt, data.newPr);
|
|
break;
|
|
case historyitem_PieSeries_SetExplosion:
|
|
this.explosion = data.oldPr;
|
|
break;
|
|
case historyitem_PieSeries_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_PieSeries_SetOrder:
|
|
this.order = data.oldPr;
|
|
break;
|
|
case historyitem_PieSeries_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_PieSeries_SetTx:
|
|
this.tx = data.oldPr;
|
|
break;
|
|
case historyitem_PieSeries_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 1);
|
|
break;
|
|
case historyitem_PieSeries_SetCat:
|
|
this.cat = data.newPr;
|
|
break;
|
|
case historyitem_PieSeries_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
break;
|
|
case historyitem_PieSeries_SetDPt:
|
|
this.dPt.push(data.newPr);
|
|
break;
|
|
case historyitem_PieSeries_SetExplosion:
|
|
this.explosion = data.newPr;
|
|
break;
|
|
case historyitem_PieSeries_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_PieSeries_SetOrder:
|
|
this.order = data.newPr;
|
|
break;
|
|
case historyitem_PieSeries_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_PieSeries_SetTx:
|
|
this.tx = data.newPr;
|
|
break;
|
|
case historyitem_PieSeries_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_PieSeries_SetCat:
|
|
case historyitem_PieSeries_SetDLbls:
|
|
case historyitem_PieSeries_SetDPt:
|
|
case historyitem_PieSeries_SetSpPr:
|
|
case historyitem_PieSeries_SetTx:
|
|
case historyitem_PieSeries_SetVal:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_PieSeries_SetExplosion:
|
|
case historyitem_PieSeries_SetIdx:
|
|
case historyitem_PieSeries_SetOrder:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
writeLong(w, data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
var pos = readLong(r);
|
|
if (isRealNumber(pos)) {
|
|
this.dPt.splice(pos, 1);
|
|
}
|
|
break;
|
|
case historyitem_PieSeries_SetCat:
|
|
this.cat = readObject(r);
|
|
break;
|
|
case historyitem_PieSeries_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
break;
|
|
case historyitem_PieSeries_SetDPt:
|
|
this.dPt.push(readObject(r));
|
|
break;
|
|
case historyitem_PieSeries_SetExplosion:
|
|
this.explosion = readLong(r);
|
|
break;
|
|
case historyitem_PieSeries_SetIdx:
|
|
this.idx = readLong(r);
|
|
break;
|
|
case historyitem_PieSeries_SetOrder:
|
|
this.order = readLong(r);
|
|
break;
|
|
case historyitem_PieSeries_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_PieSeries_SetTx:
|
|
this.tx = readObject(r);
|
|
break;
|
|
case historyitem_PieSeries_SetVal:
|
|
this.val = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CPivotFmt() {
|
|
this.dLbl = null;
|
|
this.idx = null;
|
|
this.marker = null;
|
|
this.spPr = null;
|
|
this.txPr = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CPivotFmt.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CPivotFmt();
|
|
if (this.dLbl) {
|
|
c.setLbl(this.dLbl.createDuplicate());
|
|
}
|
|
c.setIdx(this.idx);
|
|
if (this.marker) {
|
|
c.setMarker(this.marker.createDuplicate());
|
|
}
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_PivotFmt;
|
|
},
|
|
setLbl: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PivotFmt_SetDLbl,
|
|
oldPr: this.dLbl,
|
|
newPr: pr
|
|
});
|
|
this.dLbl = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PivotFmt_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setMarker: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PivotFmt_SetMarker,
|
|
oldPr: this.marker,
|
|
newPr: pr
|
|
});
|
|
this.marker = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PivotFmt_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_PivotFmt_SetTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_PivotFmt_SetDLbl:
|
|
this.dLbl = data.oldPr;
|
|
break;
|
|
case historyitem_PivotFmt_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_PivotFmt_SetMarker:
|
|
this.marker = data.oldPr;
|
|
break;
|
|
case historyitem_PivotFmt_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_PivotFmt_SetTxPr:
|
|
this.txPr = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_PivotFmt_SetDLbl:
|
|
this.dLbl = data.newPr;
|
|
break;
|
|
case historyitem_PivotFmt_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_PivotFmt_SetMarker:
|
|
this.marker = data.newPr;
|
|
break;
|
|
case historyitem_PivotFmt_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_PivotFmt_SetTxPr:
|
|
this.txPr = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_PivotFmt_SetDLbl:
|
|
case historyitem_PivotFmt_SetMarker:
|
|
case historyitem_PivotFmt_SetSpPr:
|
|
case historyitem_PivotFmt_SetTxPr:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_PivotFmt_SetIdx:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_PivotFmt_SetDLbl:
|
|
if (r.GetBool()) {
|
|
this.dLbl = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.dLbl = null;
|
|
}
|
|
break;
|
|
case historyitem_PivotFmt_SetIdx:
|
|
if (r.GetBool()) {
|
|
this.idx = r.GetLong();
|
|
} else {
|
|
this.idx = null;
|
|
}
|
|
break;
|
|
case historyitem_PivotFmt_SetMarker:
|
|
if (r.GetBool()) {
|
|
this.marker = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.marker = null;
|
|
}
|
|
break;
|
|
case historyitem_PivotFmt_SetSpPr:
|
|
if (r.GetBool()) {
|
|
this.spPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.spPr = null;
|
|
}
|
|
break;
|
|
case historyitem_PivotFmt_SetTxPr:
|
|
if (r.GetBool()) {
|
|
this.txPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.txPr = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var RADAR_STYLE_STANDARD = 0;
|
|
var RADAR_STYLE_MARKER = 1;
|
|
var RADAR_STYLE_FILLED = 2;
|
|
function CRadarChart() {
|
|
this.axId = [];
|
|
this.dLbls = null;
|
|
this.radarStyle = null;
|
|
this.series = [];
|
|
this.varyColors = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CRadarChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
getSeriesConstructor: function () {
|
|
return new CRadarSeries();
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CRadarChart();
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
c.setRadarStyle(this.radarStyle);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
c.setVaryColors(this.varyColors);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_RadarChart;
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
removeDataLabels: CBarChart.prototype.removeDataLabels,
|
|
getAllRasterImages: CBarChart.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CBarChart.prototype.checkSpPrRasterImages,
|
|
getAxisByTypes: CPlotArea.prototype.getAxisByTypes,
|
|
addAxId: function (pr) {
|
|
if (!pr) {
|
|
return;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_RadarChart_AddAxId,
|
|
newPr: pr
|
|
});
|
|
this.axId.push(pr);
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.dLbls) {
|
|
this.dLbls.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setRadarStyle: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarChart_SetRadarStyle,
|
|
oldPr: this.radarStyle,
|
|
newPr: pr
|
|
});
|
|
this.radarStyle = pr;
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarChart_AddSer,
|
|
ser: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setVaryColors: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarChart_SetVaryColors,
|
|
oldPr: this.varyColors,
|
|
newPr: pr
|
|
});
|
|
this.varyColors = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_RadarChart_AddAxId:
|
|
for (var i = this.axId.length - 1; i > -1; --i) {
|
|
if (this.axId[i] === data.newPr) {
|
|
this.axId.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_SetRadarStyle:
|
|
this.radarStyle = data.oldPr;
|
|
break;
|
|
case historyitem_RadarChart_AddSer:
|
|
for (var i = this.series.length; i > -1; --i) {
|
|
if (this.series[i] === data.ser) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_SetVaryColors:
|
|
this.varyColors = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_RadarChart_AddAxId:
|
|
this.axId.push(data.newPr);
|
|
break;
|
|
case historyitem_RadarChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_SetRadarStyle:
|
|
this.radarStyle = data.newPr;
|
|
break;
|
|
case historyitem_RadarChart_AddSer:
|
|
this.series.push(data.ser);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_RadarChart_AddAxId:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_RadarChart_SetDLbls:
|
|
case historyitem_RadarChart_SetRadarStyle:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_AddSer:
|
|
w.WriteBool(isRealObject(data.ser));
|
|
if (isRealObject(data.ser)) {
|
|
w.WriteString2(data.ser.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_RadarChart_AddAxId:
|
|
var axis = readObject(r);
|
|
if (axis) {
|
|
this.axId.push(axis);
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_SetDLbls:
|
|
if (r.GetBool()) {
|
|
this.dLbls = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.dLbls = null;
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_SetRadarStyle:
|
|
if (r.GetBool()) {
|
|
this.radarStyle = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.radarStyle = null;
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_AddSer:
|
|
if (r.GetBool()) {
|
|
var ser = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_RadarChart_SetVaryColors:
|
|
if (r.GetBool()) {
|
|
this.varyColors = r.GetBool();
|
|
} else {
|
|
this.varyColors = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function copyDPt(oThis, pt) {
|
|
for (var i = 0; i < pt.length; ++i) {
|
|
oThis.addDPt(pt[i]);
|
|
}
|
|
}
|
|
function CRadarSeries() {
|
|
this.cat = null;
|
|
this.dLbls = null;
|
|
this.dPt = [];
|
|
this.idx = null;
|
|
this.marker = null;
|
|
this.order = null;
|
|
this.spPr = null;
|
|
this.tx = null;
|
|
this.val = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CRadarSeries.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeDPt: function (idx) {
|
|
if (this.dPt[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonSeries_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.dPt[idx]
|
|
});
|
|
this.dPt.splice(idx, 1);
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CRadarSeries();
|
|
if (this.cat) {
|
|
c.setCat(this.cat.createDuplicate());
|
|
}
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
for (var i = 0; i < this.dPt.length; ++i) {
|
|
c.addDPt(this.dPt[i].createDuplicate());
|
|
}
|
|
c.setIdx(this.idx);
|
|
if (this.marker) {
|
|
c.setMarker(this.marker.createDuplicate());
|
|
}
|
|
c.setOrder(this.order);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.val) {
|
|
c.setVal(this.val.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_RadarSeries;
|
|
},
|
|
documentCreateFontMap: CAreaSeries.prototype.documentCreateFontMap,
|
|
getSeriesName: CAreaSeries.prototype.getSeriesName,
|
|
getCatName: CAreaSeries.prototype.getCatName,
|
|
getValByIndex: CAreaSeries.prototype.getValByIndex,
|
|
getFormatCode: CAreaSeries.prototype.getFormatCode,
|
|
getAllRasterImages: CAreaSeries.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CAreaSeries.prototype.checkSpPrRasterImages,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setCat: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarSeries_SetCat,
|
|
oldPr: this.cat,
|
|
newPr: pr
|
|
});
|
|
this.cat = pr;
|
|
},
|
|
setFromOtherSeries: function (o) {
|
|
if (o.cat) {
|
|
this.setCat(o.cat);
|
|
}
|
|
if (o.dLbls) {
|
|
this.setDLbls(o.dLbls);
|
|
}
|
|
if (o.dPt) {
|
|
copyDPt(this, o.dPt);
|
|
}
|
|
if (o.marker) {
|
|
this.setMarker(o.marker);
|
|
}
|
|
if (isRealNumber(o.idx)) {
|
|
this.setIdx(o.idx);
|
|
}
|
|
if (o.order) {
|
|
this.setOrder(o.order);
|
|
}
|
|
if (o.spPr) {
|
|
this.setSpPr(o.spPr);
|
|
}
|
|
if (o.tx) {
|
|
this.setTx(o.tx);
|
|
}
|
|
if (o.val) {
|
|
this.setVal(o.val);
|
|
}
|
|
if (o.xVal) {
|
|
this.setCat(new CCat());
|
|
this.cat.setFromOtherObject(o.xVal);
|
|
}
|
|
if (o.yVal) {
|
|
this.setVal(new CYVal());
|
|
this.val.setFromOtherObject(o.yVal);
|
|
}
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarSeries_SetCat,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
},
|
|
addDPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarSeries_SetCat,
|
|
oldPr: this.dPt,
|
|
newPr: pr
|
|
});
|
|
this.dPt.push(pr);
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarSeries_SetCat,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setMarker: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarSeries_SetCat,
|
|
oldPr: this.marker,
|
|
newPr: pr
|
|
});
|
|
this.marker = pr;
|
|
},
|
|
setOrder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarSeries_SetCat,
|
|
oldPr: this.order,
|
|
newPr: pr
|
|
});
|
|
this.order = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarSeries_SetCat,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarSeries_SetCat,
|
|
oldPr: this.tx,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_RadarSeries_SetCat,
|
|
oldPr: this.val,
|
|
newPr: pr
|
|
});
|
|
this.val = pr;
|
|
if (this.val && this.val.setParent) {
|
|
this.val.setParent(this);
|
|
}
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 0, data.pt);
|
|
break;
|
|
case historyitem_RadarSeries_SetCat:
|
|
this.cat = data.oldPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetDPt:
|
|
findPrAndRemove(this.dPt, data.newPr);
|
|
break;
|
|
case historyitem_RadarSeries_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetMarker:
|
|
this.marker = data.oldPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetOrder:
|
|
this.order = data.oldPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetTx:
|
|
this.tx = data.oldPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 1);
|
|
break;
|
|
case historyitem_RadarSeries_SetCat:
|
|
this.cat = data.newPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetDPt:
|
|
this.addDPt(data.newPr);
|
|
break;
|
|
case historyitem_RadarSeries_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetMarker:
|
|
this.marker = data.newPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetOrder:
|
|
this.order = data.newPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetTx:
|
|
this.tx = data.newPr;
|
|
break;
|
|
case historyitem_RadarSeries_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_RadarSeries_SetCat:
|
|
case historyitem_RadarSeries_SetDLbls:
|
|
case historyitem_RadarSeries_SetDPt:
|
|
case historyitem_RadarSeries_SetMarker:
|
|
case historyitem_RadarSeries_SetSpPr:
|
|
case historyitem_RadarSeries_SetTx:
|
|
case historyitem_RadarSeries_SetVal:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_RadarSeries_SetIdx:
|
|
case historyitem_RadarSeries_SetOrder:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
writeLong(w, data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
var pos = readLong(r);
|
|
if (isRealNumber(pos)) {
|
|
this.dPt.splice(pos, 1);
|
|
}
|
|
break;
|
|
case historyitem_RadarSeries_SetCat:
|
|
this.cat = readObject(r);
|
|
break;
|
|
case historyitem_RadarSeries_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
break;
|
|
case historyitem_RadarSeries_SetDPt:
|
|
this.dPt.push(readObject(r));
|
|
break;
|
|
case historyitem_RadarSeries_SetIdx:
|
|
this.idx = readLong(r);
|
|
break;
|
|
case historyitem_RadarSeries_SetMarker:
|
|
this.marker = readObject(r);
|
|
break;
|
|
case historyitem_RadarSeries_SetOrder:
|
|
this.order = readLong(r);
|
|
break;
|
|
case historyitem_RadarSeries_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_RadarSeries_SetTx:
|
|
this.tx = readObject(r);
|
|
break;
|
|
case historyitem_RadarSeries_SetVal:
|
|
this.val = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var ORIENTATION_MAX_MIN = 0;
|
|
var ORIENTATION_MIN_MAX = 1;
|
|
function CScaling() {
|
|
this.logBase = null;
|
|
this.max = null;
|
|
this.min = null;
|
|
this.orientation = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CScaling.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CScaling();
|
|
c.setLogBase(this.logBase);
|
|
c.setMax(this.max);
|
|
c.setMin(this.min);
|
|
c.setOrientation(this.orientation);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_Scaling;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Scaling_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
setLogBase: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Scaling_SetLogBase,
|
|
oldPr: this.logBase,
|
|
newPr: pr
|
|
});
|
|
this.logBase = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMax: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Scaling_SetMax,
|
|
oldPr: this.max,
|
|
newPr: pr
|
|
});
|
|
this.max = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setMin: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Scaling_SetMin,
|
|
oldPr: this.min,
|
|
newPr: pr
|
|
});
|
|
this.min = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setOrientation: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Scaling_SetOrientation,
|
|
oldPr: this.orientation,
|
|
newPr: pr
|
|
});
|
|
this.orientation = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Scaling_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_Scaling_SetLogBase:
|
|
this.logBase = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Scaling_SetMax:
|
|
this.max = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Scaling_SetMin:
|
|
this.min = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Scaling_SetOrientation:
|
|
this.orientation = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Scaling_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_Scaling_SetLogBase:
|
|
this.logBase = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Scaling_SetMax:
|
|
this.max = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Scaling_SetMin:
|
|
this.min = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Scaling_SetOrientation:
|
|
this.orientation = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_Scaling_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_Scaling_SetLogBase:
|
|
case historyitem_Scaling_SetMax:
|
|
case historyitem_Scaling_SetMin:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_Scaling_SetOrientation:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_Scaling_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_Scaling_SetLogBase:
|
|
this.logBase = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Scaling_SetMax:
|
|
this.max = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Scaling_SetMin:
|
|
this.min = readDouble(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Scaling_SetOrientation:
|
|
this.orientation = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent && this.parent.parent.parent.parent && this.parent.parent.parent.parent.handleUpdateInternalChart) {
|
|
this.parent.parent.parent.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var SCATTER_STYLE_LINE = 0;
|
|
var SCATTER_STYLE_LINE_MARKER = 1;
|
|
var SCATTER_STYLE_MARKER = 2;
|
|
var SCATTER_STYLE_NONE = 3;
|
|
var SCATTER_STYLE_SMOOTH = 4;
|
|
var SCATTER_STYLE_SMOOTH_MARKER = 5;
|
|
function CScatterChart() {
|
|
this.axId = [];
|
|
this.dLbls = null;
|
|
this.scatterStyle = null;
|
|
this.series = [];
|
|
this.varyColors = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CScatterChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
getSeriesConstructor: function () {
|
|
return new CScatterSeries();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CScatterChart();
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
c.setScatterStyle(this.scatterStyle);
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
c.setVaryColors(this.varyColors);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_ScatterChart;
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
getAllRasterImages: CBarChart.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CBarChart.prototype.checkSpPrRasterImages,
|
|
removeDataLabels: CBarChart.prototype.removeDataLabels,
|
|
setFromOtherChart: function (o) {
|
|
if (o.dLbls) {
|
|
this.setDLbls(o.dLbls);
|
|
}
|
|
if (isRealNumber(o.scatterStyle)) {
|
|
this.setScatterStyle(o.scatterStyle);
|
|
}
|
|
if (Array.isArray(o.series)) {
|
|
for (var i = 0; i < o.series.length; ++i) {
|
|
var ser = new CScatterSeries();
|
|
ser.setFromOtherSeries(o.series[i]);
|
|
this.addSer(ser);
|
|
}
|
|
}
|
|
},
|
|
getAxisByTypes: CPlotArea.prototype.getAxisByTypes,
|
|
addAxId: function (pr) {
|
|
if (!pr) {
|
|
return;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterChart_AddAxId,
|
|
newPr: pr
|
|
});
|
|
this.axId.push(pr);
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.dLbls) {
|
|
this.dLbls.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setScatterStyle: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterChart_SetScatterStyle,
|
|
oldPr: this.scatterStyle,
|
|
newPr: pr
|
|
});
|
|
this.scatterStyle = pr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterChart_AddSer,
|
|
newPr: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setVaryColors: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterChart_SetVaryColors,
|
|
oldPr: this.varyColors,
|
|
newPr: pr
|
|
});
|
|
this.varyColors = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_ScatterChart_AddAxId:
|
|
for (var i = this.axId.length; i > -1; --i) {
|
|
if (this.axId[i] === data.newPr) {
|
|
this.axId.splice(i, 1);
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetScatterStyle:
|
|
this.scatterStyle = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_AddSer:
|
|
for (var i = this.series.length; i > -1; --i) {
|
|
if (this.series[i] === data.newPr) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetVaryColors:
|
|
this.varyColors = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_ScatterChart_AddAxId:
|
|
this.axId.push(data.newPr);
|
|
break;
|
|
case historyitem_ScatterChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetScatterStyle:
|
|
this.scatterStyle = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_AddSer:
|
|
this.series.push(data.newPr);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_ScatterChart_SetDLbls:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetScatterStyle:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_ScatterChart_AddAxId:
|
|
case historyitem_ScatterChart_AddSer:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetVaryColors:
|
|
this.varyColors = data.newPr;
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_ScatterChart_AddAxId:
|
|
if (r.GetBool()) {
|
|
var ax = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(ax)) {
|
|
this.axId.push(ax);
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetDLbls:
|
|
if (r.GetBool()) {
|
|
this.dLbls = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.dLbls = null;
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetScatterStyle:
|
|
this.scatterStyle = readLong(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_AddSer:
|
|
if (r.GetBool()) {
|
|
var ser = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_ScatterChart_SetVaryColors:
|
|
if (r.GetBool()) {
|
|
this.varyColors = r.GetBool();
|
|
} else {
|
|
this.varyColors = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CScatterSeries() {
|
|
this.dLbls = null;
|
|
this.dPt = [];
|
|
this.errBars = null;
|
|
this.idx = null;
|
|
this.marker = null;
|
|
this.order = null;
|
|
this.smooth = null;
|
|
this.spPr = null;
|
|
this.trendline = null;
|
|
this.tx = null;
|
|
this.xVal = null;
|
|
this.yVal = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CScatterSeries.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
documentCreateFontMap: CAreaSeries.prototype.documentCreateFontMap,
|
|
removeDPt: function (idx) {
|
|
if (this.dPt[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonSeries_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.dPt[idx]
|
|
});
|
|
this.dPt.splice(idx, 1);
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CScatterSeries();
|
|
this.dLbls && c.setDLbls(this.dLbls.createDuplicate());
|
|
for (var i = 0; i < this.dPt.length; ++i) {
|
|
c.addDPt(this.dPt[i].createDuplicate());
|
|
}
|
|
if (this.errBars) {
|
|
c.setErrBars(this.errBars.createDuplicate());
|
|
}
|
|
c.setIdx(this.idx);
|
|
if (this.marker) {
|
|
c.setMarker(this.marker.createDuplicate());
|
|
}
|
|
c.setOrder(this.order);
|
|
c.setSmooth(this.smooth);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.trendline) {
|
|
c.setTrendline(this.trendline.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.xVal) {
|
|
c.setXVal(this.xVal.createDuplicate());
|
|
}
|
|
if (this.yVal) {
|
|
c.setYVal(this.yVal.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_ScatterSer;
|
|
},
|
|
getAllRasterImages: CAreaSeries.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CAreaSeries.prototype.checkSpPrRasterImages,
|
|
setFromOtherSeries: function (o) {
|
|
if (o.dLbls) {
|
|
this.setDLbls(o.dLbls);
|
|
}
|
|
if (o.dPt) {
|
|
copyDPt(this, o.dPt);
|
|
}
|
|
if (o.errBars) {
|
|
this.setErrBars(o.errBars);
|
|
}
|
|
if (isRealNumber(o.idx)) {
|
|
this.setIdx(o.idx);
|
|
}
|
|
if (o.marker) {
|
|
this.setMarker(o.marker);
|
|
}
|
|
if (isRealNumber(o.order)) {
|
|
this.setOrder(o.order);
|
|
}
|
|
if (isRealBool(o.smooth)) {
|
|
this.setSmooth(o.smooth);
|
|
}
|
|
if (o.spPr) {
|
|
this.setSpPr(o.spPr);
|
|
}
|
|
if (o.trendline) {
|
|
this.setTrendline(o.trendline);
|
|
}
|
|
if (o.tx) {
|
|
this.setTx(o.tx);
|
|
}
|
|
if (o.xVal) {
|
|
this.setXVal(o.xVal);
|
|
}
|
|
if (o.yVal) {
|
|
this.setYVal(o.yVal);
|
|
}
|
|
if (o.cat) {
|
|
this.setXVal(new CXVal());
|
|
this.xVal.setFromOtherObject(o.cat);
|
|
}
|
|
if (o.val) {
|
|
this.setYVal(new CYVal());
|
|
this.yVal.setFromOtherObject(o.val);
|
|
}
|
|
},
|
|
getSeriesName: CAreaSeries.prototype.getSeriesName,
|
|
getCatName: CAreaSeries.prototype.getCatName,
|
|
getValByIndex: CAreaSeries.prototype.getValByIndex,
|
|
getFormatCode: CAreaSeries.prototype.getFormatCode,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
},
|
|
addDPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetDPt,
|
|
oldPr: this.dPt,
|
|
newPr: pr
|
|
});
|
|
this.dPt.push(pr);
|
|
},
|
|
setErrBars: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetErrBars,
|
|
oldPr: this.errBars,
|
|
newPr: pr
|
|
});
|
|
this.errBars = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setMarker: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetMarker,
|
|
oldPr: this.marker,
|
|
newPr: pr
|
|
});
|
|
this.marker = pr;
|
|
},
|
|
setOrder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetOrder,
|
|
oldPr: this.order,
|
|
newPr: pr
|
|
});
|
|
this.order = pr;
|
|
},
|
|
setSmooth: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetSmooth,
|
|
oldPr: this.smooth,
|
|
newPr: pr
|
|
});
|
|
this.smooth = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTrendline: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetTrendline,
|
|
oldPr: this.trendline,
|
|
newPr: pr
|
|
});
|
|
this.trendline = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetTx,
|
|
oldPr: this.tx,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
},
|
|
setXVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetXVal,
|
|
oldPr: this.xVal,
|
|
newPr: pr
|
|
});
|
|
this.xVal = pr;
|
|
},
|
|
setYVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ScatterSer_SetYVal,
|
|
oldPr: this.yVal,
|
|
newPr: pr
|
|
});
|
|
this.yVal = pr;
|
|
if (this.yVal && this.yVal.setParent) {
|
|
this.yVal.setParent(this);
|
|
}
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 0, data.pt);
|
|
break;
|
|
case historyitem_ScatterSer_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetDPt:
|
|
findPrAndRemove(this.dPt, data.newPr);
|
|
break;
|
|
case historyitem_ScatterSer_SetErrBars:
|
|
this.errBars = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetMarker:
|
|
this.marker = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetOrder:
|
|
this.order = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetSmooth:
|
|
this.smooth = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetTrendline:
|
|
this.trendline = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetTx:
|
|
this.tx = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetXVal:
|
|
this.xVal = data.oldPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetYVal:
|
|
this.yVal = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 1);
|
|
break;
|
|
case historyitem_ScatterSer_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetDPt:
|
|
this.dPt.push(data.newPr);
|
|
break;
|
|
case historyitem_ScatterSer_SetErrBars:
|
|
this.errBars = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetMarker:
|
|
this.marker = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetOrder:
|
|
this.order = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetSmooth:
|
|
this.smooth = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetTrendline:
|
|
this.trendline = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetTx:
|
|
this.tx = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetXVal:
|
|
this.xVal = data.newPr;
|
|
break;
|
|
case historyitem_ScatterSer_SetYVal:
|
|
this.yVal = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ScatterSer_SetDLbls:
|
|
case historyitem_ScatterSer_SetDPt:
|
|
case historyitem_ScatterSer_SetErrBars:
|
|
case historyitem_ScatterSer_SetMarker:
|
|
case historyitem_ScatterSer_SetSpPr:
|
|
case historyitem_ScatterSer_SetTrendline:
|
|
case historyitem_ScatterSer_SetTx:
|
|
case historyitem_ScatterSer_SetXVal:
|
|
case historyitem_ScatterSer_SetYVal:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString2(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetIdx:
|
|
case historyitem_ScatterSer_SetOrder:
|
|
w.WriteBool(isRealNumber(data.newPr));
|
|
if (isRealNumber(data.newPr)) {
|
|
w.WriteLong(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetSmooth:
|
|
w.WriteBool(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
writeLong(w, data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_ScatterSer_SetDLbls:
|
|
if (r.GetBool()) {
|
|
this.dLbls = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.dLbls = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetDPt:
|
|
this.dPt.push(readObject(r));
|
|
break;
|
|
case historyitem_ScatterSer_SetErrBars:
|
|
if (r.GetBool()) {
|
|
this.errBars = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.errBars = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetIdx:
|
|
if (r.GetBool()) {
|
|
this.idx = r.GetLong();
|
|
} else {
|
|
this.idx = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetMarker:
|
|
if (r.GetBool()) {
|
|
this.marker = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.marker = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetOrder:
|
|
if (r.GetBool()) {
|
|
this.order = r.GetLong();
|
|
} else {
|
|
this.order = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetSmooth:
|
|
if (r.GetBool()) {
|
|
this.smooth = r.GetBool();
|
|
} else {
|
|
this.smooth = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetSpPr:
|
|
if (r.GetBool()) {
|
|
this.spPr = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.spPr = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetTrendline:
|
|
if (r.GetBool()) {
|
|
this.trendline = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.trendline = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetTx:
|
|
if (r.GetBool()) {
|
|
this.tx = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.tx = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetXVal:
|
|
if (r.GetBool()) {
|
|
this.xVal = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.xVal = null;
|
|
}
|
|
break;
|
|
case historyitem_ScatterSer_SetYVal:
|
|
if (r.GetBool()) {
|
|
this.yVal = g_oTableId.Get_ById(r.GetString2());
|
|
} else {
|
|
this.yVal = null;
|
|
}
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
var pos = readLong(r);
|
|
if (isRealNumber(pos)) {
|
|
this.dPt.splice(pos, 1);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CTx() {
|
|
this.strRef = null;
|
|
this.val = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CTx.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CTx();
|
|
if (this.strRef) {
|
|
c.setStrRef(this.strRef.createDuplicate());
|
|
}
|
|
c.setVal(this.val);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_Tx;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setStrRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Tx_SetStrRef,
|
|
oldPr: this.strRef,
|
|
newPr: pr
|
|
});
|
|
this.strRef = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Tx_SetVal,
|
|
oldPr: this.strRef,
|
|
newPr: pr
|
|
});
|
|
this.val = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Tx_SetStrRef:
|
|
this.strRef = data.oldPr;
|
|
break;
|
|
case historyitem_Tx_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Tx_SetStrRef:
|
|
this.strRef = data.newPr;
|
|
break;
|
|
case historyitem_Tx_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_Tx_SetStrRef:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_Tx_SetVal:
|
|
this.val = writeString(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_Tx_SetStrRef:
|
|
this.strRef = readObject(r);
|
|
break;
|
|
case historyitem_Tx_SetVal:
|
|
this.val = readString(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CStockChart() {
|
|
this.axId = [];
|
|
this.dLbls = null;
|
|
this.dropLines = null;
|
|
this.hiLowLines = null;
|
|
this.series = [];
|
|
this.upDownBars = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CStockChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
setFromOtherChart: function (c) {
|
|
var i;
|
|
if (c.dLbls) {
|
|
this.setDLbls(c.dLbls);
|
|
}
|
|
if (c.dropLines) {
|
|
this.setDropLines(c.dropLines);
|
|
}
|
|
if (c.hiLowLines) {
|
|
this.setHiLowLines(c.hiLowLines);
|
|
}
|
|
if (Array.isArray(c.series)) {
|
|
for (i = 0; i < c.series.length; ++i) {
|
|
var ser = new CLineSeries();
|
|
ser.setFromOtherSeries(c.series[i]);
|
|
ser.setMarker(new CMarker());
|
|
ser.setSpPr(new CSpPr());
|
|
ser.spPr.setLn(new CLn());
|
|
ser.spPr.ln.setW(28575);
|
|
ser.spPr.ln.setFill(CreateNoFillUniFill());
|
|
ser.marker.setSymbol(SYMBOL_NONE);
|
|
ser.setSmooth(false);
|
|
this.addSer(ser);
|
|
}
|
|
}
|
|
if (c.upDownBars) {
|
|
this.setUpDownBars(c.upDownBars);
|
|
}
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
getSeriesConstructor: function () {
|
|
return new CLineSeries();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CStockChart();
|
|
if (this.dLbls) {
|
|
c.setDLbls(this.dLbls.createDuplicate());
|
|
}
|
|
if (this.dropLines) {
|
|
c.setDropLines(this.dropLines.createDuplicate());
|
|
}
|
|
if (this.hiLowLines) {
|
|
c.setHiLowLines(this.hiLowLines.createDuplicate());
|
|
}
|
|
for (var i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
if (this.upDownBars) {
|
|
c.setUpDownBars(this.upDownBars.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_StockChart;
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
getAllRasterImages: CBarChart.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CBarChart.prototype.checkSpPrRasterImages,
|
|
removeDataLabels: CBarChart.prototype.removeDataLabels,
|
|
getAxisByTypes: CPlotArea.prototype.getAxisByTypes,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
addAxId: function (pr) {
|
|
if (!pr) {
|
|
return;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_StockChart_AddAxId,
|
|
newPr: pr
|
|
});
|
|
this.axId.push(pr);
|
|
},
|
|
setDLbls: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StockChart_SetDLbls,
|
|
oldPr: this.dLbls,
|
|
newPr: pr
|
|
});
|
|
this.dLbls = pr;
|
|
if (this.dLbls) {
|
|
this.dLbls.setParent(this);
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
},
|
|
setDropLines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StockChart_SetDropLines,
|
|
oldPr: this.dropLines,
|
|
newPr: pr
|
|
});
|
|
this.dropLines = pr;
|
|
},
|
|
setHiLowLines: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StockChart_SetHiLowLines,
|
|
oldPr: this.hiLowLines,
|
|
newPr: pr
|
|
});
|
|
this.hiLowLines = pr;
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_StockChart_AddSer,
|
|
oldPr: this.series.length,
|
|
newPr: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setUpDownBars: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StockChart_SetUpDownBars,
|
|
oldPr: this.upDownBars,
|
|
newPr: pr
|
|
});
|
|
this.upDownBars = pr;
|
|
if (pr && pr.setParent) {
|
|
pr.setParent(this);
|
|
}
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_StockChart_AddAxId:
|
|
for (var i = this.axId.length - 1; i > -1; --i) {
|
|
if (this.axId[i] === data.newPr) {
|
|
this.axId.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_StockChart_SetDLbls:
|
|
this.dLbls = data.oldPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_StockChart_SetDropLines:
|
|
this.dropLines = data.oldPr;
|
|
break;
|
|
case historyitem_StockChart_SetHiLowLines:
|
|
this.hiLowLines = data.oldPr;
|
|
break;
|
|
case historyitem_StockChart_AddSer:
|
|
this.series.splice(data.oldPr, 1);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_StockChart_SetUpDownBars:
|
|
this.upDownBars = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_StockChart_AddAxId:
|
|
this.axId.push(data.newPr);
|
|
break;
|
|
case historyitem_StockChart_SetDLbls:
|
|
this.dLbls = data.newPr;
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_StockChart_SetDropLines:
|
|
this.dropLines = data.newPr;
|
|
break;
|
|
case historyitem_StockChart_SetHiLowLines:
|
|
this.hiLowLines = data.newPr;
|
|
break;
|
|
case historyitem_StockChart_AddSer:
|
|
this.series.push(data.newPr);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_StockChart_SetUpDownBars:
|
|
this.upDownBars = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_StockChart_AddAxId:
|
|
case historyitem_StockChart_SetDLbls:
|
|
case historyitem_StockChart_SetDropLines:
|
|
case historyitem_StockChart_SetHiLowLines:
|
|
case historyitem_StockChart_AddSer:
|
|
case historyitem_StockChart_SetUpDownBars:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_StockChart_AddAxId:
|
|
var ax = readObject(r);
|
|
if (isRealObject(ax)) {
|
|
this.axId.push(ax);
|
|
}
|
|
break;
|
|
case historyitem_StockChart_SetDLbls:
|
|
this.dLbls = readObject(r);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateDataLabels();
|
|
}
|
|
break;
|
|
case historyitem_StockChart_SetDropLines:
|
|
this.dropLines = readObject(r);
|
|
break;
|
|
case historyitem_StockChart_SetHiLowLines:
|
|
this.hiLowLines = readObject(r);
|
|
break;
|
|
case historyitem_StockChart_AddSer:
|
|
var ser = readObject(r);
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
break;
|
|
case historyitem_StockChart_SetUpDownBars:
|
|
this.upDownBars = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CStrCache() {
|
|
this.pt = [];
|
|
this.ptCount = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CStrCache.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeDPt: function (idx) {
|
|
if (this.pt[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonLit_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.pt[idx]
|
|
});
|
|
this.pt.splice(idx, 1);
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CStrCache();
|
|
for (var i = 0; i < this.pt.length; ++i) {
|
|
c.addPt(this.pt[i].createDuplicate());
|
|
}
|
|
c.setPtCount(this.ptCount);
|
|
return c;
|
|
},
|
|
getPtByIndex: function (idx) {
|
|
for (var i = 0; i < this.pt.length; ++i) {
|
|
if (this.pt[i].idx === idx) {
|
|
return this.pt[i];
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_StrCache;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
addPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StrCache_AddPt,
|
|
newPr: pr
|
|
});
|
|
this.pt.push(pr);
|
|
},
|
|
setPtCount: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StrCache_SetPtCount,
|
|
oldPr: this.ptCount,
|
|
newPr: pr
|
|
});
|
|
this.ptCount = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_StrCache_AddPt:
|
|
for (var i = 0; i < this.pt.length; ++i) {
|
|
if (this.pt[i] === data.newPr) {
|
|
this.pt.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_StrCache_SetPtCount:
|
|
this.ptCount = data.oldPr;
|
|
break;
|
|
case historyitem_CommonLit_RemoveDPt:
|
|
this.pt.splice(data.idx, 0, data.pt);
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_StrCache_AddPt:
|
|
this.pt.push(data.newPr);
|
|
break;
|
|
case historyitem_StrCache_SetPtCount:
|
|
this.ptCount = data.newPr;
|
|
break;
|
|
case historyitem_CommonLit_RemoveDPt:
|
|
this.pt.splice(data.idx, 1);
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_StrCache_AddPt:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_StrCache_SetPtCount:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonLit_RemoveDPt:
|
|
w.WriteLong(data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_StrCache_AddPt:
|
|
var pt = readObject(r);
|
|
if (pt) {
|
|
this.pt.push(pt);
|
|
}
|
|
break;
|
|
case historyitem_StrCache_SetPtCount:
|
|
this.ptCount = readLong(r);
|
|
break;
|
|
case historyitem_CommonLit_RemoveDPt:
|
|
var idx = r.GetLong();
|
|
this.pt.splice(idx, 1);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CStringLiteral() {
|
|
this.pt = null;
|
|
this.ptCount = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CStringLiteral.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CStrCache();
|
|
for (var i = 0; i < this.pt.length; ++i) {
|
|
c.addPt(this.pt[i].createDuplicate());
|
|
}
|
|
c.setPtCount(this.ptCount);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_StringLiteral;
|
|
},
|
|
setPt: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StringLiteral_SetPt,
|
|
newPr: pr,
|
|
oldPr: this.pt
|
|
});
|
|
this.pt = pr;
|
|
},
|
|
setPtCount: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StringLiteral_SetPtCount,
|
|
newPr: pr,
|
|
oldPr: this.ptCount
|
|
});
|
|
this.ptCount = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_StringLiteral_SetPt:
|
|
this.pt = data.oldPr;
|
|
break;
|
|
case historyitem_StringLiteral_SetPtCount:
|
|
this.ptCount = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_StringLiteral_SetPt:
|
|
this.pt = data.newPr;
|
|
break;
|
|
case historyitem_StringLiteral_SetPtCount:
|
|
this.ptCount = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_StringLiteral_SetPt:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_StringLiteral_SetPtCount:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_StringLiteral_SetPt:
|
|
this.pt = readObject(r);
|
|
break;
|
|
case historyitem_StringLiteral_SetPtCount:
|
|
this.ptCount = readLong(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CStringPoint() {
|
|
this.idx = null;
|
|
this.val = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CStringPoint.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CStringPoint();
|
|
c.setIdx(this.idx);
|
|
c.setVal(this.val);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_StrPoint;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StrPoint_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StrPoint_SetVal,
|
|
oldPr: this.val,
|
|
newPr: pr
|
|
});
|
|
this.val = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data) {
|
|
case historyitem_StrPoint_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_StrPoint_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data) {
|
|
case historyitem_StrPoint_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_StrPoint_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_StrPoint_SetIdx:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_StrPoint_SetVal:
|
|
writeString(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_StrPoint_SetIdx:
|
|
this.idx = readLong(r);
|
|
break;
|
|
case historyitem_StrPoint_SetVal:
|
|
this.val = readString(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CStrRef() {
|
|
this.f = null;
|
|
this.strCache = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CStrRef.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var c = new CStrRef();
|
|
c.setF(this.f);
|
|
if (this.strCache) {
|
|
c.setStrCache(this.strCache.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_StrRef;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setF: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StrRef_SetF,
|
|
oldPr: this.f,
|
|
newPr: pr
|
|
});
|
|
this.f = pr;
|
|
},
|
|
setStrCache: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_StrRef_SetStrCache,
|
|
oldPr: this.strCache,
|
|
newPr: pr
|
|
});
|
|
this.strCache = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_StrRef_SetF:
|
|
this.f = data.oldPr;
|
|
break;
|
|
case historyitem_StrRef_SetStrCache:
|
|
this.strCache = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_StrRef_SetF:
|
|
this.f = data.newPr;
|
|
break;
|
|
case historyitem_StrRef_SetStrCache:
|
|
this.strCache = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_StrRef_SetF:
|
|
writeString(w, data.newPr);
|
|
break;
|
|
case historyitem_StrRef_SetStrCache:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_StrRef_SetF:
|
|
this.f = readString(r);
|
|
break;
|
|
case historyitem_StrRef_SetStrCache:
|
|
this.strCache = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CSurfaceChart() {
|
|
this.axId = [];
|
|
this.bandFmts = [];
|
|
this.series = [];
|
|
this.wireframe = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
}
|
|
CSurfaceChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
removeSeries: function (idx) {
|
|
if (this.series[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChart_RemoveSeries,
|
|
oldPr: idx,
|
|
newPr: this.series.splice(idx, 1)[0]
|
|
});
|
|
}
|
|
},
|
|
getSeriesConstructor: function () {
|
|
return new CSurfaceSeries();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CSurfaceChart(),
|
|
i;
|
|
for (i = 0; i < this.bandFmts.length; ++i) {
|
|
c.addBandFmt(this.bandFmts[i].createDuplicate());
|
|
}
|
|
for (i = 0; i < this.series.length; ++i) {
|
|
c.addSer(this.series[i].createDuplicate());
|
|
}
|
|
c.setWireframe(this.wireframe);
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_SurfaceChart;
|
|
},
|
|
documentCreateFontMap: CBarChart.prototype.documentCreateFontMap,
|
|
removeDataLabels: CBarChart.prototype.removeDataLabels,
|
|
getAxisByTypes: CPlotArea.prototype.getAxisByTypes,
|
|
getAllRasterImages: function (images) {
|
|
CBarChart.prototype.getAllRasterImages.call(this, images);
|
|
for (var i = 0; i < this.bandFmts.length; ++i) {
|
|
this.bandFmts[i] && this.bandFmts[i].spPr && this.bandFmts[i].spPr.checkBlipFillRasterImage(images);
|
|
}
|
|
},
|
|
checkSpPrRasterImages: function (images) {
|
|
CBarChart.prototype.checkSpPrRasterImages.call(this, images);
|
|
for (var i = 0; i < this.bandFmts.length; ++i) {
|
|
this.bandFmts[i] && checkSpPrRasterImages(this.bandFmts[i].spPr);
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
addAxId: function (pr) {
|
|
if (!pr) {
|
|
return;
|
|
}
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceChart_AddAxId,
|
|
newPr: pr
|
|
});
|
|
this.axId.push(pr);
|
|
},
|
|
addBandFmt: function (fmt) {
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceChart_AddBandFmt,
|
|
newPr: fmt
|
|
});
|
|
this.bandFmts.push(fmt);
|
|
},
|
|
addSer: function (ser) {
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceChart_AddSer,
|
|
newPr: ser
|
|
});
|
|
this.series.push(ser);
|
|
ser.setParent(this);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
},
|
|
setWireframe: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceChart_SetWireframe,
|
|
oldPr: this.wireframe,
|
|
newPr: pr
|
|
});
|
|
this.wireframe = pr;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 0, data.newPr);
|
|
break;
|
|
case historyitem_SurfaceChart_AddAxId:
|
|
for (var i = this.axId.length - 1; i > -1; --i) {
|
|
if (this.axId[i] === data.newPr) {
|
|
this.axId.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_SurfaceChart_AddBandFmt:
|
|
for (var i = this.bandFmts.length - 1; i > -1; --i) {
|
|
if (this.bandFmts[i] === data.newPr) {
|
|
this.bandFmts.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_SurfaceChart_AddSer:
|
|
for (var i = this.series.length - 1; i > -1; --i) {
|
|
if (this.series[i] === data.newPr) {
|
|
this.series.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_SurfaceChart_SetWireframe:
|
|
this.wireframe = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
this.series.splice(data.oldPr, 1);
|
|
break;
|
|
case historyitem_SurfaceChart_AddAxId:
|
|
this.axId.push(data.newPr);
|
|
break;
|
|
case historyitem_SurfaceChart_AddBandFmt:
|
|
this.bandFmts.push(data.newPr);
|
|
break;
|
|
case historyitem_SurfaceChart_AddSer:
|
|
this.series.push(data.newPr);
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_SurfaceChart_SetWireframe:
|
|
this.wireframe = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
writeLong(w, data.oldPr);
|
|
break;
|
|
case historyitem_SurfaceChart_AddAxId:
|
|
case historyitem_SurfaceChart_AddBandFmt:
|
|
case historyitem_SurfaceChart_AddSer:
|
|
w.WriteBool(isRealObject(data.newPr));
|
|
if (isRealObject(data.newPr)) {
|
|
w.WriteString(data.newPr.Get_Id());
|
|
}
|
|
break;
|
|
case historyitem_SurfaceChart_SetWireframe:
|
|
w.WriteLong(isRealBool(data.newPr));
|
|
if (isRealBool(data.newPr)) {
|
|
w.WriteBool(data.newPr);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_CommonChart_RemoveSeries:
|
|
var pos = readLong(r);
|
|
this.series.splice(pos, 1);
|
|
break;
|
|
case historyitem_SurfaceChart_AddAxId:
|
|
if (r.GetBool()) {
|
|
var ax = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(ax)) {
|
|
this.axId.push(ax);
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_SurfaceChart_AddBandFmt:
|
|
if (r.GetBool()) {
|
|
var fmt = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(fmt)) {
|
|
this.bandFmts.push(fmt);
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_SurfaceChart_AddSer:
|
|
if (r.GetBool()) {
|
|
var ser = g_oTableId.Get_ById(r.GetString2());
|
|
if (isRealObject(ser)) {
|
|
this.series.push(ser);
|
|
}
|
|
}
|
|
if (this.parent && this.parent.parent && this.parent.parent.parent) {
|
|
this.parent.parent.parent.handleUpdateType();
|
|
}
|
|
break;
|
|
case historyitem_SurfaceChart_SetWireframe:
|
|
if (r.GetBool()) {
|
|
this.wireframe = r.GetBool();
|
|
} else {
|
|
this.wireframe = null;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CSurfaceSeries() {
|
|
this.cat = null;
|
|
this.idx = null;
|
|
this.order = null;
|
|
this.spPr = null;
|
|
this.tx = null;
|
|
this.val = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CSurfaceSeries.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
removeDPt: function (idx) {
|
|
if (this.dPt[idx]) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonSeries_RemoveDPt,
|
|
idx: idx,
|
|
pt: this.dPt[idx]
|
|
});
|
|
this.dPt.splice(idx, 1);
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CSurfaceSeries();
|
|
if (this.cat) {
|
|
c.setCat(this.cat.createDuplicate());
|
|
}
|
|
c.setIdx(this.idx);
|
|
c.setOrder(this.order);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.val) {
|
|
c.setVal(this.val.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_SurfaceSeries;
|
|
},
|
|
documentCreateFontMap: CAreaSeries.prototype.documentCreateFontMap,
|
|
getAllRasterImages: CAreaSeries.prototype.getAllRasterImages,
|
|
checkSpPrRasterImages: CAreaSeries.prototype.checkSpPrRasterImages,
|
|
setFromOtherSeries: function (o) {
|
|
if (o.cat) {
|
|
this.setCat(o.cat);
|
|
}
|
|
if (isRealNumber(o.idx)) {
|
|
this.setIdx(o.idx);
|
|
}
|
|
if (o.order) {
|
|
this.setOrder(o.order);
|
|
}
|
|
if (o.spPr) {
|
|
this.setSpPr(o.spPr);
|
|
}
|
|
if (o.tx) {
|
|
this.setTx(o.tx);
|
|
}
|
|
if (o.val) {
|
|
this.setVal(o.val);
|
|
}
|
|
if (o.xVal) {
|
|
this.setCat(new CCat());
|
|
this.cat.setFromOtherObject(o.xVal);
|
|
}
|
|
if (o.yVal) {
|
|
this.setVal(new CYVal());
|
|
this.val.setFromOtherObject(o.yVal);
|
|
}
|
|
},
|
|
getSeriesName: CAreaSeries.prototype.getSeriesName,
|
|
getCatName: CAreaSeries.prototype.getCatName,
|
|
getValByIndex: CAreaSeries.prototype.getValByIndex,
|
|
getFormatCode: CAreaSeries.prototype.getFormatCode,
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 0, data.pt);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetCat:
|
|
this.cat = data.oldPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetIdx:
|
|
this.idx = data.oldPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetOrder:
|
|
this.order = data.oldPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetTx:
|
|
this.tx = data.oldPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetVal:
|
|
this.val = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
this.dPt.splice(data.idx, 1);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetCat:
|
|
this.cat = data.newPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetIdx:
|
|
this.idx = data.newPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetOrder:
|
|
this.order = data.newPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetTx:
|
|
this.tx = data.newPr;
|
|
break;
|
|
case historyitem_SurfaceSeries_SetVal:
|
|
this.val = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetCat:
|
|
case historyitem_SurfaceSeries_SetSpPr:
|
|
case historyitem_SurfaceSeries_SetTx:
|
|
case historyitem_SurfaceSeries_SetVal:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetIdx:
|
|
case historyitem_SurfaceSeries_SetOrder:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
writeLong(w, data.idx);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetCat:
|
|
this.cat = readObject(r);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetIdx:
|
|
this.idx = readLong(r);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetOrder:
|
|
this.order = readLong(r);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetTx:
|
|
this.tx = readObject(r);
|
|
break;
|
|
case historyitem_SurfaceSeries_SetVal:
|
|
this.val = readObject(r);
|
|
break;
|
|
case historyitem_CommonSeries_RemoveDPt:
|
|
var pos = readLong(r);
|
|
if (isRealNumber(pos)) {
|
|
this.dPt.splice(pos, 1);
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
setCat: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceSeries_SetCat,
|
|
oldPr: this.cat,
|
|
newPr: pr
|
|
});
|
|
this.cat = pr;
|
|
},
|
|
setIdx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceSeries_SetIdx,
|
|
oldPr: this.idx,
|
|
newPr: pr
|
|
});
|
|
this.idx = pr;
|
|
},
|
|
setOrder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceSeries_SetOrder,
|
|
oldPr: this.order,
|
|
newPr: pr
|
|
});
|
|
this.order = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceSeries_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceSeries_SetTx,
|
|
oldPr: this.tx,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
},
|
|
setVal: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_SurfaceSeries_SetVal,
|
|
oldPr: this.val,
|
|
newPr: pr
|
|
});
|
|
this.val = pr;
|
|
if (this.val && this.val.setParent) {
|
|
this.val.setParent(this);
|
|
}
|
|
}
|
|
};
|
|
function checkVerticalTitle(title) {
|
|
return false;
|
|
}
|
|
function CTitle() {
|
|
this.layout = null;
|
|
this.overlay = null;
|
|
this.spPr = null;
|
|
this.tx = null;
|
|
this.txPr = null;
|
|
this.parent = null;
|
|
this.txBody = null;
|
|
this.x = null;
|
|
this.y = null;
|
|
this.calcX = null;
|
|
this.calcY = null;
|
|
this.extX = null;
|
|
this.extY = null;
|
|
this.transform = new CMatrix();
|
|
this.transformText = new CMatrix();
|
|
this.ownTransform = new CMatrix();
|
|
this.ownTransformText = new CMatrix();
|
|
this.localTransform = new CMatrix();
|
|
this.localTransformText = new CMatrix();
|
|
this.recalcInfo = {
|
|
recalculateTxBody: true,
|
|
recalcTransform: true,
|
|
recalcTransformText: true,
|
|
recalcContent: true,
|
|
recalculateBrush: true,
|
|
recalculatePen: true,
|
|
recalcStyle: true,
|
|
recalculateContent: true
|
|
};
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CTitle.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {
|
|
this.Refresh_RecalcData2();
|
|
},
|
|
Refresh_RecalcData2: function (pageIndex) {
|
|
this.recalcInfo.recalculateTxBody = true;
|
|
this.recalcInfo.recalcTransform = true;
|
|
this.recalcInfo.recalcTransformText = true;
|
|
this.recalcInfo.recalcContent = true;
|
|
this.recalcInfo.recalculateContent = true;
|
|
this.parent && this.parent.Refresh_RecalcData2 && this.parent.Refresh_RecalcData2(pageIndex, this);
|
|
},
|
|
checkAfterChangeTheme: function () {
|
|
this.recalcInfo.recalculateTxBody = true;
|
|
this.recalcInfo.recalcTransform = true;
|
|
this.recalcInfo.recalcTransformText = true;
|
|
this.recalcInfo.recalcContent = true;
|
|
this.recalcInfo.recalculateContent = true;
|
|
if (this.tx && this.tx.rich && this.tx.rich.content) {
|
|
this.tx.rich.content.Recalc_AllParagraphs_CompiledPr();
|
|
}
|
|
},
|
|
Search: function (Str, Props, SearchEngine, Type) {
|
|
var content = this.getDocContent();
|
|
if (content && this.tx && this.tx.rich) {
|
|
var dd = this.getDrawingDocument();
|
|
dd.StartSearchTransform(this.transformText);
|
|
content.Search(Str, Props, SearchEngine, Type);
|
|
dd.EndSearchTransform();
|
|
}
|
|
},
|
|
Search_GetId: function (bNext, bCurrent) {
|
|
var content = this.getDocContent();
|
|
if (content && this.tx && this.tx.rich) {
|
|
return content.Search_GetId(bNext, bCurrent);
|
|
}
|
|
return null;
|
|
},
|
|
Set_CurrentElement: function (bUpdate, pageIndex) {
|
|
var chart = this.chart,
|
|
controller;
|
|
if (chart && typeof editor !== "undefined" && editor && editor.WordControl && editor.WordControl.m_oLogicDocument) {
|
|
var bDocument = false,
|
|
bPresentation = false,
|
|
drawing_objects;
|
|
if (editor.WordControl.m_oLogicDocument instanceof CDocument) {
|
|
bDocument = true;
|
|
drawing_objects = editor.WordControl.m_oLogicDocument.DrawingObjects;
|
|
} else {
|
|
if (editor.WordControl.m_oLogicDocument instanceof CPresentation) {
|
|
bPresentation = true;
|
|
if (chart.parent) {
|
|
drawing_objects = chart.parent.graphicObject;
|
|
}
|
|
}
|
|
}
|
|
if (drawing_objects) {
|
|
drawing_objects.resetSelection();
|
|
var para_drawing;
|
|
if (chart.group) {
|
|
var main_group = chart.group.getMainGroup();
|
|
drawing_objects.selectObject(main_group, pageIndex);
|
|
main_group.selectObject(chart, pageIndex);
|
|
main_group.selection.chartSelection = chart;
|
|
chart.selection.textSelection = this;
|
|
chart.selection.title = this;
|
|
drawing_objects.selection.groupSelection = main_group;
|
|
para_drawing = main_group.parent;
|
|
} else {
|
|
drawing_objects.selectObject(chart, pageIndex);
|
|
drawing_objects.selection.chartSelection = chart;
|
|
chart.selection.textSelection = this;
|
|
chart.selection.title = this;
|
|
para_drawing = chart.parent;
|
|
}
|
|
if (bDocument && para_drawing instanceof ParaDrawing) {
|
|
var hdr_ftr = para_drawing.DocumentContent.Is_HdrFtr(true);
|
|
if (hdr_ftr) {
|
|
hdr_ftr.Content.CurPos.Type = docpostype_DrawingObjects;
|
|
hdr_ftr.Set_CurrentElement(bUpdate);
|
|
} else {
|
|
drawing_objects.document.CurPos.Type = docpostype_DrawingObjects;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CTitle();
|
|
if (this.layout) {
|
|
c.setLayout(this.layout.createDuplicate());
|
|
}
|
|
c.setOverlay(this.overlay);
|
|
if (this.spPr) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (this.tx) {
|
|
c.setTx(this.tx.createDuplicate());
|
|
}
|
|
if (this.txPr) {
|
|
c.setTxPr(this.txPr.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_Title;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Id);
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
paragraphAdd: function (paraItem, bRecalculate) {
|
|
var content = this.getDocContent();
|
|
if (content) {
|
|
content.Paragraph_Add(paraItem, bRecalculate);
|
|
}
|
|
},
|
|
applyTextFunction: function (docContentFunction, tableFunction, args) {
|
|
var content = this.getDocContent();
|
|
if (content) {
|
|
docContentFunction.apply(content, args);
|
|
}
|
|
},
|
|
setPosition: CDLbl.prototype.setPosition,
|
|
hitInPath: CShape.prototype.hitInPath,
|
|
hitInInnerArea: CShape.prototype.hitInInnerArea,
|
|
hitInBoundingRect: CShape.prototype.hitInBoundingRect,
|
|
hitInTextRect: CShape.prototype.hitInTextRect,
|
|
checkHitToBounds: function (x, y) {
|
|
var _x = x - this.transform.tx;
|
|
var _y = y - this.transform.ty;
|
|
return _x >= 0 && _x <= this.extX && _y >= 0 && _y < this.extY;
|
|
},
|
|
checkDocContent: function () {
|
|
if (this.tx && this.tx.rich && this.tx.rich.content) {
|
|
return;
|
|
} else {
|
|
if (this.txBody && this.txBody.content) {
|
|
var StartPage = this.txBody.content.StartPage;
|
|
if (!this.tx) {
|
|
this.setTx(new CChartText());
|
|
}
|
|
this.tx.setRich(this.txBody.createDuplicate2());
|
|
this.tx.rich.setParent(this);
|
|
var selection_state = this.txBody.content.Get_SelectionState();
|
|
this.txBody = this.tx.rich;
|
|
this.txBody.content.Set_SelectionState(selection_state, selection_state.length - 1);
|
|
if (isRealNumber(StartPage)) {
|
|
this.txBody.content.Set_StartPage(StartPage);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
getDocContent: function () {
|
|
if (this.txBody && this.txBody.content) {
|
|
return this.txBody.content;
|
|
}
|
|
},
|
|
selectionSetStart: CShape.prototype.selectionSetStart,
|
|
selectionSetEnd: CShape.prototype.selectionSetEnd,
|
|
select: function (chartSpace, pageIndex) {
|
|
this.selected = true;
|
|
this.selectStartPage = pageIndex;
|
|
var content = this.getDocContent && this.getDocContent();
|
|
if (content) {
|
|
content.Set_StartPage(pageIndex);
|
|
}
|
|
chartSpace.selection.title = this;
|
|
},
|
|
getMaxWidth: function (bodyPr) {
|
|
switch (bodyPr.vert) {
|
|
case nVertTTeaVert:
|
|
case nVertTTmongolianVert:
|
|
case nVertTTvert:
|
|
case nVertTTwordArtVert:
|
|
case nVertTTwordArtVertRtl:
|
|
case nVertTTvert270:
|
|
var vert_axis = this.chart.chart.plotArea.getVerticalAxis();
|
|
if (vert_axis && vert_axis.title === this) {
|
|
var hor_axis = this.chart.chart.plotArea.getHorizontalAxis();
|
|
return this.chart.extY - (hor_axis && hor_axis.title ? hor_axis.title.extY : 0);
|
|
}
|
|
return this.chart.extY / 2;
|
|
case nVertTThorz:
|
|
return this.chart.extX * 0.8;
|
|
}
|
|
return this.chart.extX * 0.5;
|
|
},
|
|
getBodyPr: CDLbl.prototype.getBodyPr,
|
|
getCompiledStyle: CDLbl.prototype.getCompiledStyle,
|
|
getCompiledFill: CDLbl.prototype.getCompiledFill,
|
|
getCompiledLine: CDLbl.prototype.getCompiledLine,
|
|
getCompiledTransparent: CDLbl.prototype.getCompiledTransparent,
|
|
Get_Styles: CDLbl.prototype.Get_Styles,
|
|
check_bounds: CShape.prototype.check_bounds,
|
|
selectionCheck: CShape.prototype.selectionCheck,
|
|
getInvertTransform: CShape.prototype.getInvertTransform,
|
|
getCanvasContext: function () {
|
|
return this.chart && this.chart.getCanvasContext();
|
|
},
|
|
convertPixToMM: function () {
|
|
return this.chart && this.chart.convertPixToMM();
|
|
},
|
|
getDrawingDocument: function () {
|
|
if (this.chart && this.chart.getDrawingDocument) {
|
|
return this.chart && this.chart.getDrawingDocument();
|
|
}
|
|
return this.parent && this.parent.getDrawingDocument && this.parent.getDrawingDocument();
|
|
},
|
|
draw: function (graphics) {
|
|
CDLbl.prototype.draw.call(this, graphics);
|
|
},
|
|
isEmptyPlaceholder: CDLbl.prototype.isEmptyPlaceholder,
|
|
recalculatePen: CShape.prototype.recalculatePen,
|
|
recalculateBrush: CShape.prototype.recalculateBrush,
|
|
updateSelectionState: CShape.prototype.updateSelectionState,
|
|
checkShapeChildTransform: CDLbl.prototype.checkShapeChildTransform,
|
|
updatePosition: function (x, y) {
|
|
this.posX = x;
|
|
this.posY = y;
|
|
this.transform = this.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transform, x, y);
|
|
this.transformText = this.localTransformText.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transformText, x, y);
|
|
this.invertTransform = global_MatrixTransformer.Invert(this.transform);
|
|
this.invertTransformText = global_MatrixTransformer.Invert(this.transformText);
|
|
},
|
|
getParentObjects: function () {
|
|
if (this.chart) {
|
|
return this.chart.getParentObjects();
|
|
} else {
|
|
if (this.parent) {
|
|
return this.parent.getParentObjects();
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
getDefaultTextForTxBody: function () {
|
|
if (this.parent) {
|
|
if (this.parent.getObjectType() === historyitem_type_Chart) {
|
|
return getChartTranslateManager().asc_getTitle();
|
|
} else {
|
|
if (this.parent.axPos === AX_POS_B || this.parent.axPos === AX_POS_T) {
|
|
return getChartTranslateManager().asc_getXAxis();
|
|
} else {
|
|
return getChartTranslateManager().asc_getYAxis();
|
|
}
|
|
}
|
|
}
|
|
return "Axis Title";
|
|
},
|
|
getStyles: CDLbl.prototype.getStyles,
|
|
Get_Theme: CDLbl.prototype.Get_Theme,
|
|
Get_ColorMap: CDLbl.prototype.Get_ColorMap,
|
|
recalculateStyle: CDLbl.prototype.recalculateStyle,
|
|
recalculateTxBody: CDLbl.prototype.recalculateTxBody,
|
|
recalculateTransform: CDLbl.prototype.recalculateTransform,
|
|
recalculateTransformText: CDLbl.prototype.recalculateTransformText,
|
|
recalculateContent: CDLbl.prototype.recalculateContent,
|
|
recalculate: function () {
|
|
ExecuteNoHistory(function () {
|
|
if (this.recalcInfo.recalculateBrush) {
|
|
this.recalculateBrush();
|
|
this.recalcInfo.recalculateBrush = false;
|
|
}
|
|
if (this.recalcInfo.recalculatePen) {
|
|
this.recalculatePen();
|
|
this.recalcInfo.recalculatePen = false;
|
|
}
|
|
if (this.recalcInfo.recalcStyle) {
|
|
this.recalculateStyle();
|
|
this.recalcInfo.recalcStyle = false;
|
|
}
|
|
if (this.recalcInfo.recalculateTxBody) {
|
|
this.recalculateTxBody();
|
|
this.recalcInfo.recalculateTxBody = false;
|
|
}
|
|
if (this.recalcInfo.recalculateContent) {
|
|
this.recalculateContent();
|
|
this.recalcInfo.recalculateContent = false;
|
|
}
|
|
if (this.recalcInfo.recalcTransform) {
|
|
this.recalculateTransform();
|
|
this.recalcInfo.recalcTransform = false;
|
|
}
|
|
if (this.recalcInfo.recalcTransformText) {
|
|
this.recalculateTransformText();
|
|
this.recalcInfo.recalcTransformText = false;
|
|
}
|
|
if (this.chart) {
|
|
this.chart.addToSetPosition(this);
|
|
}
|
|
},
|
|
this, []);
|
|
},
|
|
setLayout: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Title_SetLayout,
|
|
oldPr: this.layout,
|
|
newPr: pr
|
|
});
|
|
this.layout = pr;
|
|
},
|
|
setOverlay: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Title_SetOverlay,
|
|
oldPr: this.overlay,
|
|
newPr: pr
|
|
});
|
|
this.overlay = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Title_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Title_SetTx,
|
|
oldPr: this.tx,
|
|
newPr: pr
|
|
});
|
|
this.tx = pr;
|
|
if (this.tx) {
|
|
this.tx.setParent(this);
|
|
}
|
|
},
|
|
setTxPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Title_SetTxPr,
|
|
oldPr: this.txPr,
|
|
newPr: pr
|
|
});
|
|
this.txPr = pr;
|
|
if (this.txPr) {
|
|
this.txPr.setParent(this);
|
|
}
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_Title_SetLayout:
|
|
this.layout = data.oldPr;
|
|
break;
|
|
case historyitem_Title_SetOverlay:
|
|
this.overlay = data.oldPr;
|
|
break;
|
|
case historyitem_Title_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_Title_SetTx:
|
|
this.tx = data.oldPr;
|
|
this.Refresh_RecalcData2();
|
|
break;
|
|
case historyitem_Title_SetTxPr:
|
|
this.txPr = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_Title_SetLayout:
|
|
this.layout = data.newPr;
|
|
break;
|
|
case historyitem_Title_SetOverlay:
|
|
this.overlay = data.newPr;
|
|
break;
|
|
case historyitem_Title_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_Title_SetTx:
|
|
this.tx = data.newPr;
|
|
this.Refresh_RecalcData2();
|
|
break;
|
|
case historyitem_Title_SetTxPr:
|
|
this.txPr = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_Title_SetLayout:
|
|
case historyitem_Title_SetSpPr:
|
|
case historyitem_Title_SetTx:
|
|
case historyitem_Title_SetTxPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_Title_SetOverlay:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_Title_SetLayout:
|
|
this.layout = readObject(r);
|
|
break;
|
|
case historyitem_Title_SetOverlay:
|
|
this.overlay = readBool(r);
|
|
break;
|
|
case historyitem_Title_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_Title_SetTx:
|
|
this.tx = readObject(r);
|
|
this.Refresh_RecalcData2();
|
|
break;
|
|
case historyitem_Title_SetTxPr:
|
|
this.txPr = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var TRENDLINE_TYPE_EXP = 0;
|
|
var TRENDLINE_TYPE_LINEAR = 1;
|
|
var TRENDLINE_TYPE_LOG = 2;
|
|
var TRENDLINE_TYPE_MOVING_AVG = 3;
|
|
var TRENDLINE_TYPE_POLY = 4;
|
|
var TRENDLINE_TYPE_POWER = 5;
|
|
function CTrendLine() {
|
|
this.backward = null;
|
|
this.dispEq = null;
|
|
this.dispRSqr = null;
|
|
this.forward = null;
|
|
this.intercept = null;
|
|
this.name = null;
|
|
this.order = null;
|
|
this.period = null;
|
|
this.spPr = null;
|
|
this.trendlineLbl = null;
|
|
this.trendlineType = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CTrendLine.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_TrendLine;
|
|
},
|
|
setBackward: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetBackward,
|
|
oldPr: this.backward,
|
|
newPr: pr
|
|
});
|
|
this.backward = pr;
|
|
},
|
|
setDispEq: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetDispEq,
|
|
oldPr: this.dispEq,
|
|
newPr: pr
|
|
});
|
|
this.dispEq = pr;
|
|
},
|
|
setDispRSqr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetDispRSqr,
|
|
oldPr: this.dispRSqr,
|
|
newPr: pr
|
|
});
|
|
this.dispRSqr = pr;
|
|
},
|
|
setForward: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetForward,
|
|
oldPr: this.forward,
|
|
newPr: pr
|
|
});
|
|
this.forward = pr;
|
|
},
|
|
setIntercept: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetIntercept,
|
|
oldPr: this.intercept,
|
|
newPr: pr
|
|
});
|
|
this.intercept = pr;
|
|
},
|
|
setName: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetName,
|
|
oldPr: this.name,
|
|
newPr: pr
|
|
});
|
|
this.name = pr;
|
|
},
|
|
setOrder: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetOrder,
|
|
oldPr: this.order,
|
|
newPr: pr
|
|
});
|
|
this.order = pr;
|
|
},
|
|
setPeriod: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetPeriod,
|
|
oldPr: this.period,
|
|
newPr: pr
|
|
});
|
|
this.period = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setTrendlineLbl: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetTrendlineLbl,
|
|
oldPr: this.trendlineLbl,
|
|
newPr: pr
|
|
});
|
|
this.trendlineLbl = pr;
|
|
},
|
|
setTrendlineType: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_Trendline_SetTrendlineType,
|
|
oldPr: this.trendlineType,
|
|
newPr: pr
|
|
});
|
|
this.trendlineType = pr;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CTrendLine();
|
|
if (isRealNumber(this.backward)) {
|
|
c.setBackward(this.backward);
|
|
}
|
|
if (isRealBool(this.dispEq)) {
|
|
c.setDispEq(this.dispEq);
|
|
}
|
|
if (isRealBool(this.dispRSqr)) {
|
|
c.setDispRSqr(this.dispRSqr);
|
|
}
|
|
if (isRealNumber(this.forward)) {
|
|
c.setForward(this.forward);
|
|
}
|
|
if (isRealNumber(this.intercept)) {
|
|
c.setIntercept(this.intercept);
|
|
}
|
|
if (typeof this.name === "string") {
|
|
c.setName(this.name);
|
|
}
|
|
if (isRealNumber(this.order)) {
|
|
c.setOrder(this.order);
|
|
}
|
|
if (isRealNumber(this.period)) {
|
|
c.setPeriod(this.period);
|
|
}
|
|
if (isRealObject(this.spPr)) {
|
|
c.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (isRealNumber(this.trendlineType)) {
|
|
c.setTrendlineType(this.trendlineType);
|
|
}
|
|
return c;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Trendline_SetBackward:
|
|
this.backward = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetDispEq:
|
|
this.dispEq = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetDispRSqr:
|
|
this.dispRSqr = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetForward:
|
|
this.forward = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetIntercept:
|
|
this.intercept = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetName:
|
|
this.name = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetOrder:
|
|
this.order = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetPeriod:
|
|
this.period = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetTrendlineLbl:
|
|
this.trendlineLbl = data.oldPr;
|
|
break;
|
|
case historyitem_Trendline_SetTrendlineType:
|
|
this.trendlineType = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_Trendline_SetBackward:
|
|
this.backward = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetDispEq:
|
|
this.dispEq = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetDispRSqr:
|
|
this.dispRSqr = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetForward:
|
|
this.forward = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetIntercept:
|
|
this.intercept = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetName:
|
|
this.name = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetOrder:
|
|
this.order = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetPeriod:
|
|
this.period = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetTrendlineLbl:
|
|
this.trendlineLbl = data.newPr;
|
|
break;
|
|
case historyitem_Trendline_SetTrendlineType:
|
|
this.trendlineType = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_Trendline_SetBackward:
|
|
case historyitem_Trendline_SetForward:
|
|
case historyitem_Trendline_SetIntercept:
|
|
writeDouble(w, data.newPr);
|
|
break;
|
|
case historyitem_Trendline_SetDispEq:
|
|
case historyitem_Trendline_SetDispRSqr:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
case historyitem_Trendline_SetName:
|
|
writeString(w, data.newPr);
|
|
break;
|
|
case historyitem_Trendline_SetOrder:
|
|
case historyitem_Trendline_SetPeriod:
|
|
case historyitem_Trendline_SetTrendlineType:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_Trendline_SetSpPr:
|
|
case historyitem_Trendline_SetTrendlineLbl:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_Trendline_SetBackward:
|
|
this.backward = readDouble(r);
|
|
break;
|
|
case historyitem_Trendline_SetDispEq:
|
|
this.dispEq = readBool(r);
|
|
break;
|
|
case historyitem_Trendline_SetDispRSqr:
|
|
this.dispRSqr = readBool(r);
|
|
break;
|
|
case historyitem_Trendline_SetForward:
|
|
this.forward = readDouble(r);
|
|
break;
|
|
case historyitem_Trendline_SetIntercept:
|
|
this.intercept = readDouble(r);
|
|
break;
|
|
case historyitem_Trendline_SetName:
|
|
this.name = readString(r);
|
|
break;
|
|
case historyitem_Trendline_SetOrder:
|
|
this.order = readLong(r);
|
|
break;
|
|
case historyitem_Trendline_SetPeriod:
|
|
this.period = readLong(r);
|
|
break;
|
|
case historyitem_Trendline_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_Trendline_SetTrendlineLbl:
|
|
this.trendlineLbl = readObject(r);
|
|
break;
|
|
case historyitem_Trendline_SetTrendlineType:
|
|
this.trendlineType = readLong(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CUpDownBars() {
|
|
this.downBars = null;
|
|
this.gapWidth = null;
|
|
this.upBars = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CUpDownBars.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_UpDownBars;
|
|
},
|
|
setDownBars: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_UpDownBars_SetDownBars,
|
|
oldPr: this.downBars,
|
|
newPr: pr
|
|
});
|
|
this.downBars = pr;
|
|
},
|
|
setGapWidth: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_UpDownBars_SetGapWidth,
|
|
oldPr: this.downBars,
|
|
newPr: pr
|
|
});
|
|
this.gapWidth = pr;
|
|
},
|
|
setUpBars: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_UpDownBars_SetUpBars,
|
|
oldPr: this.downBars,
|
|
newPr: pr
|
|
});
|
|
this.upBars = pr;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CUpDownBars();
|
|
if (isRealNumber(this.gapWidth)) {
|
|
c.setGapWidth(this.gapWidth);
|
|
}
|
|
if (isRealObject(this.upBars)) {
|
|
c.setUpBars(this.upBars.createDuplicate());
|
|
}
|
|
if (isRealObject(this.downBars)) {
|
|
c.setDownBars(this.downBars.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_UpDownBars_SetDownBars:
|
|
this.downBars = data.oldPr;
|
|
break;
|
|
case historyitem_UpDownBars_SetGapWidth:
|
|
this.gapWidth = data.oldPr;
|
|
break;
|
|
case historyitem_UpDownBars_SetUpBars:
|
|
this.upBars = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_UpDownBars_SetDownBars:
|
|
this.downBars = data.newPr;
|
|
break;
|
|
case historyitem_UpDownBars_SetGapWidth:
|
|
this.gapWidth = data.newPr;
|
|
break;
|
|
case historyitem_UpDownBars_SetUpBars:
|
|
this.upBars = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_UpDownBars_SetDownBars:
|
|
case historyitem_UpDownBars_SetUpBars:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_UpDownBars_SetGapWidth:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_UpDownBars_SetDownBars:
|
|
this.downBars = readObject(r);
|
|
break;
|
|
case historyitem_UpDownBars_SetGapWidth:
|
|
this.gapWidth = readLong(r);
|
|
break;
|
|
case historyitem_UpDownBars_SetUpBars:
|
|
this.upBars = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CXVal() {
|
|
this.multiLvlStrRef = null;
|
|
this.numLit = null;
|
|
this.numRef = null;
|
|
this.strLit = null;
|
|
this.strRef = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CXVal.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_XVal;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
createDuplicate: function () {
|
|
var ret = new CXVal();
|
|
if (this.multiLvlStrRef) {
|
|
ret.setMultiLvlStrRef(this.multiLvlStrRef.createDuplicate());
|
|
}
|
|
if (this.numLit) {
|
|
ret.setNumLit(this.numLit.createDuplicate());
|
|
}
|
|
if (this.numRef) {
|
|
ret.setNumRef(this.numRef.createDuplicate());
|
|
}
|
|
if (this.strRef) {
|
|
ret.setStrRef(this.strRef.createDuplicate());
|
|
}
|
|
if (this.strLit) {
|
|
ret.setStrLit(this.strLit.createDuplicate());
|
|
}
|
|
return ret;
|
|
},
|
|
setFromOtherObject: function (o) {
|
|
if (o.multiLvlStrRef) {
|
|
this.setMultiLvlStrRef(o.multiLvlStrRef);
|
|
}
|
|
if (o.numLit) {
|
|
this.setNumLit(o.numLit);
|
|
}
|
|
if (o.numRef) {
|
|
this.setNumRef(o.numRef);
|
|
}
|
|
if (o.strLit) {
|
|
this.setStrLit(o.strLit);
|
|
}
|
|
if (o.strRef) {
|
|
this.setStrRef(o.strRef);
|
|
}
|
|
},
|
|
setMultiLvlStrRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_XVal_SetMultiLvlStrRef,
|
|
oldPr: this.multiLvlStrRef,
|
|
newPr: pr
|
|
});
|
|
this.multiLvlStrRef = pr;
|
|
},
|
|
setNumLit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_XVal_SetNumLit,
|
|
oldPr: this.numLit,
|
|
newPr: pr
|
|
});
|
|
this.numLit = pr;
|
|
},
|
|
setNumRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_XVal_SetNumRef,
|
|
oldPr: this.numRef,
|
|
newPr: pr
|
|
});
|
|
this.numRef = pr;
|
|
},
|
|
setStrLit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_XVal_SetStrLit,
|
|
oldPr: this.strLit,
|
|
newPr: pr
|
|
});
|
|
this.strLit = pr;
|
|
},
|
|
setStrRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_XVal_SetStrRef,
|
|
oldPr: this.strRef,
|
|
newPr: pr
|
|
});
|
|
this.strRef = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_XVal_SetMultiLvlStrRef:
|
|
this.multiLvlStrRef = data.oldPr;
|
|
break;
|
|
case historyitem_XVal_SetNumLit:
|
|
this.numLit = data.oldPr;
|
|
break;
|
|
case historyitem_XVal_SetNumRef:
|
|
this.numRef = data.oldPr;
|
|
break;
|
|
case historyitem_XVal_SetStrLit:
|
|
this.strLit = data.oldPr;
|
|
break;
|
|
case historyitem_XVal_SetStrRef:
|
|
this.strRef = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_XVal_SetMultiLvlStrRef:
|
|
this.multiLvlStrRef = data.newPr;
|
|
break;
|
|
case historyitem_XVal_SetNumLit:
|
|
this.numLit = data.newPr;
|
|
break;
|
|
case historyitem_XVal_SetNumRef:
|
|
this.numRef = data.newPr;
|
|
break;
|
|
case historyitem_XVal_SetStrLit:
|
|
this.strLit = data.newPr;
|
|
break;
|
|
case historyitem_XVal_SetStrRef:
|
|
this.strRef = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_XVal_SetMultiLvlStrRef:
|
|
case historyitem_XVal_SetNumLit:
|
|
case historyitem_XVal_SetNumRef:
|
|
case historyitem_XVal_SetStrLit:
|
|
case historyitem_XVal_SetStrRef:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_XVal_SetMultiLvlStrRef:
|
|
this.multiLvlStrRef = readObject(r);
|
|
break;
|
|
case historyitem_XVal_SetNumLit:
|
|
this.numLit = readObject(r);
|
|
break;
|
|
case historyitem_XVal_SetNumRef:
|
|
this.numRef = readObject(r);
|
|
break;
|
|
case historyitem_XVal_SetStrLit:
|
|
this.strLit = readObject(r);
|
|
break;
|
|
case historyitem_XVal_SetStrRef:
|
|
this.strRef = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CYVal() {
|
|
this.numLit = null;
|
|
this.numRef = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CYVal.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
createDuplicate: function () {
|
|
var copy = new CYVal();
|
|
if (this.numLit) {
|
|
copy.setNumLit(this.numLit.createDuplicate());
|
|
}
|
|
if (this.numRef) {
|
|
copy.setNumRef(this.numRef.createDuplicate());
|
|
}
|
|
return copy;
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_YVal;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
setFromOtherObject: function (o) {
|
|
if (o.numLit) {
|
|
this.setNumLit(o.numLit);
|
|
}
|
|
if (o.numRef) {
|
|
this.setNumRef(o.numRef);
|
|
}
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Get_Id());
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setNumLit: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_YVal_SetNumLit,
|
|
oldPr: this.numLit,
|
|
newPr: pr
|
|
});
|
|
this.numLit = pr;
|
|
},
|
|
setNumRef: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_YVal_SetNumRef,
|
|
oldPr: this.numRef,
|
|
newPr: pr
|
|
});
|
|
this.numRef = pr;
|
|
if (this.numRef && this.numRef.setParent) {
|
|
this.numRef.setParent(this);
|
|
}
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_YVal_SetNumLit:
|
|
this.numLit = data.oldPr;
|
|
break;
|
|
case historyitem_YVal_SetNumRef:
|
|
this.numRef = data.oldPr;
|
|
break;
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_YVal_SetNumLit:
|
|
this.numLit = data.newPr;
|
|
break;
|
|
case historyitem_YVal_SetNumRef:
|
|
this.numRef = data.newPr;
|
|
break;
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_YVal_SetNumLit:
|
|
case historyitem_YVal_SetNumRef:
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_YVal_SetNumLit:
|
|
this.numLit = readObject(r);
|
|
break;
|
|
case historyitem_YVal_SetNumRef:
|
|
this.numRef = readObject(r);
|
|
break;
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
var DISP_BLANKS_AS_GAP = 0;
|
|
var DISP_BLANKS_AS_SPAN = 1;
|
|
var DISP_BLANKS_AS_ZERO = 2;
|
|
function CChart() {
|
|
this.autoTitleDeleted = null;
|
|
this.backWall = null;
|
|
this.dispBlanksAs = null;
|
|
this.floor = null;
|
|
this.legend = null;
|
|
this.pivotFmts = [];
|
|
this.plotArea = null;
|
|
this.plotVisOnly = null;
|
|
this.showDLblsOverMax = null;
|
|
this.sideWall = null;
|
|
this.title = null;
|
|
this.view3D = null;
|
|
this.parent = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CChart.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {
|
|
this.parent && this.parent.addToRecalculate();
|
|
},
|
|
getObjectType: function () {
|
|
return historyitem_type_Chart;
|
|
},
|
|
getParentObjects: function () {
|
|
return this.parent && this.parent.getParentObjects();
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CChart();
|
|
c.autoTitleDeleted = this.autoTitleDeleted;
|
|
if (this.backWall) {
|
|
c.setBackWall(this.backWall.createDuplicate());
|
|
}
|
|
c.setDispBlanksAs(this.dispBlanksAs);
|
|
if (this.floor) {
|
|
c.setFloor(this.floor.createDuplicate());
|
|
}
|
|
if (this.legend) {
|
|
c.setLegend(this.legend.createDuplicate());
|
|
}
|
|
var Count = this.pivotFmts.length;
|
|
for (var i = 0; i < Count; i++) {
|
|
c.setPivotFmts(this.pivotFmts[i].createDuplicate());
|
|
}
|
|
if (this.plotArea) {
|
|
c.setPlotArea(this.plotArea.createDuplicate());
|
|
}
|
|
c.setPlotVisOnly(this.plotVisOnly);
|
|
c.setShowDLblsOverMax(this.showDLblsOverMax);
|
|
if (this.sideWall) {
|
|
c.setSideWall(this.sideWall.createDuplicate());
|
|
}
|
|
if (this.title) {
|
|
c.setTitle(this.title.createDuplicate());
|
|
}
|
|
if (this.view3D) {
|
|
c.setView3D(this.view3D.createDuplicate());
|
|
}
|
|
return c;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Id);
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
Refresh_RecalcData2: function (pageIndex, object) {
|
|
this.parent && this.parent.Refresh_RecalcData2 && this.parent.Refresh_RecalcData2(pageIndex, object);
|
|
},
|
|
getDrawingDocument: function () {
|
|
return this.parent && this.parent && this.parent.getDrawingDocument && this.parent.getDrawingDocument();
|
|
},
|
|
setAutoTitleDeleted: function (autoTitleDeleted) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetAutoTitleDeleted,
|
|
oldAutoTitleDeleted: this.autoTitleDeleted,
|
|
newAutoTitleDeleted: autoTitleDeleted
|
|
});
|
|
this.autoTitleDeleted = autoTitleDeleted;
|
|
},
|
|
setBackWall: function (backWall) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetBackWall,
|
|
oldBackWall: this.backWall,
|
|
newBackWall: backWall
|
|
});
|
|
this.backWall = backWall;
|
|
},
|
|
setDispBlanksAs: function (dispBlanksAs) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetDispBlanksAs,
|
|
oldDispBlanksAs: this.dispBlanksAs,
|
|
newDispBlanksAs: dispBlanksAs
|
|
});
|
|
this.dispBlanksAs = dispBlanksAs;
|
|
},
|
|
setFloor: function (floor) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetFloor,
|
|
oldFloor: this.floor,
|
|
newFloor: floor
|
|
});
|
|
this.floor = floor;
|
|
},
|
|
setLegend: function (legend) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetLegend,
|
|
oldLegend: this.legend,
|
|
newLegend: legend
|
|
});
|
|
this.legend = legend;
|
|
if (legend) {
|
|
legend.setParent(this);
|
|
}
|
|
},
|
|
setPivotFmts: function (pivotFmt) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_AddPivotFmt,
|
|
pivotFmt: pivotFmt
|
|
});
|
|
this.pivotFmts.push(pivotFmt);
|
|
},
|
|
setPlotArea: function (plotArea) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetPlotArea,
|
|
oldPlotArea: this.plotArea,
|
|
newPlotArea: plotArea
|
|
});
|
|
this.plotArea = plotArea;
|
|
if (plotArea) {
|
|
plotArea.setParent(this);
|
|
}
|
|
},
|
|
setPlotVisOnly: function (plotVisOnly) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetPlotVisOnly,
|
|
oldPlotVisOnly: this.plotVisOnly,
|
|
newPlotVisOnly: plotVisOnly
|
|
});
|
|
this.plotVisOnly = plotVisOnly;
|
|
},
|
|
setShowDLblsOverMax: function (showDLblsOverMax) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetShowDLblsOverMax,
|
|
oldShowDLblsOverMax: this.showDLblsOverMax,
|
|
newShowDLblsOverMax: showDLblsOverMax
|
|
});
|
|
this.showDLblsOverMax = showDLblsOverMax;
|
|
},
|
|
setSideWall: function (sideWall) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetSideWall,
|
|
oldSideWall: this.sideWall,
|
|
newSideWall: sideWall
|
|
});
|
|
this.sideWall = sideWall;
|
|
},
|
|
setTitle: function (title) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetTitle,
|
|
oldTitle: this.title,
|
|
newTitle: title
|
|
});
|
|
this.title = title;
|
|
if (title) {
|
|
title.setParent(this);
|
|
}
|
|
if (this.parent) {
|
|
this.parent.handleUpdateInternalChart();
|
|
}
|
|
},
|
|
setView3D: function (view3D) {
|
|
History.Add(this, {
|
|
Type: historyitem_Chart_SetView3D,
|
|
oldView3D: this.view3D,
|
|
newView3D: view3D
|
|
});
|
|
this.view3D = view3D;
|
|
},
|
|
setParent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_CommonChartFormat_SetParent,
|
|
oldPr: this.parent,
|
|
newPr: pr
|
|
});
|
|
this.parent = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.oldPr;
|
|
break;
|
|
case historyitem_Chart_SetAutoTitleDeleted:
|
|
this.autoTitleDeleted = data.oldAutoTitleDeleted;
|
|
break;
|
|
case historyitem_Chart_SetBackWall:
|
|
this.backWall = data.oldBackWall;
|
|
break;
|
|
case historyitem_Chart_SetDispBlanksAs:
|
|
this.dispBlanksAs = data.oldDispBlanksAs;
|
|
break;
|
|
case historyitem_Chart_SetFloor:
|
|
this.floor = data.oldFloor;
|
|
break;
|
|
case historyitem_Chart_SetLegend:
|
|
this.legend = data.oldLegend;
|
|
break;
|
|
case historyitem_Chart_AddPivotFmt:
|
|
for (var i = this.pivotFmts.length; i > -1; --i) {
|
|
if (this.pivotFmts[i] === data.pivotFmt) {
|
|
this.pivotFmts.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case historyitem_Chart_SetPlotArea:
|
|
this.plotArea = data.oldPlotArea;
|
|
break;
|
|
case historyitem_Chart_SetPlotVisOnly:
|
|
this.plotVisOnly = data.oldPlotVisOnly;
|
|
break;
|
|
case historyitem_Chart_SetShowDLblsOverMax:
|
|
this.showDLblsOverMax = data.oldShowDLblsOverMax;
|
|
break;
|
|
case historyitem_Chart_SetTitle:
|
|
this.title = data.oldTitle;
|
|
if (this.parent) {
|
|
this.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Chart_SetSideWall:
|
|
this.sideWall = data.oldSideWall;
|
|
break;
|
|
case historyitem_Chart_SetView3D:
|
|
this.view3D = data.newView3D;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = data.newPr;
|
|
break;
|
|
case historyitem_Chart_SetAutoTitleDeleted:
|
|
this.autoTitleDeleted = data.newAutoTitleDeleted;
|
|
break;
|
|
case historyitem_Chart_SetBackWall:
|
|
this.backWall = data.newBackWall;
|
|
break;
|
|
case historyitem_Chart_SetDispBlanksAs:
|
|
this.dispBlanksAs = data.newDispBlanksAs;
|
|
break;
|
|
case historyitem_Chart_SetFloor:
|
|
this.floor = data.newFloor;
|
|
break;
|
|
case historyitem_Chart_SetLegend:
|
|
this.legend = data.newLegend;
|
|
break;
|
|
case historyitem_Chart_AddPivotFmt:
|
|
this.pivotFmts.push(data.pivotFmt);
|
|
break;
|
|
case historyitem_Chart_SetPlotArea:
|
|
this.plotArea = data.newPlotArea;
|
|
break;
|
|
case historyitem_Chart_SetPlotVisOnly:
|
|
this.plotVisOnly = data.newPlotVisOnly;
|
|
break;
|
|
case historyitem_Chart_SetShowDLblsOverMax:
|
|
this.showDLblsOverMax = data.newShowDLblsOverMax;
|
|
break;
|
|
case historyitem_Chart_SetTitle:
|
|
this.title = data.newTitle;
|
|
if (this.parent) {
|
|
this.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Chart_SetSideWall:
|
|
this.sideWall = data.newSideWall;
|
|
break;
|
|
case historyitem_Chart_SetView3D:
|
|
this.view3D = data.newView3D;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_Chart_SetAutoTitleDeleted:
|
|
writeBool(w, data.newAutoTitleDeleted);
|
|
break;
|
|
case historyitem_Chart_SetBackWall:
|
|
writeObject(w, data.newBackWall);
|
|
break;
|
|
case historyitem_Chart_SetDispBlanksAs:
|
|
writeLong(w, data.newDispBlanksAs);
|
|
break;
|
|
case historyitem_Chart_SetFloor:
|
|
writeObject(w, data.newFloor);
|
|
break;
|
|
case historyitem_Chart_SetLegend:
|
|
writeObject(w, data.newLegend);
|
|
break;
|
|
case historyitem_Chart_AddPivotFmt:
|
|
writeObject(w, data.pivotFmt);
|
|
break;
|
|
case historyitem_Chart_SetPlotArea:
|
|
writeObject(w, data.newPlotArea);
|
|
break;
|
|
case historyitem_Chart_SetPlotVisOnly:
|
|
writeBool(w, data.newPlotVisOnly);
|
|
break;
|
|
case historyitem_Chart_SetShowDLblsOverMax:
|
|
writeBool(w, data.newShowDLblsOverMax);
|
|
break;
|
|
case historyitem_Chart_SetTitle:
|
|
writeObject(w, data.newTitle);
|
|
break;
|
|
case historyitem_Chart_SetSideWall:
|
|
writeObject(w, data.newSideWall);
|
|
break;
|
|
case historyitem_Chart_SetView3D:
|
|
writeObject(w, data.newView3D);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_CommonChartFormat_SetParent:
|
|
this.parent = readObject(r);
|
|
break;
|
|
case historyitem_Chart_SetAutoTitleDeleted:
|
|
this.autoTitleDeleted = readBool(r);
|
|
break;
|
|
case historyitem_Chart_SetBackWall:
|
|
this.backWall = readObject(r);
|
|
break;
|
|
case historyitem_Chart_SetDispBlanksAs:
|
|
this.dispBlanksAs = readLong(r);
|
|
break;
|
|
case historyitem_Chart_SetFloor:
|
|
this.floor = readObject(r);
|
|
break;
|
|
case historyitem_Chart_SetLegend:
|
|
this.legend = readObject(r);
|
|
break;
|
|
case historyitem_Chart_AddPivotFmt:
|
|
var pivot_fmt = readObject(r);
|
|
if (isRealObject(pivot_fmt)) {
|
|
this.pivotFmts.push(pivot_fmt);
|
|
}
|
|
break;
|
|
case historyitem_Chart_SetPlotArea:
|
|
this.plotArea = readObject(r);
|
|
break;
|
|
case historyitem_Chart_SetPlotVisOnly:
|
|
this.plotVisOnly = readBool(r);
|
|
break;
|
|
case historyitem_Chart_SetShowDLblsOverMax:
|
|
this.showDLblsOverMax = readBool(r);
|
|
break;
|
|
case historyitem_Chart_SetTitle:
|
|
this.title = readObject(r);
|
|
if (this.parent) {
|
|
this.parent.handleUpdateInternalChart();
|
|
}
|
|
break;
|
|
case historyitem_Chart_SetSideWall:
|
|
this.sideWall = readObject(r);
|
|
break;
|
|
case historyitem_Chart_SetView3D:
|
|
this.view3D = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CChartWall() {
|
|
this.pictureOptions = null;
|
|
this.spPr = null;
|
|
this.thickness = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CChartWall.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_ChartWall;
|
|
},
|
|
createDuplicate: function () {
|
|
var copy = new CChartWall();
|
|
if (this.pictureOptions) {
|
|
copy.setPictureOptions(this.pictureOptions.createDuplicate());
|
|
}
|
|
if (this.spPr) {
|
|
copy.setSpPr(this.spPr.createDuplicate());
|
|
}
|
|
if (isRealNumber(this.thickness)) {
|
|
copy.setThickness(this.thickness);
|
|
}
|
|
return copy;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Id);
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_ChartWall_SetPictureOptions:
|
|
this.pictureOptions = data.oldPr;
|
|
break;
|
|
case historyitem_ChartWall_SetSpPr:
|
|
this.spPr = data.oldPr;
|
|
break;
|
|
case historyitem_ChartWall_SetThickness:
|
|
this.thickness = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_ChartWall_SetPictureOptions:
|
|
this.pictureOptions = data.newPr;
|
|
break;
|
|
case historyitem_ChartWall_SetSpPr:
|
|
this.spPr = data.newPr;
|
|
break;
|
|
case historyitem_ChartWall_SetThickness:
|
|
this.thickness = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
setPictureOptions: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ChartWall_SetPictureOptions,
|
|
oldPr: this.pictureOptions,
|
|
newPr: pr
|
|
});
|
|
this.pictureOptions = pr;
|
|
},
|
|
setSpPr: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ChartWall_SetSpPr,
|
|
oldPr: this.spPr,
|
|
newPr: pr
|
|
});
|
|
this.spPr = pr;
|
|
},
|
|
setThickness: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_ChartWall_SetThickness,
|
|
oldPr: this.thickness,
|
|
newPr: pr
|
|
});
|
|
this.thickness = pr;
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_ChartWall_SetPictureOptions:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ChartWall_SetSpPr:
|
|
writeObject(w, data.newPr);
|
|
break;
|
|
case historyitem_ChartWall_SetThickness:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_ChartWall_SetPictureOptions:
|
|
this.pictureOptions = readObject(r);
|
|
break;
|
|
case historyitem_ChartWall_SetSpPr:
|
|
this.spPr = readObject(r);
|
|
break;
|
|
case historyitem_ChartWall_SetThickness:
|
|
this.thickness = readLong(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CView3d() {
|
|
this.depthPercent = null;
|
|
this.hPercent = null;
|
|
this.perspective = null;
|
|
this.rAngAx = null;
|
|
this.rotX = null;
|
|
this.rotY = null;
|
|
this.Id = g_oIdCounter.Get_NewId();
|
|
g_oTableId.Add(this, this.Id);
|
|
}
|
|
CView3d.prototype = {
|
|
Get_Id: function () {
|
|
return this.Id;
|
|
},
|
|
Refresh_RecalcData: function () {},
|
|
getObjectType: function () {
|
|
return historyitem_type_View3d;
|
|
},
|
|
createDuplicate: function () {
|
|
var c = new CView3d();
|
|
isRealNumber(this.depthPercent) && c.setDepthPercent(this.depthPercent);
|
|
isRealNumber(this.hPercent) && c.setHPercent(this.hPercent);
|
|
isRealNumber(this.perspective) && this.setPerspective(this.perspective);
|
|
isRealBool(this.rAngAx) && c.setRAngAx(this.rAngAx);
|
|
isRealNumber(this.rotX) && c.setRotX(this.rotX);
|
|
isRealNumber(this.rotY) && c.setRotY(this.rotY);
|
|
return c;
|
|
},
|
|
Write_ToBinary2: function (w) {
|
|
w.WriteLong(this.getObjectType());
|
|
w.WriteString2(this.Id);
|
|
},
|
|
Read_FromBinary2: function (r) {
|
|
this.Id = r.GetString2();
|
|
},
|
|
setDepthPercent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_View3d_SetDepthPercent,
|
|
oldPr: this.depthPercent,
|
|
newPr: pr
|
|
});
|
|
this.depthPercent = pr;
|
|
},
|
|
setHPercent: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_View3d_SetHPercent,
|
|
oldPr: this.hPercent,
|
|
newPr: pr
|
|
});
|
|
this.hPercent = pr;
|
|
},
|
|
setPerspective: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_View3d_SetPerspective,
|
|
oldPr: this.perspective,
|
|
newPr: pr
|
|
});
|
|
this.perspective = pr;
|
|
},
|
|
setRAngAx: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_View3d_SetRAngAx,
|
|
oldPr: this.rAngAx,
|
|
newPr: pr
|
|
});
|
|
this.rAngAx = pr;
|
|
},
|
|
setRotX: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_View3d_SetRotX,
|
|
oldPr: this.rotX,
|
|
newPr: pr
|
|
});
|
|
this.rotX = pr;
|
|
},
|
|
setRotY: function (pr) {
|
|
History.Add(this, {
|
|
Type: historyitem_View3d_SetRotY,
|
|
oldPr: this.rotY,
|
|
newPr: pr
|
|
});
|
|
this.rotY = pr;
|
|
},
|
|
Undo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_View3d_SetDepthPercent:
|
|
this.depthPercent = data.oldPr;
|
|
break;
|
|
case historyitem_View3d_SetHPercent:
|
|
this.hPercent = data.oldPr;
|
|
break;
|
|
case historyitem_View3d_SetPerspective:
|
|
this.perspective = data.oldPr;
|
|
break;
|
|
case historyitem_View3d_SetRAngAx:
|
|
this.rAngAx = data.oldPr;
|
|
break;
|
|
case historyitem_View3d_SetRotX:
|
|
this.rotX = data.oldPr;
|
|
break;
|
|
case historyitem_View3d_SetRotY:
|
|
this.rotY = data.oldPr;
|
|
break;
|
|
}
|
|
},
|
|
Redo: function (data) {
|
|
switch (data.Type) {
|
|
case historyitem_View3d_SetDepthPercent:
|
|
this.depthPercent = data.newPr;
|
|
break;
|
|
case historyitem_View3d_SetHPercent:
|
|
this.hPercent = data.newPr;
|
|
break;
|
|
case historyitem_View3d_SetPerspective:
|
|
this.perspective = data.newPr;
|
|
break;
|
|
case historyitem_View3d_SetRAngAx:
|
|
this.rAngAx = data.newPr;
|
|
break;
|
|
case historyitem_View3d_SetRotX:
|
|
this.rotX = data.newPr;
|
|
break;
|
|
case historyitem_View3d_SetRotY:
|
|
this.rotY = data.newPr;
|
|
break;
|
|
}
|
|
},
|
|
Save_Changes: function (data, w) {
|
|
w.WriteLong(data.Type);
|
|
switch (data.Type) {
|
|
case historyitem_View3d_SetDepthPercent:
|
|
case historyitem_View3d_SetHPercent:
|
|
case historyitem_View3d_SetPerspective:
|
|
case historyitem_View3d_SetRotX:
|
|
case historyitem_View3d_SetRotY:
|
|
writeLong(w, data.newPr);
|
|
break;
|
|
case historyitem_View3d_SetRAngAx:
|
|
writeBool(w, data.newPr);
|
|
break;
|
|
}
|
|
},
|
|
Load_Changes: function (r) {
|
|
var type = r.GetLong();
|
|
switch (type) {
|
|
case historyitem_View3d_SetDepthPercent:
|
|
this.depthPercent = readObject(r);
|
|
break;
|
|
case historyitem_View3d_SetHPercent:
|
|
this.hPercent = readObject(r);
|
|
break;
|
|
case historyitem_View3d_SetPerspective:
|
|
this.perspective = readObject(r);
|
|
break;
|
|
case historyitem_View3d_SetRAngAx:
|
|
this.rAngAx = readBool(r);
|
|
break;
|
|
case historyitem_View3d_SetRotX:
|
|
this.rotX = readObject(r);
|
|
break;
|
|
case historyitem_View3d_SetRotY:
|
|
this.rotY = readObject(r);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
function CreateTextBodyFromString(str, drawingDocument, parent) {
|
|
var tx_body = new CTextBody();
|
|
tx_body.setParent(parent);
|
|
tx_body.setBodyPr(new CBodyPr());
|
|
var old_is_doc_editor = false;
|
|
if (typeof editor !== "undefined" && editor && editor.isDocumentEditor) {
|
|
editor.isDocumentEditor = false;
|
|
old_is_doc_editor = true;
|
|
}
|
|
tx_body.setContent(CreateDocContentFromString(str, drawingDocument, tx_body));
|
|
if (typeof editor !== "undefined" && editor && old_is_doc_editor) {
|
|
editor.isDocumentEditor = true;
|
|
}
|
|
return tx_body;
|
|
}
|
|
function CreateDocContentFromString(str, drawingDocument, parent) {
|
|
var content = new CDocumentContent(parent, drawingDocument, 0, 0, 0, 0, false, false, true);
|
|
AddToContentFromString(content, str);
|
|
return content;
|
|
}
|
|
function AddToContentFromString(content, str) {
|
|
for (var i = 0; i < str.length; ++i) {
|
|
var ch = str[i];
|
|
if (ch == "\t") {
|
|
content.Paragraph_Add(new ParaTab(), false);
|
|
} else {
|
|
if (ch == "\n") {
|
|
content.Paragraph_Add(new ParaNewLine(break_Line), false);
|
|
} else {
|
|
if (ch == "\r") {} else {
|
|
if (ch != " ") {
|
|
content.Paragraph_Add(new ParaText(ch), false);
|
|
} else {
|
|
content.Paragraph_Add(new ParaSpace(1), false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function CValAxisLabels(chart) {
|
|
this.x = null;
|
|
this.y = null;
|
|
this.extX = null;
|
|
this.extY = null;
|
|
this.transform = new CMatrix();
|
|
this.localTransform = new CMatrix();
|
|
this.arrLabels = [];
|
|
this.chart = chart;
|
|
this.posX = null;
|
|
this.posY = null;
|
|
}
|
|
CValAxisLabels.prototype = {
|
|
recalculateExtX: function () {
|
|
var max_ext_x = 0;
|
|
for (var i = 0; i < this.arrLabels.length; ++i) {
|
|
if (this.arrLabels[i].extX > max_ext_x) {
|
|
max_ext_x = this.arrLabels[i].extX;
|
|
}
|
|
}
|
|
this.extX = max_ext_x;
|
|
},
|
|
getMinWidth: function () {
|
|
var max_min_width = this.arrLabels[0].txBody.content.Recalculate_MinMaxContentWidth().Min;
|
|
for (var i = 1; i < this.arrLabels.length; ++i) {
|
|
var t = this.arrLabels[i].txBody.content.Recalculate_MinMaxContentWidth().Min;
|
|
if (t > max_min_width) {
|
|
max_min_width = t;
|
|
}
|
|
}
|
|
return max_min_width;
|
|
},
|
|
draw: function (g) {
|
|
if (this.chart) {}
|
|
for (var i = 0; i < this.arrLabels.length; ++i) {
|
|
if (this.arrLabels[i]) {
|
|
this.arrLabels[i].draw(g);
|
|
}
|
|
}
|
|
},
|
|
setPosition: function (x, y) {
|
|
this.x = x;
|
|
this.y = y;
|
|
for (var i = 0; i < this.arrLabels.length; ++i) {
|
|
if (this.arrLabels[i]) {
|
|
var lbl = this.arrLabels[i];
|
|
lbl.setPosition(lbl.relPosX + x, lbl.relPosY + y);
|
|
}
|
|
}
|
|
},
|
|
updatePosition: function (x, y) {
|
|
this.posX = x;
|
|
this.posY = y;
|
|
this.transform = this.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transform, x, y);
|
|
this.invertTransform = global_MatrixTransformer.Invert(this.transform);
|
|
for (var i = 0; i < this.arrLabels.length; ++i) {
|
|
if (this.arrLabels[i]) {
|
|
this.arrLabels[i].updatePosition(x, y);
|
|
}
|
|
}
|
|
},
|
|
checkShapeChildTransform: function (t) {
|
|
this.transform = this.localTransform.CreateDublicate();
|
|
global_MatrixTransformer.TranslateAppend(this.transform, this.posX, this.posY);
|
|
this.invertTransform = global_MatrixTransformer.Invert(this.transform);
|
|
for (var i = 0; i < this.arrLabels.length; ++i) {
|
|
if (this.arrLabels[i]) {
|
|
this.arrLabels[i].checkShapeChildTransform(t);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
function CalcLegendEntry(legend, chart) {
|
|
this.chart = chart;
|
|
this.legend = legend;
|
|
this.x = null;
|
|
this.y = null;
|
|
this.extX = null;
|
|
this.extY = null;
|
|
this.calcMarkerUnion = null;
|
|
this.txBody = null;
|
|
this.txPr = null;
|
|
this.spPr = new CSpPr();
|
|
this.transform = new CMatrix();
|
|
this.transformText = new CMatrix();
|
|
this.localTransform = new CMatrix();
|
|
this.localTransformText = new CMatrix();
|
|
this.localX = null;
|
|
this.localY = null;
|
|
this.recalcInfo = {
|
|
recalcStyle: true
|
|
};
|
|
}
|
|
CalcLegendEntry.prototype = {
|
|
recalculate: function () {},
|
|
getStyles: CDLbl.prototype.getStyles,
|
|
recalculateStyle: CDLbl.prototype.recalculateStyle,
|
|
Get_Styles: CDLbl.prototype.Get_Styles,
|
|
Get_Theme: CDLbl.prototype.Get_Theme,
|
|
Get_ColorMap: CDLbl.prototype.Get_ColorMap,
|
|
draw: function (g) {
|
|
CShape.prototype.draw.call(this, g);
|
|
if (this.calcMarkerUnion) {
|
|
this.calcMarkerUnion.draw(g);
|
|
}
|
|
},
|
|
isEmptyPlaceholder: function () {
|
|
return false;
|
|
},
|
|
updatePosition: CShape.prototype.updatePosition
|
|
};
|
|
function CompiledMarker() {
|
|
this.spPr = new CSpPr();
|
|
this.x = null;
|
|
this.y = null;
|
|
this.extX = null;
|
|
this.extY = null;
|
|
this.localX = null;
|
|
this.localY = null;
|
|
this.transform = new CMatrix();
|
|
this.localTransform = new CMatrix();
|
|
this.pen = null;
|
|
this.brush = null;
|
|
}
|
|
CompiledMarker.prototype = {
|
|
draw: CShape.prototype.draw,
|
|
check_bounds: CShape.prototype.check_bounds,
|
|
isEmptyPlaceholder: function () {
|
|
return false;
|
|
}
|
|
};
|
|
function CUnionMarker() {
|
|
this.lineMarker = null;
|
|
this.marker = null;
|
|
}
|
|
CUnionMarker.prototype = {
|
|
draw: function (g) {
|
|
this.lineMarker && this.lineMarker.draw(g);
|
|
this.marker && this.marker.draw(g);
|
|
},
|
|
setWidth: function (w) {}
|
|
};
|
|
function CreateMarkerGeometryByType(type, src) {
|
|
var ret = new Geometry();
|
|
var w = 43200,
|
|
h = 43200;
|
|
function AddRect(geom, w, h) {
|
|
geom.AddPathCommand(1, "0", "0");
|
|
geom.AddPathCommand(2, w + "", "0");
|
|
geom.AddPathCommand(2, w + "", h + "");
|
|
geom.AddPathCommand(2, "0", h + "");
|
|
geom.AddPathCommand(6);
|
|
}
|
|
function AddPlus(geom, w, h) {
|
|
geom.AddPathCommand(0, undefined, "none", undefined, w, h);
|
|
geom.AddPathCommand(1, w / 2 + "", "0");
|
|
geom.AddPathCommand(2, w / 2 + "", h + "");
|
|
geom.AddPathCommand(1, "0", h / 2 + "");
|
|
geom.AddPathCommand(2, w + "", h / 2 + "");
|
|
}
|
|
function AddX(geom, w, h) {
|
|
geom.AddPathCommand(0, undefined, "none", undefined, w, h);
|
|
geom.AddPathCommand(1, "0", "0");
|
|
geom.AddPathCommand(2, w + "", h + "");
|
|
geom.AddPathCommand(1, w + "", "0");
|
|
geom.AddPathCommand(2, "0", h + "");
|
|
}
|
|
switch (type) {
|
|
case SYMBOL_CIRCLE:
|
|
ret.AddPathCommand(0, undefined, undefined, undefined, w, h);
|
|
ret.AddPathCommand(1, "0", h / 2 + "");
|
|
ret.AddPathCommand(3, w / 2 + "", h / 2 + "", "cd2", "cd4");
|
|
ret.AddPathCommand(3, w / 2 + "", h / 2 + "", "_3cd4", "cd4");
|
|
ret.AddPathCommand(3, w / 2 + "", h / 2 + "", "0", "cd4");
|
|
ret.AddPathCommand(3, w / 2 + "", h / 2 + "", "cd4", "cd4");
|
|
ret.AddPathCommand(6);
|
|
break;
|
|
case SYMBOL_DASH:
|
|
case SYMBOL_DOT:
|
|
ret.AddPathCommand(0, undefined, "none", undefined, w, h);
|
|
ret.AddPathCommand(1, type === SYMBOL_DASH ? "0" : w / 2 + "", h / 2 + "");
|
|
ret.AddPathCommand(2, w + "", h / 2 + "");
|
|
break;
|
|
case SYMBOL_DIAMOND:
|
|
ret.AddPathCommand(0, undefined, undefined, undefined, w, h);
|
|
ret.AddPathCommand(1, w / 2 + "", "0");
|
|
ret.AddPathCommand(2, w + "", h / 2 + "");
|
|
ret.AddPathCommand(2, w / 2 + "", h + "");
|
|
ret.AddPathCommand(2, "0", h / 2 + "");
|
|
ret.AddPathCommand(6);
|
|
break;
|
|
case SYMBOL_NONE:
|
|
break;
|
|
case SYMBOL_PICTURE:
|
|
case SYMBOL_SQUARE:
|
|
ret.AddPathCommand(0, undefined, undefined, undefined, w, h);
|
|
AddRect(ret, w, h);
|
|
break;
|
|
case SYMBOL_PLUS:
|
|
ret.AddPathCommand(0, undefined, "none", false, w, h);
|
|
AddRect(ret, w, h);
|
|
AddPlus(ret, w, h);
|
|
break;
|
|
case SYMBOL_STAR:
|
|
ret.AddPathCommand(0, undefined, "none", false, w, h);
|
|
AddRect(ret, w, h);
|
|
AddPlus(ret, w, h);
|
|
AddX(ret, w, h);
|
|
break;
|
|
case SYMBOL_TRIANGLE:
|
|
ret.AddPathCommand(0, undefined, undefined, undefined, w, h);
|
|
ret.AddPathCommand(1, w / 2 + "", "0");
|
|
ret.AddPathCommand(2, w + "", h + "");
|
|
ret.AddPathCommand(2, "0", h + "");
|
|
ret.AddPathCommand(6);
|
|
break;
|
|
case SYMBOL_X:
|
|
ret.AddPathCommand(0, undefined, "none", false, w, h);
|
|
AddRect(ret, w, h);
|
|
AddX(ret, w, h);
|
|
break;
|
|
}
|
|
var ret2 = new CompiledMarker();
|
|
ret2.spPr.geometry = ret;
|
|
return ret2;
|
|
} |