diff options
| author | Matthew Strasiotto <[email protected]> | 2021-04-28 13:33:23 +1000 |
|---|---|---|
| committer | Matthew Strasiotto <[email protected]> | 2021-04-28 13:33:23 +1000 |
| commit | 5a08acbffecb50aa8426e221bbd8457c114f7eda (patch) | |
| tree | 37378d32cc94d245b003d34b9b6cb8feb5f46d9d | |
| parent | update default settings for grapher colours (diff) | |
| download | rawaccel-5a08acbffecb50aa8426e221bbd8457c114f7eda.tar.xz rawaccel-5a08acbffecb50aa8426e221bbd8457c114f7eda.zip | |
change legend position for graphs
| -rw-r--r-- | grapher/Models/Charts/ChartXY.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grapher/Models/Charts/ChartXY.cs b/grapher/Models/Charts/ChartXY.cs index 39e1a92..237538f 100644 --- a/grapher/Models/Charts/ChartXY.cs +++ b/grapher/Models/Charts/ChartXY.cs @@ -174,7 +174,7 @@ namespace grapher ElementPosition legendPos = legend.Position; - ElementPosition legendPosNew = new ElementPosition(100 -, 0, legendPos.Width, legendPos.Height); + ElementPosition legendPosNew = new ElementPosition(75, 0, 25, 25); legend.Position = legendPosNew; setChartColors(chart); |