Skip to content

Commit

Permalink
fixes #91
Browse files Browse the repository at this point in the history
  • Loading branch information
beto-rodriguez committed Jul 21, 2021
1 parent ee46fa0 commit 31ca08d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LiveChartsCore/Section.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public override void Measure(Chart<TDrawingContext> chart)

if (Fill is not null)
{
Fill.ZIndex = ZIndex ?? -3;
Fill.ZIndex = ZIndex ?? -2.5;

if (_fillSizedGeometry is null)
{
Expand Down Expand Up @@ -249,7 +249,7 @@ public override void Measure(Chart<TDrawingContext> chart)

if (Stroke is not null)
{
Stroke.ZIndex = ZIndex ?? -3;
Stroke.ZIndex = ZIndex ?? 0;

if (_strokeSizedGeometry is null)
{
Expand Down

0 comments on commit 31ca08d

Please sign in to comment.