MultilineTitle.Lines Property
In This Article
Gets or sets the lines of text within a multiline title.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public string[] Lines { get; set; }
#Property Value
Type | Description |
---|---|
String[] | An array of String objects containing the text of a multiline title. |
#Remarks
The Lines property specifies the array of lines displayed by the multiline title. The number of lines matches the number of elements in the array. To access all the text at the same time, you can use the inherited Title.Text property. Here text lines are separated by line feed and carriage return characters (“\r\n”).
See Also