Commit Description:
Make the graph slightly nicer for flat series....
Commit Description:
Make the graph slightly nicer for flat series. Avoids making the range of the graph go into the negative if the series isn't negative already.
File last commit:
Show/Diff file:
Action:
SpriteFontPlus/samples/SpriteFontPlus.Samples.BMFont/Program.cs
20 lines | 404 B | text/x-csharp | CSharpLexer
Early working version (including all dependencies, lol).
r0 using System;
namespace SpriteFontPlus.Samples.BMFont
{
/// <summary>
/// The main class.
/// </summary>
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
}