Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
web-apps
Commits
516d986c
Commit
516d986c
authored
Sep 20, 2016
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE] Fix bug with loading spark properties.
parent
88a76ed5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
apps/spreadsheeteditor/main/app/view/ChartSettings.js
apps/spreadsheeteditor/main/app/view/ChartSettings.js
+3
-3
No files found.
apps/spreadsheeteditor/main/app/view/ChartSettings.js
View file @
516d986c
...
...
@@ -76,7 +76,7 @@ define([
DisabledControls
:
false
,
keepRatio
:
false
,
SparkType
:
-
1
,
LineWeight
:
this
.
_pt2mm
(
1
)
,
LineWeight
:
1
,
MarkersPoint
:
false
,
HighPoint
:
false
,
LowPoint
:
false
,
...
...
@@ -458,6 +458,7 @@ define([
this
.
_state
.
keepRatio
=
value
;
}
}
else
{
//sparkline
this
.
_originalProps
=
props
;
this
.
isChart
=
false
;
var
type
=
props
.
asc_getType
();
...
...
@@ -928,9 +929,8 @@ define([
var
me
=
this
;
var
win
,
props
;
if
(
me
.
api
){
props
=
me
.
api
.
asc_getChartObject
()
;
props
=
(
me
.
isChart
)
?
me
.
api
.
asc_getChartObject
()
:
me
.
_originalProps
;
if
(
props
)
{
(
new
SSE
.
Views
.
ChartSettingsDlg
(
{
chartSettings
:
props
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment