Skip to content

Commit

Permalink
allow color changes
Browse files Browse the repository at this point in the history
  • Loading branch information
swharden committed Jan 29, 2018
1 parent 3be07d4 commit 30868ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ScottPlot/Figure.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ public class Figure
//private Graph graph;

// the user can set these
private Color colorBg = Color.LightGray;
private Color colorAxis = Color.Black;
private Color colorGrid = Color.LightGray;
private Color colorGraph = Color.White;
public Color colorBg = Color.LightGray;
public Color colorAxis = Color.Black;
public Color colorGrid = Color.LightGray;
public Color colorGraph = Color.White;
const string font = "Arial";
Font fontTicks = new Font(font, 9, FontStyle.Regular);
Font fontTitle = new Font(font, 16, FontStyle.Bold);
Expand Down

0 comments on commit 30868ac

Please sign in to comment.