Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
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
sdkjs
Commits
dabf4223
Commit
dabf4223
authored
Apr 19, 2016
by
Sergey Luzyanin
Committed by
Alexander.Trofimov
May 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add ASC prefix
parent
3de54960
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
cell/model/Workbook.js
cell/model/Workbook.js
+2
-0
common/Charts/DrawingObjects.js
common/Charts/DrawingObjects.js
+3
-3
No files found.
cell/model/Workbook.js
View file @
dabf4223
...
...
@@ -3162,6 +3162,8 @@ function Woorksheet(wb, _index, sId){
this
.
oDrawingOjectsManager
=
new
DrawingObjectsManager
(
this
);
this
.
contentChanges
=
new
CContentChanges
();
this
.
sparklineGroups
=
new
sparklineGroups
();
/*handlers*/
this
.
handlers
=
null
;
}
...
...
common/Charts/DrawingObjects.js
View file @
dabf4223
...
...
@@ -370,7 +370,7 @@ CSparklineView.prototype.initFromSparkline = function(oSparkline, oSparklineGrou
{
ExecuteNoHistory
(
function
(){
this
.
ws
=
worksheetView
;
var
settings
=
new
asc_ChartSettings
();
var
settings
=
new
AscCommon
.
asc_ChartSettings
();
switch
(
oSparklineGroup
.
type
)
{
case
Asc
.
ESparklineType
.
Column
:
...
...
@@ -429,7 +429,7 @@ CSparklineView.prototype.initFromSparkline = function(oSparkline, oSparklineGrou
settings
.
putHorGridLines
(
c_oAscGridLinesSettings
.
none
);
settings
.
putVertGridLines
(
c_oAscGridLinesSettings
.
none
);
var
val_ax_props
=
new
asc_ValAxisSettings
();
var
val_ax_props
=
new
AscCommon
.
asc_ValAxisSettings
();
if
(
settings
.
type
!==
c_oAscChartTypeSettings
.
barStackedPer
)
{
if
(
oSparklineGroup
.
minAxisType
===
Asc
.
SparklineAxisMinMax
.
Custom
&&
oSparklineGroup
.
manualMin
!=
null
)
...
...
@@ -471,7 +471,7 @@ CSparklineView.prototype.initFromSparkline = function(oSparkline, oSparklineGrou
var
cat_ax_props
=
new
asc_CatAxisSettings
();
var
cat_ax_props
=
new
AscCommon
.
asc_CatAxisSettings
();
cat_ax_props
.
putIntervalBetweenLabelsRule
(
c_oAscBetweenLabelsRule
.
auto
);
cat_ax_props
.
putLabelsPosition
(
c_oAscLabelsPosition
.
betweenDivisions
);
cat_ax_props
.
putTickLabelsPos
(
c_oAscTickLabelsPos
.
TICK_LABEL_POSITION_NONE
);
...
...
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