StockPanel-class {rAmCharts} | R Documentation |
StockPanel class
Description
StockPanel class creates stock panels (charts). AmStockChart can have multiple Stock panels.
Details
Run api("StockPanel")
for more information and all avalaible properties.
Fields
drawOnAxis
ValueAxis. Specifies on which value axis user can draw trend lines. Set drawingIconsEnabled to TRUE if you want icons to be visible. First value axis will be used if not set here. You can use a reference to the value axis object or id of value axis.
stockGraphs
list
. Each element must be have been created with stockGraph(*)stockLegend
list
. Each element must be have been created with stockLegend(*)allLabels
list
of Label. Example of label object, with all possible properties: label(x = 20, y = 20, text = "this is label", align = "left", size = 12, color = "#CC0000", alpha = 1, rotation = 0, bold = TRUE, url = "http=//www.amcharts.com"). Runapi("Label")
for more informations.arrows
list
of GaugeArrow. Only valid for gauge charts. Runapi("GaugeArrow")
for more informations.axes
list
of GaugeAxis properties. Only valid for gauge charts. Runapi("GaugeAxis")
for more informations.balloon
AmBalloon Creates the balloons (tooltips) of the chart. It follows the mouse cursor when you roll-over the data items. The framework automatically generates the instances you just have to adjust the appearance to your needs. Run
api("AmBalloon")
for more informations.categoryAxis
CategoryAxis. Read-only. Chart creates category axis itself. If you want to change some properties, you should get this axis from the chart and set properties to this object.
categoryField
character
. Category field name indicates the chart the name of the field in your dataProvider object which will be used for category axis values.ChartCursor
ChartCursor. Cursor of a chart. Run
api("ChartCursor")
for more informations.ChartScrollbar
ChartScrollbar. Chart's scrollbar. Run
api("ChartScrollbar")
for more informations.creditsPosition
character
, specifies position of the amCharts' website link. Allowed values are: "top-left", "top-right", "bottom-left" and "bottom-right".dataProvider
data.frame
, containing the data.graphs
list
of AmGraph. Creates the visualization of the data in following types: line, column, step line, smoothed line, olhc and candlestick.graph
AmGraph. Only valid for Gantt charts. Gant chart actually creates multiple graphs (separate for each segment). Properties of this graph are passed to each of the created graphs - this allows you to control the look of segments. Run
api("AmGraph")
for more informations.guides
list
of Guide. Instead of adding guides to the axes, you can push all of them to this array. In case guide has category or date defined, it automatically will be assigned to the category axis. Otherwise to first value axis, unless you specify a different valueAxes for the guide. Runapi("Guide")
for more informations.legend
AmLegend. Chart's legend. Run
api("AmLegend")
for more informations.segmentsField
character
. Segments field in your data provider. Only valid for Gantt Charts.subChartProperties
list
. Only valid for Drilldown charts.theme
character
. Chart's theme. Config files of themes can be found in amcharts/themes/ folder. See https://www.amcharts.com/docs/v3/tutorials/working-with-themes/.titles
list
of Title. Runapi("Title")
for more informations.trendLines
list
of TrendLine objects added to a chart. You can add trend lines to a chart using this list or access already existing trend lines.type
character
. Possible types are: "serial", "pie", "radar", "xy", "radar", "funnel", "gauge", "stock". See details about using argument type. (type map is in development).valueAxes
list
of ValueAxis. Chart creates one value axis automatically, so if you need only one value axis, you don't need to create it. Runapi("ValueAxis")
for more informations.valueAxis
ValueAxis. Only valid for Gantt Charts. Set it's type to "date" if your data is date or time based.
listeners
list
containining the listeners to add to the object. The list must be named as in the official API. Each element must be a character string. RunrunShinyExamples()
for examples.otherProperties
list
containing other avalaible properties not yet implemented in the package.value
numeric
.
Author(s)
datastorm-open