PolarAreaData
Create a PolarAreaData
object.
obj = PolarAreaData (data)
returns a PolarAreaData
object, in which data must be a nonempty numerical vector containing
the radii of the arc segments of a single dataset. Constructing a
PolarAreaData
object always assigns the default property values,
which can later be modified using dot notation syntax.
A PolarAreaData
object, obj, contains the following properties:
Field | Description | |
---|---|---|
backgroundColor | A Color object defining the
color of the face of the arc segments. Default is empty, in which case and a
color is assigned automatically by the Chart.js library. | |
borderAlign | A character vector, which can be either
'center' (default) or 'inner' . When 'center' is set,
the borders of arcs next to each other will overlap. When 'inner' is
set, it is guaranteed that all borders will not overlap. | |
borderColor | A Color object defining the color
of the border line of the arc segments. Default is empty, in which case a
color is assigned automatically by the Chart.js library. | |
borderDash | A numeric vector defining the length and spacing of dashes drawn at the borders of the arc segments. | |
borderDashOffset | A numeric scalar defining the offset of dashes drawn at the borders of the arc segments. Default is 0. | |
borderJoinStyle | A character vector defining the arc
border join style. It can be either 'round' , 'bevel' , or
'miter' . | |
borderWidth | A numeric scalar value defining the width of the each arc segment’s borders in pixels. Default is 2. | |
circular | A boolean scalar value defining whether the
arc will be curved or flat. By default, it is true corresponding to
curved arc segments. | |
clip | A numeric scalar value defining the pixels to clip relative to the chart’s area. Positive value allows overflow, negative value clips that many pixels inside chartArea. Defaults to zero pixels. | |
data | A numeric vector assigned at construction of the
PolarAreaData object. It cannot be empty. | |
hoverBackgroundColor | A Color object defining
the color of the face of each arc segment, when the mouse hovers over it.
Default is empty, in which case the color is the same as in
backgroundColor . | |
hoverBorderColor | A Color object defining
the color of the borders of each arc segment, when the mouse hovers over it.
Default is empty, in which case the color is the same as in
borderColor . | |
hoverBorderDash | A numeric vector defining the length and spacing of dashes drawn at the borders of the arc segment, when the mouse hovers over it. | |
hoverBorderDashOffset | A numeric scalar defining the offset of dashes drawn at the borders of the arc segment, when the mouse hovers over it. | |
hoverBorderJoinStyle | A character vector defining the
arc border join style, when the mouse hovers over it. It can be either
'round' , 'bevel' , or 'miter' . | |
hoverBorderWidth | A numeric scalar value defining the width of the each arc segment’s borders in pixels, when the mouse hovers over it. |
See also: PolarAreaChart, Color, Fill
Source Code: PolarAreaData