draw2d: remove ticks, numbers, edges...



On May 16, 2011, Paul Bowyer wrote:
------------------


I tried:

draw2d(
      xrange = [-2,6],
      yrange = [-4,10],
      axis_left = false,
      axis_bottom = false,
      axis_top = false,
      axis_right = false,
      xtics = 'none,
      ytics = 'none,
      fill_density = 1,
      key = "0",      fill_color = black,
      bars([0,5,2]),
      fill_density = 1,
      key = "1",      fill_color = blue,
      bars([4,5,2]))$

which seemed to do what you're asking.

Paul
------------------------------------------
thanks, Paul, that does the job.

Ted