EmptyChartText Class
In This Article
Contains options of the text which is to be displayed at runtime when a chart has no data to display.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
public class EmptyChartText :
NotificationBase
#Related API Members
The following members return EmptyChartText objects:
Library | Related API Members |
---|---|
Win |
Chart |
ASP. |
Chart |
ASP. |
Web |
.NET Reporting Tools | XRChart. |
#Remarks
An object of the EmptyChartText type can be accessed via the ChartControl.EmptyChartText (WebChartControl.EmptyChartText) property.
#Example
This example demonstrates how to provide a text for a chart, which it should display at runtime, when there’s no data to be represented by the chart.
EmptyChartText myText = chartControl1.EmptyChartText;
myText.Antialiasing = true;
myText.Text = "There are no visible series to represent in the chart.";
myText.TextColor = Color.Beige;
#Inheritance
See Also