Back to Devexpress

How to: Change the Names for Auto-Created Series

windowsforms-7523-controls-and-libraries-chart-control-examples-creating-charts-appearance-customization-how-to-change-the-names-for-auto-created-series.md

latest1.1 KB
Original Source

How to: Change the Names for Auto-Created Series

  • Oct 02, 2023

This example details how to programmatically change the names for auto-created series.

To accomplish this, handle the ChartControl.CustomDrawSeries (WebChartControl.CustomDrawSeries) event in the following way.

csharp
using System;
using System.Windows.Forms;
using DevExpress.XtraCharts;
// ...

private void chartControl1_CustomDrawSeries(object sender, CustomDrawSeriesEventArgs e) {
    e.LegendText = e.LegendText.Remove(0, 3);
}
vb
Private Sub chartControl1_CustomDrawSeries(ByVal sender As Object, _
ByVal e As CustomDrawSeriesEventArgs) Handles chartControl1.CustomDrawSeries
    e.LegendText = e.LegendText.Remove(0, 3)
End Sub