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
7da46250
Commit
7da46250
authored
Dec 16, 2016
by
Maxim Kadushkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE mobile] set chart's captions
parent
0a98532b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
apps/spreadsheeteditor/mobile/app/controller/add/AddChart.js
apps/spreadsheeteditor/mobile/app/controller/add/AddChart.js
+13
-2
No files found.
apps/spreadsheeteditor/mobile/app/controller/add/AddChart.js
View file @
7da46250
...
...
@@ -66,8 +66,14 @@ define([
},
setApi
:
function
(
api
)
{
var
me
=
this
;
me
.
api
=
api
;
this
.
api
=
api
;
var
translateChart
=
new
Asc
.
asc_CChartTranslate
();
translateChart
.
asc_setTitle
(
this
.
txtDiagramTitle
);
translateChart
.
asc_setXAxis
(
this
.
txtXAxis
);
translateChart
.
asc_setYAxis
(
this
.
txtYAxis
);
translateChart
.
asc_setSeries
(
this
.
txtSeries
);
this
.
api
.
asc_setChartTranslate
(
translateChart
);
},
onLaunch
:
function
()
{
...
...
@@ -84,6 +90,11 @@ define([
settings
.
changeType
(
type
);
this
.
api
.
asc_addChartDrawingObject
(
settings
);
},
txtDiagramTitle
:
'
Chart Title
'
,
txtXAxis
:
'
X Axis
'
,
txtYAxis
:
'
Y Axis
'
,
txtSeries
:
'
Seria
'
}
})(),
SSE
.
Controllers
.
AddChart
||
{}))
});
\ No newline at end of file
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