Fix existing usage of Path

This commit is contained in:
Dean Herbert 2019-07-26 17:48:19 +09:00
parent 9d080ec249
commit 9ef858806b
1 changed files with 6 additions and 1 deletions

View File

@ -76,7 +76,12 @@ public LineGraph()
{
Masking = true,
RelativeSizeAxes = Axes.Both,
Child = path = new SmoothPath { RelativeSizeAxes = Axes.Both, PathRadius = 1 }
Child = path = new SmoothPath
{
AutoSizeAxes = Axes.None,
RelativeSizeAxes = Axes.Both,
PathRadius = 1
}
});
}