Gets or sets a string containing one field with the chart labels.

Namespace:  C1.C1Report.CustomFields
Assembly:  C1.C1Report.CustomFields.2 (in C1.C1Report.CustomFields.2.dll)

Syntax

C#
[EditorAttribute(typeof(TextFieldEditor), typeof(UITypeEditor))]
[DefaultValueAttribute("")]
[CategoryAttribute("Chart")]
public string DataX { get; set; }
Visual Basic
<EditorAttribute(GetType(TextFieldEditor), GetType(UITypeEditor))> _
<DefaultValueAttribute("")> _
<CategoryAttribute("Chart")> _
Public Property DataX As String
	Get
	Set

Remarks

Labels are displayed along the X axis or along with pie slices. For example:

Examples

chartField.DataX = "ProductName"

See Also