Back to Devexpress

WebChartControl.CustomDrawSeries Event

aspnet-devexpress-dot-xtracharts-dot-web-dot-webchartcontrol-224919ec.md

latest13.1 KB
Original Source

WebChartControl.CustomDrawSeries Event

Occurs before a series is drawn when the chart’s contents are being drawn.

Namespace : DevExpress.XtraCharts.Web

Assembly : DevExpress.XtraCharts.v25.2.Web.dll

NuGet Package : DevExpress.Web.Visualization

Declaration

csharp
public event CustomDrawSeriesEventHandler CustomDrawSeries
vb
Public Event CustomDrawSeries As CustomDrawSeriesEventHandler

Event Data

The CustomDrawSeries event's data class is CustomDrawSeriesEventArgs. The following properties provide information specific to this event:

PropertyDescription
DisposeLegendCheckBoxImageGets or sets the value specifying whether CustomDrawSeriesEventArgs.LegendCheckBoxImage should be disposed when drawing is finished.
DisposeLegendFontGets or sets the value specifying whether the e.DXLegendFont should be disposed when drawing is finished. Inherited from CustomDrawSeriesEventArgsBase.
DisposeLegendMarkerImageGets or sets the value specifying whether e.DXLegendMarkerImage should be disposed when drawing is finished. Inherited from CustomDrawSeriesEventArgsBase.
DXLegendFontGets or sets the text font of the legend item of the series or series point that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
DXLegendMarkerImageGets or sets the image of the legend item marker of the series or series point that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
LegendCheckBoxDXImageGets or sets the image of the legend item check box of the series or series point that is currently being painted.
LegendCheckBoxImageGets or sets the image of the legend item check box of the series or series point that is currently being painted.
LegendCheckBoxImageSizeModeGets or sets the image size mode of the legend item check box of the series or series point that is currently being painted.
LegendCheckBoxSizeGets or sets the size of the legend item check box of the series or series point that is currently being painted.
LegendCheckBoxVisibleGets or sets the visibility of the legend item check box of the series that is currently being painted.
LegendDrawOptionsReturns the draw settings of the legend item of the series that is currently being drawn. Inherited from CustomDrawSeriesEventArgsBase.
LegendFontGets or sets the text font of the legend item of the series or series point that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
LegendMarkerImageGets or sets the image of the legend item marker of the series or series point that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
LegendMarkerImageSizeModeGets or sets the image size mode of the legend item marker of the series or series point that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
LegendMarkerSizeGets or sets the size of the legend item marker of the series or series point that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
LegendMarkerVisibleGets or sets the visibility of the legend item marker of the series or series point that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
LegendTextGets or sets the text of the legend item of the series or series point that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
LegendTextColorGets or sets the text color of the legend item of the series or series point that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
LegendTextVisibleGets or sets the text visibility of the legend item of the series whose points are currently being drawn. Inherited from CustomDrawSeriesEventArgsBase.
SeriesReturns the series that is currently being painted. Inherited from CustomDrawSeriesEventArgsBase.
SeriesDrawOptionsReturns the draw settings of the series that is currently being drawn. Inherited from CustomDrawSeriesEventArgsBase.

Remarks

The CustomDrawSeries event is raised before every series is painted. The event parameter’s CustomDrawSeriesEventArgsBase.Series property provides the series which enables the series view and other specific series options to be determined. And the CustomDrawSeriesEventArgsBase.SeriesDrawOptions property provides the drawing options specific to each series. Note that the return value of this property should be typecast to the corresponding type (e.g., BarDrawOptions).

The CustomDrawSeries and WebChartControl.CustomDrawSeriesPoint events are always raised in the following order.

  • The CustomDrawSeries event for the first series in the chart’s WebChartControl.Series collection. The first series in the series collection is a Series for which the SeriesCollection.IndexOf method returns 0.
  • The CustomDrawSeriesPoint event for all the series points of the first series.
  • The CustomDrawSeries event for the second series in the chart’s WebChartControl.Series collection.
  • The CustomDrawSeriesPoint event for all the series points of the second series.
  • …and so on for all the other series and their points.

Example

This example demonstrates how to use the CustomDrawSeries event to customize chart series’ appearance.

In the CustomDrawSeries event handler, use a CustomDrawSeriesEventArgs object properties to change series options:

csharp
using DevExpress.XtraCharts;
//...
chartControl.CustomDrawSeries += OnCustomDrawSeries;
//...
private void OnCustomDrawSeries(object sender, CustomDrawSeriesEventArgs e) {
    // Find all Bar Series by their view type,
    // and fill them with a given color.
    if (e.Series.View is BarSeriesView)
        e.SeriesDrawOptions.Color = Color.SkyBlue;

    // Find the series by its name, 
    // and change its line style to dash-dot-dot.
    // (Here it's assumed that the series view type is LineSeriesView).
    if (e.Series.Name == "Line Series")
        ((LineDrawOptions)e.SeriesDrawOptions).LineStyle.DashStyle =
        DashStyle.DashDotDot;

    // Find all Point Series by the type of its DrawOptions, 
    // and change their marker kind to diamond.
    if (e.SeriesDrawOptions.GetType() == typeof(PointDrawOptions))
        ((PointDrawOptions)e.SeriesDrawOptions).Marker.Kind =
        MarkerKind.Diamond;
}
vb
Imports DevExpress.XtraCharts
'...
chartControl.CustomDrawSeries += OnCustomDrawSeries
'...
Private Sub OnCustomDrawSeries(ByVal sender As Object, ByVal e As CustomDrawSeriesEventArgs)
    ' Find all Bar Series by their view type,
    ' and fill them with a given color.
    If TypeOf e.Series.View Is BarSeriesView Then e.SeriesDrawOptions.Color = Color.SkyBlue
    ' Find the series by its name, 
    ' and change its line style to dash-dot-dot.
    ' (Here it's assumed that the series view type is LineSeriesView).
    If e.Series.Name Is "Line Series" Then CType(e.SeriesDrawOptions, LineDrawOptions).LineStyle.DashStyle = DashStyle.DashDotDot
    ' Find all Point Series by the type of its DrawOptions, 
    ' and change their marker kind to diamond.
    If e.SeriesDrawOptions.[GetType] Is GetType(PointDrawOptions) Then CType(e.SeriesDrawOptions, PointDrawOptions).Marker.Kind = MarkerKind.Diamond
End Sub

See Also

CustomDrawSeriesPoint

WebChartControl Class

WebChartControl Members

DevExpress.XtraCharts.Web Namespace