Posts by Pedro Henrique • 41 points
2 posts
-
0
votes1
answer727
viewsA: How do I change a chart caption?
This way you can rename the Chart legend. this.ChartLinhas.Series[0].Name = tiposLinhas.ToString(); this.ChartLinhas.Legends[0].Name = tiposLinhas.ToString(); this.ChartLinhas.Series[0].Legend =…
c#answered Pedro Henrique 41 -
4
votes3
answers8111
viewsA: Nomenclature standard in code for C#
There is a pattern of naming variables and facilitates coding Methods => Uppercase letter in the first letter example: private void Getcadastrarusuario() Propreties => Letter Uppercase in the…