[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge pull request #250 from Ambitroc/master
Browse files Browse the repository at this point in the history
修复BarChart在数据为0时,Bar背景不绘制问题
  • Loading branch information
monitor1394 committed Mar 14, 2023
2 parents 49e9066 + 3073926 commit bddbe60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Runtime/Serie/Bar/BarHandler.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
Expand Down Expand Up @@ -259,7 +259,7 @@ private void DrawBarSerie(VertexHelper vh, Bar serie)
continue;
}

if (serie.show && currHig != 0 && !serie.placeHolder)
if (serie.show && !serie.placeHolder)
{
switch (serie.barType)
{
Expand Down

0 comments on commit bddbe60

Please sign in to comment.