Can't access a control property's members

Jamshid

Member
Joined
Jul 18, 2016
Messages
14
Programming Experience
1-3
Hi there
I wanna access a chart control properties but can't!
I think these pictures illustrate my problem
I can't access PointStyle property's members

Untitled.png

Untitled2.png
 
Those aren't properties, they are values to assign to the property. Code will typically be like this:
myseries.ChartType = SeriesChartType.Line;

Did you know you can configure things in designer and then look at the generated code afterwards to see how it is coded? Expand the form in Solution Explorer and view the code for the attached .designer.cs file.
 
Back
Top Bottom