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
87c05da1
Commit
87c05da1
authored
Jun 29, 2017
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove surface charts.
parent
ed40d7b0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
49 additions
and
49 deletions
+49
-49
apps/documenteditor/main/app/view/ChartSettings.js
apps/documenteditor/main/app/view/ChartSettings.js
+7
-7
apps/documenteditor/main/app/view/Toolbar.js
apps/documenteditor/main/app/view/Toolbar.js
+7
-7
apps/presentationeditor/main/app/view/ChartSettings.js
apps/presentationeditor/main/app/view/ChartSettings.js
+7
-7
apps/presentationeditor/main/app/view/Toolbar.js
apps/presentationeditor/main/app/view/Toolbar.js
+7
-7
apps/spreadsheeteditor/main/app/view/ChartSettings.js
apps/spreadsheeteditor/main/app/view/ChartSettings.js
+7
-7
apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js
apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js
+7
-7
apps/spreadsheeteditor/main/app/view/Toolbar.js
apps/spreadsheeteditor/main/app/view/Toolbar.js
+7
-7
No files found.
apps/documenteditor/main/app/view/ChartSettings.js
View file @
87c05da1
...
...
@@ -263,8 +263,8 @@ define([
{
id
:
'
menu-chart-group-hbar
'
,
caption
:
me
.
textBar
},
{
id
:
'
menu-chart-group-area
'
,
caption
:
me
.
textArea
,
inline
:
true
},
{
id
:
'
menu-chart-group-scatter
'
,
caption
:
me
.
textPoint
,
inline
:
true
},
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
,
{
id
:
'
menu-chart-group-surface
'
,
caption
:
me
.
textSurface
}
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
//
{ id: 'menu-chart-group-surface', caption: me.textSurface}
]),
store
:
new
Common
.
UI
.
DataViewStore
([
{
group
:
'
menu-chart-group-bar
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
barNormal
,
iconCls
:
'
column-normal
'
,
selected
:
true
},
...
...
@@ -291,11 +291,11 @@ define([
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStacked
,
iconCls
:
'
area-stack
'
},
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStackedPer
,
iconCls
:
'
area-pstack
'
},
{
group
:
'
menu-chart-group-scatter
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
scatter
,
iconCls
:
'
point-normal
'
},
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
iconCls
:
'
stock-normal
'
}
,
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceNormal
,
iconCls
:
'
surface-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceWireframe
,
iconCls
:
'
surface-wireframe
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourNormal
,
iconCls
:
'
contour-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourWireframe
,
iconCls
:
'
contour-wireframe
'
}
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
iconCls
:
'
stock-normal
'
}
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, iconCls: 'surface-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, iconCls: 'surface-wireframe'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, iconCls: 'contour-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, iconCls: 'contour-wireframe'}
]),
itemTemplate
:
_
.
template
(
'
<div id="<%= id %>" class="item-chartlist <%= iconCls %>"></div>
'
)
...
...
apps/documenteditor/main/app/view/Toolbar.js
View file @
87c05da1
...
...
@@ -1416,8 +1416,8 @@ define([
{
id
:
'
menu-chart-group-hbar
'
,
caption
:
me
.
textBar
},
{
id
:
'
menu-chart-group-area
'
,
caption
:
me
.
textArea
,
inline
:
true
},
{
id
:
'
menu-chart-group-scatter
'
,
caption
:
me
.
textPoint
,
inline
:
true
},
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
,
{
id
:
'
menu-chart-group-surface
'
,
caption
:
me
.
textSurface
}
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
//
{ id: 'menu-chart-group-surface', caption: me.textSurface}
]),
store
:
new
Common
.
UI
.
DataViewStore
([
{
group
:
'
menu-chart-group-bar
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
barNormal
,
allowSelected
:
true
,
iconCls
:
'
column-normal
'
,
selected
:
true
},
...
...
@@ -1444,11 +1444,11 @@ define([
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStacked
,
allowSelected
:
true
,
iconCls
:
'
area-stack
'
},
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStackedPer
,
allowSelected
:
true
,
iconCls
:
'
area-pstack
'
},
{
group
:
'
menu-chart-group-scatter
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
scatter
,
allowSelected
:
true
,
iconCls
:
'
point-normal
'
},
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
allowSelected
:
true
,
iconCls
:
'
stock-normal
'
}
,
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceNormal
,
allowSelected
:
true
,
iconCls
:
'
surface-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceWireframe
,
allowSelected
:
true
,
iconCls
:
'
surface-wireframe
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourNormal
,
allowSelected
:
true
,
iconCls
:
'
contour-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourWireframe
,
allowSelected
:
true
,
iconCls
:
'
contour-wireframe
'
}
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
allowSelected
:
true
,
iconCls
:
'
stock-normal
'
}
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, allowSelected: true, iconCls: 'surface-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, allowSelected: true, iconCls: 'surface-wireframe'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, allowSelected: true, iconCls: 'contour-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, allowSelected: true, iconCls: 'contour-wireframe'}
]),
itemTemplate
:
_
.
template
(
'
<div id="<%= id %>" class="item-chartlist <%= iconCls %>"></div>
'
)
});
...
...
apps/presentationeditor/main/app/view/ChartSettings.js
View file @
87c05da1
...
...
@@ -220,8 +220,8 @@ define([
{
id
:
'
menu-chart-group-hbar
'
,
caption
:
me
.
textBar
},
{
id
:
'
menu-chart-group-area
'
,
caption
:
me
.
textArea
,
inline
:
true
},
{
id
:
'
menu-chart-group-scatter
'
,
caption
:
me
.
textPoint
,
inline
:
true
},
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
,
{
id
:
'
menu-chart-group-surface
'
,
caption
:
me
.
textSurface
}
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
//
{ id: 'menu-chart-group-surface', caption: me.textSurface}
]),
store
:
new
Common
.
UI
.
DataViewStore
([
{
group
:
'
menu-chart-group-bar
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
barNormal
,
iconCls
:
'
column-normal
'
,
selected
:
true
},
...
...
@@ -248,11 +248,11 @@ define([
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStacked
,
iconCls
:
'
area-stack
'
},
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStackedPer
,
iconCls
:
'
area-pstack
'
},
{
group
:
'
menu-chart-group-scatter
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
scatter
,
iconCls
:
'
point-normal
'
},
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
iconCls
:
'
stock-normal
'
}
,
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceNormal
,
iconCls
:
'
surface-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceWireframe
,
iconCls
:
'
surface-wireframe
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourNormal
,
iconCls
:
'
contour-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourWireframe
,
iconCls
:
'
contour-wireframe
'
}
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
iconCls
:
'
stock-normal
'
}
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, iconCls: 'surface-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, iconCls: 'surface-wireframe'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, iconCls: 'contour-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, iconCls: 'contour-wireframe'}
]),
itemTemplate
:
_
.
template
(
'
<div id="<%= id %>" class="item-chartlist <%= iconCls %>"></div>
'
)
});
...
...
apps/presentationeditor/main/app/view/Toolbar.js
View file @
87c05da1
...
...
@@ -572,8 +572,8 @@ define([
{
id
:
'
menu-chart-group-hbar
'
,
caption
:
me
.
textBar
},
{
id
:
'
menu-chart-group-area
'
,
caption
:
me
.
textArea
,
inline
:
true
},
{
id
:
'
menu-chart-group-scatter
'
,
caption
:
me
.
textPoint
,
inline
:
true
},
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
,
{
id
:
'
menu-chart-group-surface
'
,
caption
:
me
.
textSurface
}
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
//
{ id: 'menu-chart-group-surface', caption: me.textSurface}
]),
store
:
new
Common
.
UI
.
DataViewStore
([
{
group
:
'
menu-chart-group-bar
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
barNormal
,
allowSelected
:
true
,
iconCls
:
'
column-normal
'
,
selected
:
true
},
...
...
@@ -600,11 +600,11 @@ define([
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStacked
,
allowSelected
:
true
,
iconCls
:
'
area-stack
'
},
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStackedPer
,
allowSelected
:
true
,
iconCls
:
'
area-pstack
'
},
{
group
:
'
menu-chart-group-scatter
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
scatter
,
allowSelected
:
true
,
iconCls
:
'
point-normal
'
},
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
allowSelected
:
true
,
iconCls
:
'
stock-normal
'
}
,
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceNormal
,
allowSelected
:
true
,
iconCls
:
'
surface-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceWireframe
,
allowSelected
:
true
,
iconCls
:
'
surface-wireframe
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourNormal
,
allowSelected
:
true
,
iconCls
:
'
contour-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourWireframe
,
allowSelected
:
true
,
iconCls
:
'
contour-wireframe
'
}
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
allowSelected
:
true
,
iconCls
:
'
stock-normal
'
}
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, allowSelected: true, iconCls: 'surface-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, allowSelected: true, iconCls: 'surface-wireframe'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, allowSelected: true, iconCls: 'contour-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, allowSelected: true, iconCls: 'contour-wireframe'}
]),
itemTemplate
:
_
.
template
(
'
<div id="<%= id %>" class="item-chartlist <%= iconCls %>"></div>
'
)
})
...
...
apps/spreadsheeteditor/main/app/view/ChartSettings.js
View file @
87c05da1
...
...
@@ -675,8 +675,8 @@ define([
{
id
:
'
menu-chart-group-hbar
'
,
caption
:
me
.
textBar
},
{
id
:
'
menu-chart-group-area
'
,
caption
:
me
.
textArea
,
inline
:
true
},
{
id
:
'
menu-chart-group-scatter
'
,
caption
:
me
.
textPoint
,
inline
:
true
},
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
,
{
id
:
'
menu-chart-group-surface
'
,
caption
:
me
.
textSurface
}
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
//
{ id: 'menu-chart-group-surface', caption: me.textSurface}
]),
store
:
new
Common
.
UI
.
DataViewStore
([
{
group
:
'
menu-chart-group-bar
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
barNormal
,
iconCls
:
'
column-normal
'
,
selected
:
true
},
...
...
@@ -703,11 +703,11 @@ define([
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStacked
,
iconCls
:
'
area-stack
'
},
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStackedPer
,
iconCls
:
'
area-pstack
'
},
{
group
:
'
menu-chart-group-scatter
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
scatter
,
iconCls
:
'
point-normal
'
},
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
iconCls
:
'
stock-normal
'
}
,
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceNormal
,
iconCls
:
'
surface-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceWireframe
,
iconCls
:
'
surface-wireframe
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourNormal
,
iconCls
:
'
contour-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourWireframe
,
iconCls
:
'
contour-wireframe
'
}
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
iconCls
:
'
stock-normal
'
}
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, iconCls: 'surface-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, iconCls: 'surface-wireframe'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, iconCls: 'contour-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, iconCls: 'contour-wireframe'}
]),
itemTemplate
:
_
.
template
(
'
<div id="<%= id %>" class="item-chartlist <%= iconCls %>"></div>
'
)
});
...
...
apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js
View file @
87c05da1
...
...
@@ -149,8 +149,8 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template'
{
id
:
'
menu-chart-group-hbar
'
,
caption
:
me
.
textBar
},
{
id
:
'
menu-chart-group-area
'
,
caption
:
me
.
textArea
,
inline
:
true
},
{
id
:
'
menu-chart-group-scatter
'
,
caption
:
me
.
textPoint
,
inline
:
true
},
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
,
{
id
:
'
menu-chart-group-surface
'
,
caption
:
me
.
textSurface
}
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
//
{ id: 'menu-chart-group-surface', caption: me.textSurface}
]),
store
:
new
Common
.
UI
.
DataViewStore
([
{
group
:
'
menu-chart-group-bar
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
barNormal
,
iconCls
:
'
column-normal
'
,
selected
:
true
},
...
...
@@ -177,11 +177,11 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template'
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStacked
,
iconCls
:
'
area-stack
'
},
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStackedPer
,
iconCls
:
'
area-pstack
'
},
{
group
:
'
menu-chart-group-scatter
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
scatter
,
iconCls
:
'
point-normal
'
},
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
iconCls
:
'
stock-normal
'
}
,
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceNormal
,
iconCls
:
'
surface-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceWireframe
,
iconCls
:
'
surface-wireframe
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourNormal
,
iconCls
:
'
contour-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourWireframe
,
iconCls
:
'
contour-wireframe
'
}
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
iconCls
:
'
stock-normal
'
}
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, iconCls: 'surface-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, iconCls: 'surface-wireframe'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, iconCls: 'contour-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, iconCls: 'contour-wireframe'}
]),
itemTemplate
:
_
.
template
(
'
<div id="<%= id %>" class="item-chartlist <%= iconCls %>"></div>
'
)
});
...
...
apps/spreadsheeteditor/main/app/view/Toolbar.js
View file @
87c05da1
...
...
@@ -1550,8 +1550,8 @@ define([
{
id
:
'
menu-chart-group-hbar
'
,
caption
:
me
.
textBar
},
{
id
:
'
menu-chart-group-area
'
,
caption
:
me
.
textArea
,
inline
:
true
},
{
id
:
'
menu-chart-group-scatter
'
,
caption
:
me
.
textPoint
,
inline
:
true
},
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
,
{
id
:
'
menu-chart-group-surface
'
,
caption
:
me
.
textSurface
}
{
id
:
'
menu-chart-group-stock
'
,
caption
:
me
.
textStock
,
inline
:
true
}
//
{ id: 'menu-chart-group-surface', caption: me.textSurface}
// ,{ id: 'menu-chart-group-sparkcolumn', inline: true, headername: me.textSparks },
// { id: 'menu-chart-group-sparkline', inline: true },
// { id: 'menu-chart-group-sparkwin', inline: true }
...
...
@@ -1581,11 +1581,11 @@ define([
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStacked
,
allowSelected
:
true
,
iconCls
:
'
area-stack
'
},
{
group
:
'
menu-chart-group-area
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
areaStackedPer
,
allowSelected
:
true
,
iconCls
:
'
area-pstack
'
},
{
group
:
'
menu-chart-group-scatter
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
scatter
,
allowSelected
:
true
,
iconCls
:
'
point-normal
'
},
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
allowSelected
:
true
,
iconCls
:
'
stock-normal
'
}
,
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceNormal
,
allowSelected
:
true
,
iconCls
:
'
surface-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
surfaceWireframe
,
allowSelected
:
true
,
iconCls
:
'
surface-wireframe
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourNormal
,
allowSelected
:
true
,
iconCls
:
'
contour-normal
'
},
{
group
:
'
menu-chart-group-surface
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
contourWireframe
,
allowSelected
:
true
,
iconCls
:
'
contour-wireframe
'
}
{
group
:
'
menu-chart-group-stock
'
,
type
:
Asc
.
c_oAscChartTypeSettings
.
stock
,
allowSelected
:
true
,
iconCls
:
'
stock-normal
'
}
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, allowSelected: true, iconCls: 'surface-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, allowSelected: true, iconCls: 'surface-wireframe'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, allowSelected: true, iconCls: 'contour-normal'},
//
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, allowSelected: true, iconCls: 'contour-wireframe'}
// ,{ group: 'menu-chart-group-sparkcolumn', type: Asc.c_oAscSparklineType.Column, allowSelected: true, iconCls: 'spark-column', tip: me.textColumnSpark},
// { group: 'menu-chart-group-sparkline', type: Asc.c_oAscSparklineType.Line, allowSelected: true, iconCls: 'spark-line', tip: me.textLineSpark},
// { group: 'menu-chart-group-sparkwin', type: Asc.c_oAscSparklineType.Stacked, allowSelected: true, iconCls: 'spark-win', tip: me.textWinLossSpark}
...
...
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