Пример #1
0
        public Gnuplot SetYSecondaryLabel(IPlotLabel label)
        {
            Add(string.Format("set y2label '{0}'", label.Generate(this)));
            PrepareSecondaryAxis();

            return this;
        }
Пример #2
0
        public Gnuplot SetZLabel(IPlotLabel label)
        {
            Add(string.Format("set zlabel '{0}'", label.Generate(this)));

            return this;
        }
Пример #3
0
        public Gnuplot SetTitle(IPlotLabel label)
        {
            Add(string.Format("set title '{0}'", label.Generate(this)));

            return this;
        }