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
6e1d87bf
Commit
6e1d87bf
authored
Feb 20, 2017
by
Sergey Luzyanin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fromat code for val axis from source
parent
14cca4d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
97 additions
and
18 deletions
+97
-18
cell/view/DrawingObjectsController.js
cell/view/DrawingObjectsController.js
+1
-0
common/Drawings/CommonController.js
common/Drawings/CommonController.js
+34
-11
common/Drawings/Format/ChartSpace.js
common/Drawings/Format/ChartSpace.js
+62
-7
No files found.
cell/view/DrawingObjectsController.js
View file @
6e1d87bf
...
@@ -405,6 +405,7 @@ DrawingObjectsController.prototype.addChartDrawingObject = function(options)
...
@@ -405,6 +405,7 @@ DrawingObjectsController.prototype.addChartDrawingObject = function(options)
options
.
style
=
null
;
options
.
style
=
null
;
options
.
horAxisProps
=
null
;
options
.
horAxisProps
=
null
;
options
.
vertAxisProps
=
null
;
options
.
vertAxisProps
=
null
;
options
.
showMarker
=
null
;
this
.
editChartCallback
(
options
);
this
.
editChartCallback
(
options
);
options
.
style
=
1
;
options
.
style
=
1
;
options
.
bCreate
=
true
;
options
.
bCreate
=
true
;
...
...
common/Drawings/CommonController.js
View file @
6e1d87bf
...
@@ -3012,6 +3012,14 @@ DrawingObjectsController.prototype =
...
@@ -3012,6 +3012,14 @@ DrawingObjectsController.prototype =
var
axis_by_types
;
var
axis_by_types
;
var
val_ax
,
cat_ax
;
var
val_ax
,
cat_ax
;
object_type
=
chart_type
.
getObjectType
();
object_type
=
chart_type
.
getObjectType
();
var
sDefaultValAxFormatCode
=
null
;
if
(
chart_type
&&
chart_type
.
series
[
0
]){
var
aPoints
=
AscFormat
.
getPtsFromSeries
(
chart_type
.
series
[
0
]);
if
(
aPoints
[
0
]
&&
typeof
aPoints
[
0
].
formatCode
===
"
string
"
&&
aPoints
[
0
].
formatCode
.
length
>
0
){
sDefaultValAxFormatCode
=
aPoints
[
0
].
formatCode
;
}
}
need_num_fmt
=
sDefaultValAxFormatCode
;
var
checkSwapAxis
=
function
(
plotArea
,
chartType
,
newChartType
)
var
checkSwapAxis
=
function
(
plotArea
,
chartType
,
newChartType
)
{
{
...
@@ -3026,7 +3034,7 @@ DrawingObjectsController.prototype =
...
@@ -3026,7 +3034,7 @@ DrawingObjectsController.prototype =
}
}
if
(
!
val_ax
||
!
cat_ax
)
if
(
!
val_ax
||
!
cat_ax
)
{
{
var
axis_obj
=
AscFormat
.
CreateDefaultAxises
(
need_num_fmt
);
var
axis_obj
=
AscFormat
.
CreateDefaultAxises
(
need_num_fmt
?
need_num_fmt
:
"
General
"
);
cat_ax
=
axis_obj
.
catAx
;
cat_ax
=
axis_obj
.
catAx
;
val_ax
=
axis_obj
.
valAx
;
val_ax
=
axis_obj
.
valAx
;
}
}
...
@@ -3110,8 +3118,10 @@ DrawingObjectsController.prototype =
...
@@ -3110,8 +3118,10 @@ DrawingObjectsController.prototype =
||
type
===
c_oAscChartTypeSettings
.
barNormal3d
||
type
===
c_oAscChartTypeSettings
.
barStacked3d
||
type
===
c_oAscChartTypeSettings
.
barNormal3d
||
type
===
c_oAscChartTypeSettings
.
barStacked3d
||
type
===
c_oAscChartTypeSettings
.
hBarNormal
||
type
===
c_oAscChartTypeSettings
.
hBarStacked
||
type
===
c_oAscChartTypeSettings
.
hBarNormal
||
type
===
c_oAscChartTypeSettings
.
hBarStacked
||
type
===
c_oAscChartTypeSettings
.
hBarNormal3d
||
type
===
c_oAscChartTypeSettings
.
hBarStacked3d
||
type
===
c_oAscChartTypeSettings
.
hBarNormal3d
||
type
===
c_oAscChartTypeSettings
.
hBarStacked3d
||
type
===
c_oAscChartTypeSettings
.
barNormal3dPerspective
)
||
type
===
c_oAscChartTypeSettings
.
barNormal3dPerspective
){
need_num_fmt
=
"
General
"
;
need_num_fmt
=
sDefaultValAxFormatCode
;
}
else
else
need_num_fmt
=
"
0%
"
;
need_num_fmt
=
"
0%
"
;
...
@@ -3238,8 +3248,10 @@ DrawingObjectsController.prototype =
...
@@ -3238,8 +3248,10 @@ DrawingObjectsController.prototype =
if
(
!
val_axis
[
i
].
numFmt
)
if
(
!
val_axis
[
i
].
numFmt
)
{
{
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
numFmt
.
setFormatCode
(
sDefaultValAxFormatCode
?
sDefaultValAxFormatCode
:
"
General
"
);
val_axis
[
i
].
numFmt
.
setSourceLinked
(
true
);
}
}
if
(
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
if
(
need_num_fmt
&&
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
}
}
}
}
...
@@ -3293,8 +3305,10 @@ DrawingObjectsController.prototype =
...
@@ -3293,8 +3305,10 @@ DrawingObjectsController.prototype =
if
(
!
val_axis
[
i
].
numFmt
)
if
(
!
val_axis
[
i
].
numFmt
)
{
{
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
numFmt
.
setFormatCode
(
sDefaultValAxFormatCode
?
sDefaultValAxFormatCode
:
"
General
"
);
val_axis
[
i
].
numFmt
.
setSourceLinked
(
true
);
}
}
if
(
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
if
(
need_num_fmt
&&
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
if
(
need_bar_dir
=
BAR_DIR_BAR
)
if
(
need_bar_dir
=
BAR_DIR_BAR
)
val_axis
[
i
].
setAxPos
(
AscFormat
.
AX_POS_B
);
val_axis
[
i
].
setAxPos
(
AscFormat
.
AX_POS_B
);
...
@@ -3324,7 +3338,7 @@ DrawingObjectsController.prototype =
...
@@ -3324,7 +3338,7 @@ DrawingObjectsController.prototype =
if
(
type
===
c_oAscChartTypeSettings
.
lineNormal
||
type
===
c_oAscChartTypeSettings
.
lineStacked
||
type
===
c_oAscChartTypeSettings
.
line3d
if
(
type
===
c_oAscChartTypeSettings
.
lineNormal
||
type
===
c_oAscChartTypeSettings
.
lineStacked
||
type
===
c_oAscChartTypeSettings
.
line3d
||
type
===
c_oAscChartTypeSettings
.
lineNormalMarker
||
type
===
c_oAscChartTypeSettings
.
lineStackedMarker
)
||
type
===
c_oAscChartTypeSettings
.
lineNormalMarker
||
type
===
c_oAscChartTypeSettings
.
lineStackedMarker
)
need_num_fmt
=
"
General
"
;
need_num_fmt
=
sDefaultValAxFormatCode
;
else
else
need_num_fmt
=
"
0%
"
;
need_num_fmt
=
"
0%
"
;
...
@@ -3340,8 +3354,10 @@ DrawingObjectsController.prototype =
...
@@ -3340,8 +3354,10 @@ DrawingObjectsController.prototype =
if
(
!
val_axis
[
i
].
numFmt
)
if
(
!
val_axis
[
i
].
numFmt
)
{
{
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
numFmt
.
setFormatCode
(
sDefaultValAxFormatCode
?
sDefaultValAxFormatCode
:
"
General
"
);
val_axis
[
i
].
numFmt
.
setSourceLinked
(
true
);
}
}
if
(
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
if
(
need_num_fmt
&&
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
}
}
...
@@ -3410,8 +3426,10 @@ DrawingObjectsController.prototype =
...
@@ -3410,8 +3426,10 @@ DrawingObjectsController.prototype =
if
(
!
val_axis
[
i
].
numFmt
)
if
(
!
val_axis
[
i
].
numFmt
)
{
{
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
numFmt
.
setFormatCode
(
sDefaultValAxFormatCode
?
sDefaultValAxFormatCode
:
"
General
"
);
val_axis
[
i
].
numFmt
.
setSourceLinked
(
true
);
}
}
if
(
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
if
(
need_num_fmt
&&
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
}
}
if
(
type
===
c_oAscChartTypeSettings
.
line3d
)
if
(
type
===
c_oAscChartTypeSettings
.
line3d
)
...
@@ -3560,7 +3578,7 @@ DrawingObjectsController.prototype =
...
@@ -3560,7 +3578,7 @@ DrawingObjectsController.prototype =
need_groupping
=
GROUPING_PERCENT_STACKED
;
need_groupping
=
GROUPING_PERCENT_STACKED
;
if
(
type
===
c_oAscChartTypeSettings
.
areaNormal
||
type
===
c_oAscChartTypeSettings
.
areaStacked
)
if
(
type
===
c_oAscChartTypeSettings
.
areaNormal
||
type
===
c_oAscChartTypeSettings
.
areaStacked
)
need_num_fmt
=
"
General
"
;
need_num_fmt
=
sDefaultValAxFormatCode
;
else
else
need_num_fmt
=
"
0%
"
;
need_num_fmt
=
"
0%
"
;
...
@@ -3574,8 +3592,10 @@ DrawingObjectsController.prototype =
...
@@ -3574,8 +3592,10 @@ DrawingObjectsController.prototype =
if
(
!
val_axis
[
i
].
numFmt
)
if
(
!
val_axis
[
i
].
numFmt
)
{
{
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
numFmt
.
setFormatCode
(
sDefaultValAxFormatCode
?
sDefaultValAxFormatCode
:
"
General
"
);
val_axis
[
i
].
numFmt
.
setSourceLinked
(
true
);
}
}
if
(
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
if
(
need_num_fmt
&&
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
}
}
}
}
...
@@ -3591,8 +3611,10 @@ DrawingObjectsController.prototype =
...
@@ -3591,8 +3611,10 @@ DrawingObjectsController.prototype =
if
(
!
val_axis
[
i
].
numFmt
)
if
(
!
val_axis
[
i
].
numFmt
)
{
{
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
numFmt
.
setFormatCode
(
sDefaultValAxFormatCode
?
sDefaultValAxFormatCode
:
"
General
"
);
val_axis
[
i
].
numFmt
.
setSourceLinked
(
true
);
}
}
if
(
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
if
(
need_num_fmt
&&
val_axis
[
i
].
numFmt
.
formatCode
!==
need_num_fmt
)
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
val_axis
[
i
].
numFmt
.
setFormatCode
(
need_num_fmt
);
}
}
new_chart_type
.
setGrouping
(
need_groupping
);
new_chart_type
.
setGrouping
(
need_groupping
);
...
@@ -3640,6 +3662,7 @@ DrawingObjectsController.prototype =
...
@@ -3640,6 +3662,7 @@ DrawingObjectsController.prototype =
if
(
!
val_axis
[
i
].
numFmt
)
if
(
!
val_axis
[
i
].
numFmt
)
{
{
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
setNumFmt
(
new
AscFormat
.
CNumFmt
());
val_axis
[
i
].
numFmt
.
setSourceLinked
(
true
);
}
}
if
(
val_axis
[
i
].
numFmt
.
formatCode
!==
"
General
"
)
if
(
val_axis
[
i
].
numFmt
.
formatCode
!==
"
General
"
)
val_axis
[
i
].
numFmt
.
setFormatCode
(
"
General
"
);
val_axis
[
i
].
numFmt
.
setFormatCode
(
"
General
"
);
...
...
common/Drawings/Format/ChartSpace.js
View file @
6e1d87bf
...
@@ -3277,6 +3277,7 @@ CChartSpace.prototype.recalculateReferences = function()
...
@@ -3277,6 +3277,7 @@ CChartSpace.prototype.recalculateReferences = function()
{
{
series
=
charts
[
i
].
series
;
series
=
charts
[
i
].
series
;
var
bHaveHidden
=
false
,
bHaveNoHidden
=
false
;
var
bHaveHidden
=
false
,
bHaveNoHidden
=
false
;
var
bCheckFormatCode
=
false
;
if
(
charts
[
i
].
getObjectType
()
!==
AscDFH
.
historyitem_type_ScatterChart
)
if
(
charts
[
i
].
getObjectType
()
!==
AscDFH
.
historyitem_type_ScatterChart
)
{
{
for
(
j
=
0
;
j
<
series
.
length
;
++
j
)
for
(
j
=
0
;
j
<
series
.
length
;
++
j
)
...
@@ -3297,6 +3298,27 @@ CChartSpace.prototype.recalculateReferences = function()
...
@@ -3297,6 +3298,27 @@ CChartSpace.prototype.recalculateReferences = function()
else
else
{
{
bHaveNoHidden
=
true
;
bHaveNoHidden
=
true
;
if
(
!
bCheckFormatCode
&&
!
((
charts
[
i
].
getObjectType
()
===
AscDFH
.
historyitem_type_BarChart
&&
charts
[
i
].
grouping
===
AscFormat
.
BAR_GROUPING_PERCENT_STACKED
)
||
(
charts
[
i
].
getObjectType
()
!==
AscDFH
.
historyitem_type_BarChart
&&
charts
[
i
].
grouping
===
AscFormat
.
GROUPING_PERCENT_STACKED
))){
bCheckFormatCode
=
true
;
var
aAxId
=
charts
[
i
].
axId
;
if
(
aAxId
){
for
(
var
s
=
0
;
s
<
aAxId
.
length
;
++
s
){
if
(
aAxId
[
s
].
getObjectType
()
===
AscDFH
.
historyitem_type_ValAx
){
if
(
aAxId
[
s
].
numFmt
&&
aAxId
[
s
].
numFmt
.
sourceLinked
){
var
aPoints
=
AscFormat
.
getPtsFromSeries
(
ser
);
if
(
aPoints
[
0
]
&&
typeof
aPoints
[
0
].
formatCode
===
"
string
"
&&
aPoints
[
0
].
formatCode
.
length
>
0
){
aAxId
[
s
].
numFmt
.
setFormatCode
(
aPoints
[
0
].
formatCode
);
}
else
{
aAxId
[
s
].
numFmt
.
setFormatCode
(
"
General
"
);
}
}
}
}
}
}
}
}
}
}
...
@@ -3317,6 +3339,27 @@ CChartSpace.prototype.recalculateReferences = function()
...
@@ -3317,6 +3339,27 @@ CChartSpace.prototype.recalculateReferences = function()
else
else
{
{
bHaveNoHidden
=
true
;
bHaveNoHidden
=
true
;
if
(
!
bCheckFormatCode
){
bCheckFormatCode
=
true
;
var
aAxId
=
charts
[
i
].
axId
;
if
(
aAxId
){
for
(
var
s
=
0
;
s
<
aAxId
.
length
;
++
s
){
if
(
aAxId
[
s
].
getObjectType
()
===
AscDFH
.
historyitem_type_ValAx
){
if
((
aAxId
[
s
].
axPos
===
AscFormat
.
AX_POS_L
||
aAxId
[
s
].
axPos
===
AscFormat
.
AX_POS_R
)
&&
aAxId
[
s
].
numFmt
&&
aAxId
[
s
].
numFmt
.
sourceLinked
){
var
aPoints
=
AscFormat
.
getPtsFromSeries
(
ser
);
if
(
aPoints
[
0
]
&&
typeof
aPoints
[
0
].
formatCode
===
"
string
"
&&
aPoints
[
0
].
formatCode
.
length
>
0
){
aAxId
[
s
].
numFmt
.
setFormatCode
(
aPoints
[
0
].
formatCode
);
}
else
{
aAxId
[
s
].
numFmt
.
setFormatCode
(
"
General
"
);
}
}
}
}
}
}
}
}
}
}
}
}
...
@@ -11563,6 +11606,18 @@ function CreateView3d(nRotX, nRotY, bRAngAx, nDepthPercent)
...
@@ -11563,6 +11606,18 @@ function CreateView3d(nRotX, nRotY, bRAngAx, nDepthPercent)
return
oView3d
;
return
oView3d
;
}
}
function
GetNumFormatFromSeries
(
aAscSeries
){
if
(
aAscSeries
&&
aAscSeries
[
0
]
&&
aAscSeries
[
0
].
Val
&&
aAscSeries
[
0
].
Val
.
NumCache
&&
aAscSeries
[
0
].
Val
.
NumCache
[
0
]){
if
(
typeof
(
aAscSeries
[
0
].
Val
.
NumCache
[
0
].
numFormatStr
)
===
"
string
"
&&
aAscSeries
[
0
].
Val
.
NumCache
[
0
].
numFormatStr
.
length
>
0
){
return
aAscSeries
[
0
].
Val
.
NumCache
[
0
].
numFormatStr
;
}
}
return
"
General
"
;
}
function
CreateLineChart
(
chartSeries
,
type
,
bUseCache
,
oOptions
,
b3D
)
function
CreateLineChart
(
chartSeries
,
type
,
bUseCache
,
oOptions
,
b3D
)
{
{
...
@@ -11679,7 +11734,7 @@ function CreateLineChart(chartSeries, type, bUseCache, oOptions, b3D)
...
@@ -11679,7 +11734,7 @@ function CreateLineChart(chartSeries, type, bUseCache, oOptions, b3D)
}
}
else
else
{
{
format_code
=
"
General
"
;
format_code
=
GetNumFormatFromSeries
(
asc_series
)
;
}
}
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setSourceLinked
(
true
);
num_fmt
.
setSourceLinked
(
true
);
...
@@ -11816,7 +11871,7 @@ function CreateBarChart(chartSeries, type, bUseCache, oOptions, b3D, bDepth)
...
@@ -11816,7 +11871,7 @@ function CreateBarChart(chartSeries, type, bUseCache, oOptions, b3D, bDepth)
}
}
else
else
{
{
format_code
=
"
General
"
;
format_code
=
GetNumFormatFromSeries
(
asc_series
)
;
}
}
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setSourceLinked
(
true
);
num_fmt
.
setSourceLinked
(
true
);
...
@@ -11965,7 +12020,7 @@ function CreateHBarChart(chartSeries, type, bUseCache, oOptions, b3D)
...
@@ -11965,7 +12020,7 @@ function CreateHBarChart(chartSeries, type, bUseCache, oOptions, b3D)
}
}
else */
else */
{
{
format_code
=
"
General
"
;
format_code
=
GetNumFormatFromSeries
(
asc_series
)
;
}
}
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setSourceLinked
(
true
);
num_fmt
.
setSourceLinked
(
true
);
...
@@ -12092,7 +12147,7 @@ function CreateAreaChart(chartSeries, type, bUseCache, oOptions)
...
@@ -12092,7 +12147,7 @@ function CreateAreaChart(chartSeries, type, bUseCache, oOptions)
}
}
else
else
{
{
format_code
=
"
General
"
;
format_code
=
GetNumFormatFromSeries
(
asc_series
)
;
}
}
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setSourceLinked
(
true
);
num_fmt
.
setSourceLinked
(
true
);
...
@@ -12368,7 +12423,7 @@ function CreateScatterChart(chartSeries, bUseCache, oOptions)
...
@@ -12368,7 +12423,7 @@ function CreateScatterChart(chartSeries, bUseCache, oOptions)
var
scaling
=
val_ax
.
scaling
;
var
scaling
=
val_ax
.
scaling
;
scaling
.
setOrientation
(
AscFormat
.
ORIENTATION_MIN_MAX
);
scaling
.
setOrientation
(
AscFormat
.
ORIENTATION_MIN_MAX
);
var
num_fmt
=
val_ax
.
numFmt
;
var
num_fmt
=
val_ax
.
numFmt
;
var
format_code
=
"
General
"
;
var
format_code
=
GetNumFormatFromSeries
(
asc_series
)
;
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setSourceLinked
(
true
);
num_fmt
.
setSourceLinked
(
true
);
if
(
scatter_chart
.
series
.
length
>
1
)
if
(
scatter_chart
.
series
.
length
>
1
)
...
@@ -12529,7 +12584,7 @@ function CreateStockChart(chartSeries, bUseCache, oOptions)
...
@@ -12529,7 +12584,7 @@ function CreateStockChart(chartSeries, bUseCache, oOptions)
scaling
.
setOrientation
(
AscFormat
.
ORIENTATION_MIN_MAX
);
scaling
.
setOrientation
(
AscFormat
.
ORIENTATION_MIN_MAX
);
var
num_fmt
=
val_ax
.
numFmt
;
var
num_fmt
=
val_ax
.
numFmt
;
var
format_code
;
var
format_code
;
format_code
=
"
General
"
;
format_code
=
GetNumFormatFromSeries
(
asc_series
)
;
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setFormatCode
(
format_code
);
num_fmt
.
setSourceLinked
(
true
);
num_fmt
.
setSourceLinked
(
true
);
var
legend
=
chart
.
legend
;
var
legend
=
chart
.
legend
;
...
@@ -12648,7 +12703,7 @@ function CreateStockChart(chartSeries, bUseCache, oOptions)
...
@@ -12648,7 +12703,7 @@ function CreateStockChart(chartSeries, bUseCache, oOptions)
oValAx
.
setAxPos
(
AscFormat
.
AX_POS_L
);
oValAx
.
setAxPos
(
AscFormat
.
AX_POS_L
);
oValAx
.
setMajorGridlines
(
new
AscFormat
.
CSpPr
());
oValAx
.
setMajorGridlines
(
new
AscFormat
.
CSpPr
());
var
oNumFmt
=
new
AscFormat
.
CNumFmt
();
var
oNumFmt
=
new
AscFormat
.
CNumFmt
();
oNumFmt
.
setFormatCode
(
"
General
"
);
oNumFmt
.
setFormatCode
(
GetNumFormatFromSeries
(
asc_series
)
);
oNumFmt
.
setSourceLinked
(
true
);
oNumFmt
.
setSourceLinked
(
true
);
oValAx
.
setNumFmt
(
oNumFmt
);
oValAx
.
setNumFmt
(
oNumFmt
);
oValAx
.
setMajorTickMark
(
c_oAscTickMark
.
TICK_MARK_OUT
);
oValAx
.
setMajorTickMark
(
c_oAscTickMark
.
TICK_MARK_OUT
);
...
...
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