React PieChart - commonSeriesSettings.label
Each series point can be accompanied by a text label that represents data related to the point. These are called series point labels. Use the label object's properties to set label options for the series.
argumentFormat
Formats the point argument before it is displayed in the point label. To format the point value, use the format option.
See Also
- format - provides a comprehensive overview of formatting capabilities.
- Data Formatting - shows how to apply formatting to various widget elements.
argumentPrecision
Use the series.label.argumentFormat.precision instead.
backgroundColor
This option supports the following colors:
- Hexadecimal colors
- RGB colors
- RGBA colors
- Predefined/cross-browser color names
- Predefined SVG colors
You can remove the label's background by setting this option to "none". In this case, the label's text is the same color as the point.
customizeText
When implementing a callback function for this property, use the point value to be displayed in a label. In addition, you can use the argument of the currently displayed value. These values can be accessed using the following properties of the this object.
- value
Specifies the value of the currently represented point. - valueText
Specifies the value of the currently represented point with applied formatting if the format property is specified. - argument
Specifies the argument value of the currently represented point. - argumentText
Specifies the argument value of the currently represented point with applied formatting if the argumentFormat property is specified. - percent
Specifies the proportional value of the currently represented point in a floating point format. - percentText
Specifies the value of the currently represented point as a percentage with a precision of the format.percentPrecision option. - point.tag
Specifies the tag of the currently represented point.
this
keyword.See Also
percentPrecision
Use the series.label.format.percentPrecision instead.
position
When using the widget as an ASP.NET MVC Control, specify this option using the PieChartLabelPosition
enum. This enum accepts the following values: Outside
, Inside
and Columns
.
If you have technical questions, please create a support ticket in the DevExpress Support Center.