R/PlotDataDate.r

#' PlotDataDate: For plotting a date.
#'
#' @export PlotDataDate
#' @exportClass PlotDataDate
PlotDataDate <- R6::R6Class(
    classname = "PlotDataDate",
    inherit = PlotData,

    ## Properties
    private = list(
    ),

    ## Methods
    public = list(
        initialize = function(name, xVals, yVals) {
            super$initialize(name, xVals, yVals)
        },
        plot = function() {
            stop("TODO")
        }
    ),

    ## Accessable properties. Active bindings look like fields, but each time they are accessed,
    ## they call a function. They are always publicly visible.
    active = list(
    )
)
schnecki/ranalyse documentation built on Dec. 1, 2022, 8:57 p.m.