public Gnuplot SetYSecondaryLabel(IPlotLabel label) { Add(string.Format("set y2label '{0}'", label.Generate(this))); PrepareSecondaryAxis(); return this; }
public Gnuplot SetZLabel(IPlotLabel label) { Add(string.Format("set zlabel '{0}'", label.Generate(this))); return this; }
public Gnuplot SetTitle(IPlotLabel label) { Add(string.Format("set title '{0}'", label.Generate(this))); return this; }