コード例 #1
0
ファイル: Common.cs プロジェクト: bclehmann/ScottPlot
 public static void AutoAxisAnyUnsetAxes(Plot plot)
 {
     if (!plot.XAxis.HasBeenSet || !plot.YAxis.HasBeenSet)
     {
         plot.AutoScale();
     }
 }