コード例 #1
0
ファイル: Gnuplot.cs プロジェクト: mortenbakkedal/SharpMath
        public Gnuplot SetYSecondaryLabel(IPlotLabel label)
        {
            Add(string.Format("set y2label '{0}'", label.Generate(this)));
            PrepareSecondaryAxis();

            return this;
        }
コード例 #2
0
ファイル: Gnuplot.cs プロジェクト: mortenbakkedal/SharpMath
        public Gnuplot SetZLabel(IPlotLabel label)
        {
            Add(string.Format("set zlabel '{0}'", label.Generate(this)));

            return this;
        }
コード例 #3
0
ファイル: Gnuplot.cs プロジェクト: mortenbakkedal/SharpMath
        public Gnuplot SetTitle(IPlotLabel label)
        {
            Add(string.Format("set title '{0}'", label.Generate(this)));

            return this;
        }