Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridChartLineStyle Enum

Enumerates available line styles in Chart View diagrams.

#Declaration

Delphi
TcxGridChartLineStyle = (
    clsNone,
    clsSolid,
    clsDash,
    clsDot,
    clsDashDot,
    clsDashDotDot
);

#Members

Name
clsNone
clsSolid
clsDash
clsDot
clsDashDot
clsDashDotDot

#Remarks

Chart diagrams use various line styles to connect points. For instance, you can customize line styles that connect adjacent value points in line and area diagrams.

#Available Options

Value Description Example
clsNone Points are not connected.
clsSolid Points are connected by solid lines. VCL Data Grid: A Solid Line Example
clsDash Points are connected by dashed lines. VCL Data Grid: A Dashed Line Example
clsDot Points are connected by dotted lines. VCL Data Grid: A Dotted Line Example
clsDashDot Points are connected by dash-dotted lines. VCL Data Grid: A Dash-Dotted Line Example
clsDashDotDot Points are connected by dash-double-dotted lines. VCL Data Grid: A Dash-Dot-Dotted Line Example
See Also