■ Plot 클래스의 AddText 메소드를 사용해 커스텀 폰트를 적용하는 방법을 보여준다.
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
using System.Drawing; using System.Windows.Forms; using ScottPlot; using ScottPlot.Renderable; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); Plot plot = new Plot(800, 600); plot.AddSignal(DataGen.Sin(51), label : "sin"); plot.AddSignal(DataGen.Cos(51), label : "cos"); plot.AddText ( "very graph", 25, 0.8, new ScottPlot.Drawing.Font() { Name = "comic sans ms", Size = 24, Color = Color.Blue, Bold = true } ); plot.AddText ( "so data", 0, 0, new ScottPlot.Drawing.Font() { Name = "comic sans ms", Size = 42, Color = Color.Magenta, Bold = true } ); plot.AddText ( "many documentation", 3, -0.6, new ScottPlot.Drawing.Font() { Name = "comic sans ms", Size = 18, Color = Color.DarkBlue, Bold = true } ); plot.AddText ( "wow.", 10, 0.6, new ScottPlot.Drawing.Font() { Name = "comic sans ms", Size = 36, Color = Color.Green, Bold = true } ); plot.AddText ( "NuGet", 32, 0, new ScottPlot.Drawing.Font() { Name = "comic sans ms", Size = 24, Color = Color.Gold, Bold = true } ); plot.YAxis.Label ( label : "vertical units", fontName : "impact", size : 24, color : Color.Red, bold : true ); plot.XAxis.Label ( label : "horizontal units", fontName : "georgia", size : 24, color : Color.Blue, bold : true ); plot.XAxis2.Label ( label : "Impressive Graph", size : 24, color : Color.Purple, bold : true ); plot.XAxis.TickLabelStyle(color : Color.DarkBlue , fontName : "comic sans ms", fontSize : 16); plot.YAxis.TickLabelStyle(color : Color.DarkGreen, fontName : "comic sans ms", fontSize : 16); Legend legend = plot.Legend(); legend.FontName = "comic sans ms"; legend.FontSize = 18; legend.FontColor = Color.DarkBlue; legend.FontBold = true; this.formsPlot.Reset(plot); this.formsPlot.Refresh(); } #endregion } } |