Leaf Charter integration

This commit is contained in:
2016-03-10 11:18:25 -05:00
parent 72caa74bb2
commit c761952a8a
7 changed files with 44 additions and 25 deletions
+4 -4
View File
@@ -10,11 +10,11 @@ namespace LeafWeb.Web.Charter
{
public static class LeafWebCharter
{
private static readonly Font TitleFont = new Font("Times New Roman", 10, FontStyle.Bold);
private static readonly Font AxisFont = new Font("Times New Roman", 10, FontStyle.Bold);
private static readonly Font TitleFont = new Font(new FontFamily("Times New Roman"), 10, FontStyle.Bold);
private static readonly Font AxisFont = new Font(new FontFamily("Times New Roman"), 10, FontStyle.Bold);
private static readonly Font Font = new Font(new FontFamily("Trebuchet MS"), 9, FontStyle.Bold);
private const int ChartWidth = 550;
private const int ChartHeight = 400;
public const int ChartWidth = 550;
public const int ChartHeight = 400;
// cntrlcomparison
public static IEnumerable<Chart> ProduceCharts(CurveData curve)