R/RzVVPlot.R

VVPlot <-
setRefClass("RzVVPlot",
  fields = c("main"),
  contains ="RzVVCore",
  methods = list(
    initialize            = function(...) {
      initFields(...)
      callSuper(...)
      
      main <<- gtkHPaned()
      rzPlot <- new("RzPlot", vvcore=.self)
      rzPlot$setModel(liststore)
      rzPlot$setData(data)
      
      main$setPosition(400)
      main$pack1(widget, resize=TRUE)
      main$pack2(rzPlot$getMain(), resize=FALSE)
      rzPlot$construct()
      
    }
    
  )
)
VVPlot$accessors("main")

Try the Rz package in your browser

Any scripts or data that you put into this service are public.

Rz documentation built on May 29, 2017, 11:06 a.m.