Commit d07932f2 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

HBar

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@54640 954022d7-b5bf-4e40-9824-e11837661b57
parent d1a99db2
...@@ -1791,7 +1791,6 @@ DrawingObjectsController.prototype = ...@@ -1791,7 +1791,6 @@ DrawingObjectsController.prototype =
}, },
onKeyDown: function(e) onKeyDown: function(e)
{ {
return this.curState.onKeyDown(e); return this.curState.onKeyDown(e);
......
...@@ -2392,11 +2392,11 @@ function CreateHBarChart(asc_chart, type) ...@@ -2392,11 +2392,11 @@ function CreateHBarChart(asc_chart, type)
scaling.setOrientation(ORIENTATION_MIN_MAX); scaling.setOrientation(ORIENTATION_MIN_MAX);
var num_fmt = val_ax.numFmt; var num_fmt = val_ax.numFmt;
var format_code; var format_code;
if(type === GROUPING_PERCENT_STACKED) /*if(type === GROUPING_PERCENT_STACKED)
{ {
format_code = "0%"; format_code = "0%";
} }
else else */
{ {
format_code = "General"; format_code = "General";
} }
...@@ -2704,6 +2704,8 @@ function CreateScatterChart(asc_chart) ...@@ -2704,6 +2704,8 @@ function CreateScatterChart(asc_chart)
scatter_chart.setVaryColors(false); scatter_chart.setVaryColors(false);
plot_area.addAxis(new CValAx()); plot_area.addAxis(new CValAx());
plot_area.addAxis(new CValAx()); plot_area.addAxis(new CValAx());
plot_area.catAx = plot_area.axis[0];
plot_area.valAx = plot_area.axis[1];
var first_series = asc_series.length > 1 ? asc_series[0] : null; var first_series = asc_series.length > 1 ? asc_series[0] : null;
var start_index = asc_series.length > 1 ? 1 : 0; var start_index = asc_series.length > 1 ? 1 : 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment