本示例详细说明了如何以程序方式改变 自动创建系列 的名称。

要完成此任务,则以下列方式接管 ChartControl.CustomDrawSeries (WebChartControl.CustomDrawSeries) 事件。

C#CopyCode image复制代码
using System;
using System.Windows.Forms;
using DevExpress.XtraCharts;
// ...

private void chartControl1_CustomDrawSeries(object sender, CustomDrawSeriesEventArgs e) {
    e.LegendText = e.LegendText.Remove(0, 3);
}
Visual BasicCopyCode image复制代码
Private Sub chartControl1_CustomDrawSeries(ByVal sender As Object, _
ByVal e As CustomDrawSeriesEventArgs) Handles chartControl1.CustomDrawSeries
    e.LegendText = e.LegendText.Remove(0, 3)
End Sub

CodeCentralShow Me

在 DevExpress Code Central 数据库中可以找到完整的示例项目,网址是 http://www.devexpress.com/example=E2022。 取决于目标平台类型 (ASP.NET、WinForms 等),可以在线运行本示例,或者下载自动可执行的示例。