Skip to content
Snippets Groups Projects
Commit 7d1a6f8a authored by noberumotto's avatar noberumotto
Browse files

调整柱形图数据展示顺序

parent 19839170
Branches
No related merge requests found
......@@ -1284,7 +1284,7 @@ namespace UI.Controls.Charts
// 调整列值 zindex
foreach (var item in _typeColValueRectMap)
{
var rectList = item.Value.OrderByDescending(m => m.Height).ToList();
var rectList = IsStack ? item.Value : item.Value.OrderByDescending(m => m.Height).ToList();
for (int i = 0; i < rectList.Count; i++)
{
var rect = rectList[i];
......
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