Learn R Programming

rAmCharts (version 1.1.1)

listProperties,AmBalloon-method: List attributes of an S4 object

Description

Attributes of an AmGraph object.

Attributes of an AmLegend object.

List attributes of an S4 object

Usage

## S3 method for class 'AmBalloon':
listProperties(.Object)

## S3 method for class 'AmGraph': listProperties(.Object)

## S3 method for class 'AmLegend': listProperties(.Object)

listProperties(.Object)

## S3 method for class 'AmObject': listProperties(.Object)

## S3 method for class 'AmStockChart': listProperties(.Object)

## S3 method for class 'AxisBase': listProperties(.Object)

## S3 method for class 'CategoryAxis': listProperties(.Object)

## S3 method for class 'ChartCursor': listProperties(.Object)

## S3 method for class 'ChartScrollbar': listProperties(.Object)

## S3 method for class 'DataSet': listProperties(.Object)

## S3 method for class 'GaugeArrow': listProperties(.Object)

## S3 method for class 'GaugeAxis': listProperties(.Object)

## S3 method for class 'GaugeBand': listProperties(.Object)

## S3 method for class 'Guide': listProperties(.Object)

## S3 method for class 'Label': listProperties(.Object)

## S3 method for class 'PeriodSelector': listProperties(.Object)

## S3 method for class 'StockEvent': listProperties(.Object)

## S3 method for class 'StockPanel': listProperties(.Object)

## S3 method for class 'Title': listProperties(.Object)

## S3 method for class 'TrendLine': listProperties(.Object)

## S3 method for class 'ValueAxis': listProperties(.Object)

Arguments

.Object
any class object of the package

Examples

Run this code
amBalloon(adjustBorderColor = TRUE)
listProperties(amGraph(balloonText = "toto", type = "type", valueField = "valueField"))
listProperties(amGraph(balloonText = "toto", type = "type"))
listProperties(amLegend(useGraphSettings = TRUE))
amChart(type = "serial")
listProperties(amChart(test = 1))
library(pipeR)
categoryAxis(ignoreAxisWidth = TRUE) %>>% listProperties() %>>% class
categoryAxis(ignoreAxisWidth = TRUE) %>>% listProperties() %>>% length
categoryAxis(ignoreAxisWidth = TRUE) %>>% setGridPosition("start") %>>% listProperties()
new("ChartCursor", oneBalloonOnly = TRUE)
listProperties(chartScrollbar(updateOnReleaseOnly = TRUE))
lapply(list(gaugeArrow(alpha = .4, value = 1), gaugeArrow(alpha = .5)), listProperties)
listProperties(gaugeAxis())
lapply(list(gaugeBand(fillAlpha = .4, value = 1), gaugeBand(fillAlpha = .5)), listProperties)
lapply(list(guide(fillAlpha = .4, value = 1), guide(fillAlpha = .5)), listProperties)
listProperties(label(text = "balloonText"))
listProperties(periodSelector(fillAlpha = .4, value = 1))
listProperties(stockEvent())
stockPanel(drawnOnAxis = "axis1")
title(text = "foo")
trendLine(initialValue = 1, valueAxis = valueAxis(axisTitleOffset = 12, tickLength = 10))
library(pipeR)
valueAxis(axisTitleOffset = 12, tickLength = 10) %>>% listProperties %>>% class
valueAxis(axisTitleOffset = 12, tickLength = 10, axisTitleOffset = 12) %>>%
addGuide(fillAlpha = .4, adjustBorderColor = TRUE, gridThickness = 1) %>>% listProperties

Run the code above in your browser using DataLab