Method: PLplot.pltimefmt

Defined in:
ext/rbplplot.c

.pltimefmt(fmt) ⇒ nil

Set format for date / time labels

Returns:

  • (nil)


4066
4067
4068
4069
4070
4071
4072
4073
# File 'ext/rbplplot.c', line 4066

static VALUE
rb_mPLplot_pltimefmt(VALUE obj,VALUE arg0)
{
  char * ivar0;
  arg0 = rb_obj_as_string(arg0); ivar0 = StringValuePtr(arg0);
  pltimefmt(ivar0);
  return Qnil;
}