From 059b1ddd399d7cd53d03334fa96813979f24c76c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 20 Jun 2016 11:15:56 +0300 Subject: [PATCH] [SSE] fix bug 32592. --- apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js index 9f39189ea..a5d894e0c 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js @@ -810,6 +810,9 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' if (this.storageName) { var value = Common.localStorage.getItem(this.storageName); this.setActiveCategory((value!==null) ? parseInt(value) : 0); + value = this.getActiveCategory(); + if (value==2) this.onVCategoryClick(); + else if (value==3) this.onHCategoryClick(); } },