R/chart_point.R

#' ChartPoint
#'
#' @export
#' @format \code{\link{R6Class}} object, super class \code{\link{ChartSize}}.
#' @field pointSize of type int inherited from super class \code{\link{ChartSize}}.
#' @field name of type String inherited from super class \code{\link{Chart}}.
#' @field properties object of class \code{\link{Properties}} inherited from super class \code{\link{Chart}}.
ChartPoint <- R6::R6Class("ChartPoint", inherit = ChartSize, public = list(initialize = function(json = NULL) {
    super$initialize(json = json)
}, init = function() {
    super$init()
}, initJson = function(json) {
    super$initJson(json)
}, toTson = function() {
    m = super$toTson()
    m$kind = tson.scalar("ChartPoint")
    return(m)
}))
tercen/teRcenApi documentation built on Feb. 8, 2024, 5:59 p.m.