Articles in this section
Category / Section

How to display symbols with Chart points and to display shadow for chart elements?

1 min read

 

First set the shape, size and color for the symbol and add the symbol to the Symbol property exposed by the ChartStyleInfo class.

We can display shadow for the Chartcontrol by setting its ChartAreaShadow property to true and for the series make the DisplayShadow property exposed by ChartStyleInfo to true.

C#

// Displaying shapes in series

series.Style.Symbol.Shape = ChartSymbolShape.Pentagon;

series.Style.Symbol.Color = Color.Red;

series.Style.Symbol.Size = new Size(15,15);

// Display shadow in series

series.Style.DisplayShadow = true;

series.Style.ShadowOffset = new Size(5, 5);

// Display shadow in chart area

this.chartControl1.ChartAreaShadow = true;

VB

' Displaying shapes in series

series.Style.Symbol.Shape = ChartSymbolShape.Pentagon

series.Style.Symbol.Color = Color.Red

series.Style.Symbol.Size = New Size(15, 15)

' Display shadow in series

series.Style.DisplayShadow = True

series.Style.ShadowOffset = New Size(5, 5)

' Display shadow in chart area

Me.chartControl1.ChartAreaShadow = True

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied