Category / Section
How to display the dash line instead of solid line for line series in the .NET WebForms Chart?
1 min read
The Essential Chart supports displaying the dash line instead of default solid line for line series by using the DashArray property. The following code example illustrates the same.
ASP
<ej:Chart ID="container" runat="server"> <CommonSeriesOptions DashArray="5,5" type="Line"> <Marker Visible="true"></Marker> </CommonSeriesOptions> </ej:Chart>
The following screenshot displays the line series with dotted lines.