Commit 1a933821 authored by GoshaZotov's avatar GoshaZotov Committed by Alexander.Trofimov

изменен порядок отрисовки данных 3d диаграмм(3d hbar chart)

parent 9204f2f6
...@@ -2566,6 +2566,8 @@ drawBarChart.prototype = ...@@ -2566,6 +2566,8 @@ drawBarChart.prototype =
this.paths = {}; this.paths = {};
this.summBarVal = []; this.summBarVal = [];
this.sortZIndexPaths = [];
this._reCalculateBars(); this._reCalculateBars();
}, },
...@@ -5712,6 +5714,7 @@ function drawHBarChart() ...@@ -5712,6 +5714,7 @@ function drawHBarChart()
this.cChartDrawer = null; this.cChartDrawer = null;
this.cShapeDrawer = null; this.cShapeDrawer = null;
this.paths = {}; this.paths = {};
this.sortZIndexPaths = [];
this.summBarVal = []; this.summBarVal = [];
} }
...@@ -5725,6 +5728,8 @@ drawHBarChart.prototype = ...@@ -5725,6 +5728,8 @@ drawHBarChart.prototype =
this.paths = {}; this.paths = {};
this.summBarVal = []; this.summBarVal = [];
this.sortZIndexPaths = [];
this.chartProp = chartsDrawer.calcProp; this.chartProp = chartsDrawer.calcProp;
this.cChartDrawer = chartsDrawer; this.cChartDrawer = chartsDrawer;
this.cChartSpace = chartsDrawer.cChartSpace; this.cChartSpace = chartsDrawer.cChartSpace;
...@@ -5887,6 +5892,8 @@ drawHBarChart.prototype = ...@@ -5887,6 +5892,8 @@ drawHBarChart.prototype =
point8 = this.cChartDrawer._convertAndTurnPoint(x8, y8, z8); point8 = this.cChartDrawer._convertAndTurnPoint(x8, y8, z8);
paths = this.cChartDrawer.calculateRect3D(point1, point2, point3, point4, point5, point6, point7, point8, val); paths = this.cChartDrawer.calculateRect3D(point1, point2, point3, point4, point5, point6, point7, point8, val);
this.sortZIndexPaths.push({seria: i, point: idx, paths: paths, x: point1.x, y: point1.y, zIndex: point1.z});
} }
else else
{ {
...@@ -5906,6 +5913,17 @@ drawHBarChart.prototype = ...@@ -5906,6 +5913,17 @@ drawHBarChart.prototype =
if(seria.length) if(seria.length)
seriesCounter++; seriesCounter++;
} }
if(this.cChartDrawer.nDimensionCount === 3)
{
this.sortZIndexPaths.sort (function sortArr(a, b)
{
if(b.zIndex == a.zIndex)
return b.y - a.y;
else
return b.zIndex - a.zIndex;
});
}
}, },
_getOptionsForDrawing: function(ser, point, onlyLessNull) _getOptionsForDrawing: function(ser, point, onlyLessNull)
...@@ -6180,7 +6198,8 @@ drawHBarChart.prototype = ...@@ -6180,7 +6198,8 @@ drawHBarChart.prototype =
return path; return path;
}, },
_DrawBars3D: function() //TODO delete after test
_DrawBars3D2: function()
{ {
var t = this; var t = this;
var draw = function(onlyLessNull) var draw = function(onlyLessNull)
...@@ -6260,6 +6279,65 @@ drawHBarChart.prototype = ...@@ -6260,6 +6279,65 @@ drawHBarChart.prototype =
} }
}, },
_DrawBars3D: function()
{
var t = this;
var processor3D = this.cChartDrawer.processor3D;
var verges =
{
front: 0,
down: 1,
left: 2,
right: 3,
up: 4,
unfront: 5
};
var drawVerges = function(i, j, paths, onlyLessNull, start, stop)
{
var brush, pen, options;
options = t._getOptionsForDrawing(i, j, onlyLessNull);
if(options !== null)
{
pen = options.pen;
brush = options.brush;
for(var k = start; k <= stop; k++)
{
t._drawBar3D(paths[k], pen, brush, k);
}
}
};
var draw = function(onlyLessNull, start, stop)
{
for(var i = 0; i < t.sortZIndexPaths.length; i++)
{
drawVerges(t.sortZIndexPaths[i].seria, t.sortZIndexPaths[i].point, t.sortZIndexPaths[i].paths, onlyLessNull, start, stop);
}
};
if(this.chartProp.subType === "standard")
{
draw(true, verges.front, verges.unfront);
draw(false, verges.front, verges.unfront);
}
else
{
draw(true, verges.down, verges.up);
draw(false, verges.down, verges.up);
draw(true, verges.unfront, verges.unfront);
draw(false, verges.unfront, verges.unfront);
draw(true, verges.front, verges.front);
draw(false, verges.front, verges.front);
}
},
_drawBar3D: function(path, pen, brush, k) _drawBar3D: function(path, pen, brush, k)
{ {
//затемнение боковых сторон //затемнение боковых сторон
......
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