Class CircularChart3DDataLabelSettings
Inheritance
Namespace: Syncfusion.EJ2.Charts
Assembly: Syncfusion.EJ2.dll
Syntax
public class CircularChart3DDataLabelSettings : EJTagHelper
Constructors
CircularChart3DDataLabelSettings()
Declaration
public CircularChart3DDataLabelSettings()
Properties
Angle
Specifies angle for data label.
Declaration
public double Angle { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The default value is 0 |
Border
Options for customizing the border lines.
Declaration
public CircularChart3DBorder Border { get; set; }
Property Value
Type | Description |
---|---|
CircularChart3DBorder | The default value is null |
ConnectorStyle
Options for customize the connector line in series.
Declaration
public CircularChart3DConnector ConnectorStyle { get; set; }
Property Value
Type | Description |
---|---|
CircularChart3DConnector | The default value is null |
ContentTemplate
To get or set value for ContentTemplate.
Declaration
public MvcTemplate<object> ContentTemplate { get; set; }
Property Value
Type |
---|
Syncfusion.EJ2.MvcTemplate<System.Object> |
EnableRotation
Specifies whether rotation is enabled for data labels.
Declaration
public bool EnableRotation { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
Fill
The background color of the data label, which accepts value in hex, rgba as a valid CSS color string.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "transparent" |
Font
Options for customizing the data label text.
Declaration
public CircularChart3DDataLabelFont Font { get; set; }
Property Value
Type | Description |
---|---|
CircularChart3DDataLabelFont | The default value is null |
Format
Used to format the data label that accepts any global string format like 'C', 'n1', 'P' etc. It also accepts placeholder like '{value}°C' in which value represent the data label, e.g, 20°C.
Declaration
public string Format { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Name
The DataSource field which contains the data label value.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
Position
Specifies the position of data label. They are. Outside - Places label outside the point. Inside - Places label inside the point.
Declaration
public CircularChart3DLabelPosition Position { get; set; }
Property Value
Type | Description |
---|---|
CircularChart3DLabelPosition | The default value is CircularChart3DLabelPosition.Inside |
Template
Custom template to format the data label content. Use ${point.x} and ${point.y} as a placeholder text to display the corresponding data point.
Declaration
public string Template { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
Visible
If set true, data label for series gets render.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |